bndl commited on
Commit
aa069c9
·
1 Parent(s): 2e494c5

Update config_prediction_polymers.yaml

Browse files
Files changed (1) hide show
  1. config_prediction_polymers.yaml +128 -59
config_prediction_polymers.yaml CHANGED
@@ -1,134 +1,194 @@
1
  input_mapping:
2
  "%SA":
3
  label: "Percentage of SA"
4
- comp_type: Number
5
- precision: 1
 
 
6
  example: 0
7
  '%ADP':
8
  label: "Percentage of DP"
9
- comp_type: Number
10
- precision: 1
 
 
11
  example: 0
12
  '%DDDA':
13
  label: "Percentage of DDDA"
14
- comp_type: Number
15
- precision: 1
 
 
16
  example: 0
17
  '%AZL':
18
  label: "Percentage of AZL"
19
- comp_type: Number
20
- precision: 1
 
 
21
  example: 0
22
  '%1,4-CHDA':
23
  label: "Percentage of 1.4-CHDA"
24
- comp_type: Number
25
- precision: 1
 
 
26
  example: 0
27
  '%1,4-CHDA (95% trans)':
28
  label: "Percentage of 1.4-CHDA (95% trans)"
29
- comp_type: Number
30
- precision: 1
 
 
31
  example: 0
32
  '%1,3-CHDA':
33
  label: "Percentage of 1.3-CHDA"
34
- comp_type: Number
35
- precision: 1
 
 
36
  example: 0
37
  '%1,2-CHDA':
38
  label: "Percentage of 1.2-CHDA"
39
- comp_type: Number
40
- precision: 1
41
- example: 0.5
 
 
42
  '%HHPA':
43
  label: "Percentage of HHPA"
44
- comp_type: Number
45
- precision: 1
 
 
46
  example: 0
47
  '%PA':
48
  label: "Percentage of PA"
49
- comp_type: Number
50
- precision: 1
 
 
51
  example: 0
52
  '%IPA':
53
  label: "Percentage of IPA"
54
- comp_type: Number
55
- precision: 1
 
 
56
  example: 0
57
  '%TPA':
58
  label: "Percentage of TPA"
59
- comp_type: Number
60
- precision: 1
 
 
61
  example: 0
62
  '%TMA':
63
  label: "Percentage of TMA"
64
- comp_type: Number
65
- precision: 1
66
- example: 0.5
 
 
67
  '%EG':
68
  label: "Percentage of EG"
69
- comp_type: Number
70
- precision: 1
 
 
71
  example: 0
72
  '%DEG':
73
  label: "Percentage of DEG"
74
- comp_type: Number
75
- precision: 1
76
- example: 0.3
 
 
77
  '%1,3-PROP':
78
  label: "Percentage of 1.3-PROP"
79
- comp_type: Number
80
- precision: 1
 
 
81
  example: 0
82
  '%1,4-BUT':
83
  label: "Percentage of 1.4-BUT"
84
- comp_type: Number
85
- precision: 1
86
- example: 0.2
 
 
87
  '%HDO':
88
  label: "Percentage of HDO"
89
- comp_type: Number
90
- precision: 1
 
 
91
  example: 0
92
  '%NPG':
93
  label: "Percentage of NPG"
94
- comp_type: Number
95
- precision: 1
 
 
96
  example: 0
97
  '%1,4-CHDM':
98
  label: "Percentage of 1.4-CHDM"
99
- comp_type: Number
100
- precision: 1
 
 
101
  example: 0
102
  '%1,3-CHDM':
103
  label: "Percentage of 1.3-CHDM"
104
- comp_type: Number
105
- precision: 1
 
 
106
  example: 0
107
  '%TMCD':
108
  label: "Percentage of TMCD"
109
- comp_type: Number
110
- precision: 1
111
- example: 0.5
 
 
112
  '%TMP':
113
  label: "Percentage of TMP"
114
- comp_type: Number
115
- precision: 1
 
 
116
  example: 0
117
  '%MPD':
118
  label: "Percentage of MPD"
119
- comp_type: Number
120
- precision: 1
 
 
121
  example: 0
122
  '%TCDDM':
123
  label: "Percentage of TCDDM"
124
- comp_type: Number
125
- precision: 1
 
 
126
  example: 0
127
  'Mw (PS)':
128
- label: "Molecular weight"
129
  comp_type: Number
130
  precision: 0
131
  example: 22358
 
 
 
 
 
 
 
 
 
 
132
 
133
 
134
  input_order:
@@ -136,8 +196,8 @@ input_order:
136
  markdown: "Your acid proportions"
137
  - keys: ['%EG', '%DEG', '%1,3-PROP', '%1,4-BUT', '%HDO', '%NPG', '%1,4-CHDM', '%1,3-CHDM', '%TMCD', '%TMP', '%MPD', '%TCDDM']
138
  markdown: "Your glycol proportions"
139
- - keys: ['Mw (PS)']
140
- markdown: "Your molecular weight"
141
 
142
 
143
  output_mapping:
@@ -148,11 +208,20 @@ output_mapping:
148
  label: "Prediction uncertainty (%)"
149
  comp_type: "Number"
150
  precision: 0
 
 
 
 
 
 
 
151
 
152
  # Output order must exclude the interpretation
153
  output_order:
154
  - keys: ["Tg", "Tg_uncertainty"]
155
  markdown: "Tg of your polymer"
 
 
156
 
157
 
158
  interface_parameters:
@@ -167,7 +236,7 @@ interface_parameters:
167
 
168
 
169
  inference:
170
- model_path: "./polymerlearn/data_models/tg_model_test.pth"
171
  encoder_path: ""
172
  scaler_inputs_path: ""
173
  scaler_targets_path: ""
 
1
  input_mapping:
2
  "%SA":
3
  label: "Percentage of SA"
4
+ comp_type: Slider
5
+ minimum: 0
6
+ maximum: 100
7
+ step: 1
8
  example: 0
9
  '%ADP':
10
  label: "Percentage of DP"
11
+ comp_type: Slider
12
+ minimum: 0
13
+ maximum: 100
14
+ step: 1
15
  example: 0
16
  '%DDDA':
17
  label: "Percentage of DDDA"
18
+ comp_type: Slider
19
+ minimum: 0
20
+ maximum: 100
21
+ step: 1
22
  example: 0
23
  '%AZL':
24
  label: "Percentage of AZL"
25
+ comp_type: Slider
26
+ minimum: 0
27
+ maximum: 100
28
+ step: 1
29
  example: 0
30
  '%1,4-CHDA':
31
  label: "Percentage of 1.4-CHDA"
32
+ comp_type: Slider
33
+ minimum: 0
34
+ maximum: 100
35
+ step: 1
36
  example: 0
37
  '%1,4-CHDA (95% trans)':
38
  label: "Percentage of 1.4-CHDA (95% trans)"
39
+ comp_type: Slider
40
+ minimum: 0
41
+ maximum: 100
42
+ step: 1
43
  example: 0
44
  '%1,3-CHDA':
45
  label: "Percentage of 1.3-CHDA"
46
+ comp_type: Slider
47
+ minimum: 0
48
+ maximum: 100
49
+ step: 1
50
  example: 0
51
  '%1,2-CHDA':
52
  label: "Percentage of 1.2-CHDA"
53
+ comp_type: Slider
54
+ minimum: 0
55
+ maximum: 100
56
+ step: 1
57
+ example: 50
58
  '%HHPA':
59
  label: "Percentage of HHPA"
60
+ comp_type: Slider
61
+ minimum: 0
62
+ maximum: 100
63
+ step: 1
64
  example: 0
65
  '%PA':
66
  label: "Percentage of PA"
67
+ comp_type: Slider
68
+ minimum: 0
69
+ maximum: 100
70
+ step: 1
71
  example: 0
72
  '%IPA':
73
  label: "Percentage of IPA"
74
+ comp_type: Slider
75
+ minimum: 0
76
+ maximum: 100
77
+ step: 1
78
  example: 0
79
  '%TPA':
80
  label: "Percentage of TPA"
81
+ comp_type: Slider
82
+ minimum: 0
83
+ maximum: 100
84
+ step: 1
85
  example: 0
86
  '%TMA':
87
  label: "Percentage of TMA"
88
+ comp_type: Slider
89
+ minimum: 0
90
+ maximum: 100
91
+ step: 1
92
+ example: 50
93
  '%EG':
94
  label: "Percentage of EG"
95
+ comp_type: Slider
96
+ minimum: 0
97
+ maximum: 100
98
+ step: 1
99
  example: 0
100
  '%DEG':
101
  label: "Percentage of DEG"
102
+ comp_type: Slider
103
+ minimum: 0
104
+ maximum: 100
105
+ step: 1
106
+ example: 30
107
  '%1,3-PROP':
108
  label: "Percentage of 1.3-PROP"
109
+ comp_type: Slider
110
+ minimum: 0
111
+ maximum: 100
112
+ step: 1
113
  example: 0
114
  '%1,4-BUT':
115
  label: "Percentage of 1.4-BUT"
116
+ comp_type: Slider
117
+ minimum: 0
118
+ maximum: 100
119
+ step: 1
120
+ example: 20
121
  '%HDO':
122
  label: "Percentage of HDO"
123
+ comp_type: Slider
124
+ minimum: 0
125
+ maximum: 100
126
+ step: 1
127
  example: 0
128
  '%NPG':
129
  label: "Percentage of NPG"
130
+ comp_type: Slider
131
+ minimum: 0
132
+ maximum: 100
133
+ step: 1
134
  example: 0
135
  '%1,4-CHDM':
136
  label: "Percentage of 1.4-CHDM"
137
+ comp_type: Slider
138
+ minimum: 0
139
+ maximum: 100
140
+ step: 1
141
  example: 0
142
  '%1,3-CHDM':
143
  label: "Percentage of 1.3-CHDM"
144
+ comp_type: Slider
145
+ minimum: 0
146
+ maximum: 100
147
+ step: 1
148
  example: 0
149
  '%TMCD':
150
  label: "Percentage of TMCD"
151
+ comp_type: Slider
152
+ minimum: 0
153
+ maximum: 100
154
+ step: 1
155
+ example: 50
156
  '%TMP':
157
  label: "Percentage of TMP"
158
+ comp_type: Slider
159
+ minimum: 0
160
+ maximum: 100
161
+ step: 1
162
  example: 0
163
  '%MPD':
164
  label: "Percentage of MPD"
165
+ comp_type: Slider
166
+ minimum: 0
167
+ maximum: 100
168
+ step: 1
169
  example: 0
170
  '%TCDDM':
171
  label: "Percentage of TCDDM"
172
+ comp_type: Slider
173
+ minimum: 0
174
+ maximum: 100
175
+ step: 1
176
  example: 0
177
  'Mw (PS)':
178
+ label: "Weight-average molecular weight"
179
  comp_type: Number
180
  precision: 0
181
  example: 22358
182
+ 'AN':
183
+ label: "Acid number"
184
+ comp_type: Number
185
+ precision: 1
186
+ example: 4.1
187
+ 'OHN':
188
+ label: "Hydroxyl number"
189
+ comp_type: Number
190
+ precision: 0
191
+ example: 25
192
 
193
 
194
  input_order:
 
196
  markdown: "Your acid proportions"
197
  - keys: ['%EG', '%DEG', '%1,3-PROP', '%1,4-BUT', '%HDO', '%NPG', '%1,4-CHDM', '%1,3-CHDM', '%TMCD', '%TMP', '%MPD', '%TCDDM']
198
  markdown: "Your glycol proportions"
199
+ - keys: ['Mw (PS)', "AN", "OHN"]
200
+ markdown: "Your additional molecular information"
201
 
202
 
203
  output_mapping:
 
208
  label: "Prediction uncertainty (%)"
209
  comp_type: "Number"
210
  precision: 0
211
+ IV:
212
+ label: "Estimated IV of your polymer"
213
+ comp_type: "Text"
214
+ IV_uncertainty:
215
+ label: "Prediction uncertainty (%)"
216
+ comp_type: "Number"
217
+ precision: 0
218
 
219
  # Output order must exclude the interpretation
220
  output_order:
221
  - keys: ["Tg", "Tg_uncertainty"]
222
  markdown: "Tg of your polymer"
223
+ - keys: ["IV", "IV_uncertainty"]
224
+ markdown: "IV of your polymer"
225
 
226
 
227
  interface_parameters:
 
236
 
237
 
238
  inference:
239
+ model_path: "./polymerlearn/data_models/"
240
  encoder_path: ""
241
  scaler_inputs_path: ""
242
  scaler_targets_path: ""