-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample.txt
31 lines (27 loc) · 1.42 KB
/
sample.txt
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
usage: job sample [-h]
[--lhs-criterion {center,c,maximin,m,centermaximin,cm,correlation,corr}]
[--lhs_iterations LHS_ITERATIONS] [-o OUT] [-N SIZE]
[--seed SEED] [--method {montecarlo,lhs}]
[NAME=DIST [NAME=DIST ...]]
Sample prior parameter distribution
optional arguments:
-h, --help show this help message and exit
-o OUT, --out OUT output parameter file
-N SIZE, --size SIZE Sample size
--seed SEED random seed, for reproducible results (default to
None)
--method {montecarlo,lhs}
sampling method (default=lhs)
prior distribution of model parameters:
NAME=DIST Prior parameter defintion as NAME=SPEC. SPEC specifies
param values or distribution. Discrete parameter
values can be provided as a comma-separated list
`VALUE[,VALUE...]` or a range `START:STOP:N`. A
distribution is provided as `TYPE?ARG,ARG[,ARG,...]`.
Pre-defined `U?min,max` (uniform) and `N?mean,sd`
(normal) or any scipy.stats distribution as
TYPE?[SHP,]LOC,SCALE.
Latin hypercube sampling:
--lhs-criterion {center,c,maximin,m,centermaximin,cm,correlation,corr}
randomized by default
--lhs_iterations LHS_ITERATIONS