-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.yaml
More file actions
46 lines (39 loc) · 821 Bytes
/
example.yaml
File metadata and controls
46 lines (39 loc) · 821 Bytes
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
dists:
# - RandUniform:
# samples: 2
# params:
# kappa:
# bounds: [0, 1]
# sigma:
# bounds: [0, 20]
# - ItemizedList:
# params:
# A: ["one", "two", "three"]
# - ItemizedList:
# params:
# B: [4, 5, 6]
# - Halton:
# samples: 10
# params:
# x:
# bounds: [1, 2]
# y:
# bounds: [0, 1]
- Uniform:
samples: 11
params:
x:
bounds: [0, 1]
- Uniform:
samples: 11
params:
y:
bounds: [0, 1]
system:
templates: ['example.py', 'analyze.sh']
pathstring: 'example/{{SIM_DATE}}/x#{{x}}_y#{{y}}'
commands:
run: 'python3 example.py > example.log'
analyze: 'bash ./analyze.sh'
collectors:
z: 'cat example_analyzed.log'