-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulation3.py
77 lines (63 loc) · 1.72 KB
/
simulation3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
"""
Overview:
パラメータを変えながらブラウン運動のシミュレーションを実行してmlflowに結果を保存する
Usage:
simulation.py [<num_cpus>]
Options:
num_cpus : 並列数(Default: CPU数)
"""
import sys
from pathlib import Path
from joblib import Parallel, cpu_count, delayed
from lib3.brownian_motion import ParamBrownianMotion
from lib3.simulator import ParamSimulator, Simulator
N_seed = 5
x0s = [1.0, -1.0]
sigmas = [0.1, 0.2]
def get_simulator(
seed: int, x0: float, sigma: float
) -> Simulator:
"""
Simulatorクラスのインスタンスを作成する
Parameters
----------
seed: int
x0: int
sigma: float
Returns
-------
sim: Simulator
"""
param = ParamSimulator(
total_step=500,
record_per=10,
param_bm=ParamBrownianMotion(
seed=seed, initial_state=x0, sigma=sigma
)
)
sim = Simulator(
exp_name="sim3",
param=param,
# このファイルがある場所にmlrunsディレクトリをつくる
# この指定をするとnotebookからimportしたときにも同じmlrunsを参照できる
cache_dir=str(Path(__file__).parent.joinpath("mlruns"))
)
return sim
def process(*args, **kwargs) -> None:
"""
シミュレーターを実行するだけの関数
"""
sim = get_simulator(*args, **kwargs)
sim.run()
if __name__ == "__main__":
if len(sys.argv) == 2:
n_cpus = int(sys.argv[1])
else:
n_cpus = cpu_count()
Parallel(n_jobs=n_cpus)([
delayed(process)(seed, x0, sigma)
for seed in range(N_seed)
for x0 in x0s
for sigma in sigmas
])