-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulation2.py
72 lines (62 loc) · 1.65 KB
/
simulation2.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
#!/usr/bin/env python
"""
Overview:
パラメータを変えながらブラウン運動のシミュレーションを実行してmlflowに結果を保存する
Usage:
simulation.py [<num_cpus>]
Options:
num_cpus : 並列数(Default: CPU数)
"""
import sys
import mlflow
import numpy as np
from joblib import Parallel, cpu_count, delayed
def run_simulation(
seed: int = 0, x0: float = 10, sigma: float = 0.1
) -> None:
"""
ブラウン運動のシミュレーション
Parameters
----------
seed: int
ランダムシード
x0: float
初期値
sigma: float
ノイズの強さ
"""
print("seed:", seed, "x0:", x0, "sigma:", sigma)
# 乱数シードを固定する
rng = np.random.default_rng(seed)
# mlflowのexperiment nameを設定する
mlflow.set_experiment("sim2")
# sim2 Experimentの新しいRunを開始する
with mlflow.start_run():
# パラメータを記録
mlflow.log_params({
"seed": seed,
"x0": x0,
"sigma": sigma,
})
x = x0
for epoch in range(100):
# x' ~ N(x, sigma^2)
x = x + sigma * rng.normal()
# 結果を記録
mlflow.log_metrics({
"x": x,
}, step=epoch)
N_seed = 3
x0s = [1.0, 1.5]
sigmas = [0.1, 0.2]
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(run_simulation)(seed, x0, sigma)
for seed in range(N_seed)
for x0 in x0s
for sigma in sigmas
])