gc5084dev commited on
Commit
7d645c3
·
verified ·
1 Parent(s): 012377c

Update parm_dict.json

Browse files
Files changed (1) hide show
  1. parm_dict.json +65 -0
parm_dict.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "root_path": "C:/tmp_data/extract_feature/",
3
+ "upload_path": "C:/tmp_data/extract_feature/upload_models/",
4
+ "feature_file_name": "multi_features_data_simu5.pkl",
5
+ "Is_train_autoencoder": false,
6
+ "autoencoder_structure": 4,
7
+ "L1": {
8
+ "noise_threshold": 0.01,
9
+ "_noise_threshold_dsp": "the number less of cluster than the threshold, consider to be noise",
10
+ "choose_model": "Hierarchical",
11
+ "_choose_model_dsp": "options, Hierarchical, DBSCAN",
12
+ "Hierarchical_power_params": [
13
+ [
14
+ 0.2,
15
+ 3,
16
+ 10,
17
+ 0.2
18
+ ],
19
+ [
20
+ 0.1,
21
+ 3,
22
+ 15,
23
+ 0.3
24
+ ]
25
+ ],
26
+ "_param1_dsp": "param 1 is factor ,the stable indicattor (less than value)(difference from the reverse previous 2 level)",
27
+ "_param2_dsp": "param 2 is min number of cluster",
28
+ "_param3_dsp": "param 3 is max number of cluster",
29
+ "_param4_dsp": "param 4 is standby threshold (percentage)",
30
+ "Is_save_model": true,
31
+ "Hierarchical_vib_params": [
32
+ [
33
+ 0.2,
34
+ 4,
35
+ 10,
36
+ 0.5
37
+ ]
38
+ ],
39
+ "_Hierarchical_vib_params_dsp": "For vibration, the format is same",
40
+ "L1_models_name": "L1_models.pkl"
41
+ },
42
+ "L2": {
43
+ "strategy": "consensus",
44
+ "_strategy_dsp": "options: consensus, feature_fusion, meta_clustering, multi_view_cluster",
45
+ "Is_save_model": true,
46
+ "consensus_model": "GMM",
47
+ "_consensus_model_dsp": "model using on each type of sensor clusting: KMeans, GMM",
48
+ "result_type": "prob",
49
+ "_result_type_dsp": "The input the consensus matrix is each submodel result: prob (probability), one-hot",
50
+ "feature_fusion_pca_factor": 0.95,
51
+ "_feature_fusion_pca_factor_dsp": "how much the PCA catch of the variance\uff0cfor feature_fusion, meta_clustering, multi_view_cluster",
52
+ "feature_fusion_model": "GMM",
53
+ "meta_clustering_model": "GMM",
54
+ "number_class": 0,
55
+ "_number_class_dsp": "The spicify cluster number of each type of sensor. 0 mean search optimal number base on certain score",
56
+ "min_class": 3,
57
+ "_min_class_dsp": "minimum cluster number for search optimal option",
58
+ "max_class": 7,
59
+ "_max_class_dsp": "maximum cluster number (not include) for search optimal option",
60
+ "stable_indicator": 0.3,
61
+ "_stable_indicator_dsp": "when change less than the value, consider it's stable",
62
+ "covariance_type": "diag",
63
+ "_covariance_type_dsp": "GMM parameter, effect on model size"
64
+ }
65
+ }