-
Notifications
You must be signed in to change notification settings - Fork 0
/
gmm.ini
29 lines (25 loc) · 1.41 KB
/
gmm.ini
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
; Processing flow
[processing]
type=all ; gmm - build model only; map - map cluster number basing on model; all - build model and map cluster number
; Environment setup
[environment]
path=../data/ ; path to folder with input data files
train_data_file=example-train-data.csv ; train data file name
map_data_file=example-map-data.csv ; mapping data file name
model_file=<train_data_file>_<model_type>_<classes>.jld2 ; generated model file name
res_file=<map_data_file>_<model_type>_<classes>_map.csv ; generated mapped clusters file name
; Matlab source file
; if file contains only one stored variable that variable will be picked up automatically no matter what settings are
[mat]
train_attr_name=<train_data_file> ; name of attribute holding data array in train data file
map_attr_name=<map_data_file> ; name of attribute holding data array in mapping data file
; Calculation params
[calc]
workers=auto ; number of worker processes to launch. default is auto which equals to maximum cpu cores available
; GMM model config
[gmm]
classes=32 ; number of clusters
km_iter=10 ; number of k-means iterations
em_iter=5 ; number of EM iterations
final_iter=5 ; number of EM iterations on last cycle for :split model type
model_type=split ; model creation method: :default or :split