Do1Yun commited on
Commit
54a048a
·
verified ·
1 Parent(s): 0038c1c

Update model - Task: default

Browse files
Files changed (3) hide show
  1. MoamaMolecularEncoder.pt +3 -0
  2. README.md +74 -75
  3. config.json +506 -506
MoamaMolecularEncoder.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a84249999feb348deb2972baf487f0c13910dd6ed89f5853b1cf3e5fa3c89c8
3
+ size 15498975
README.md CHANGED
@@ -1,75 +1,74 @@
1
- ---
2
- tags:
3
- - torch_molecule
4
- - molecular-property-prediction
5
- library_name: torch_molecule
6
- ---
7
-
8
- # AttrMaskMolecularEncoder Model
9
-
10
- ## Model Description
11
- - **Model Type**: AttrMaskMolecularEncoder
12
- - **Framework**: torch_molecule
13
- - **Last Updated**: 2025-07-28
14
-
15
- ## Task Summary
16
- | Task | Version | Last Updated | Parameters | Metrics |
17
- |------|---------|--------------|------------|----------|
18
- | default | 0.0.3 | 2025-07-28 | 3,594,425 | |
19
-
20
-
21
- ## Usage
22
-
23
- ```python
24
- from torch_molecule import AttrMaskMolecularEncoder
25
-
26
- # Load model for specific task
27
- model = AttrMaskMolecularEncoder()
28
- model.load(
29
- "local_model_dir/AttrMaskMolecularEncoder.pt",
30
- repo="Do1Yun/TorchMoleculeEncoderRepo"
31
- )
32
-
33
- # For predictor: Make predictions
34
- # predictions = model.predict(smiles_list)
35
- # For generator: Make generations
36
- # generations = model.generate(n_samples)
37
- # For encoder: Make encodings
38
- # encodings = model.encode(smiles_list)
39
- ```
40
-
41
- ## Tasks Details
42
-
43
-
44
- ### default Task
45
- - **Current Version**: 0.0.3
46
- - **Last Updated**: 2025-07-28
47
- - **Parameters**: 3,594,425
48
- - **Configuration**:
49
- ```python
50
- {
51
- "mask_num": 0,
52
- "mask_rate": 0.15,
53
- "encoder_type": "gin-virtual",
54
- "readout": "sum",
55
- "num_layer": 5,
56
- "hidden_size": 300,
57
- "drop_ratio": 0.5,
58
- "norm_layer": "batch_norm",
59
- "batch_size": 128,
60
- "epochs": 500,
61
- "learning_rate": 0.001,
62
- "weight_decay": 0.0,
63
- "grad_clip_value": null,
64
- "use_lr_scheduler": false,
65
- "scheduler_factor": 0.5,
66
- "scheduler_patience": 5,
67
- "fitting_epoch": 499,
68
- "device": {
69
- "_type": "unknown",
70
- "repr": "cuda:0"
71
- },
72
- "verbose": false,
73
- "model_name": "AttrMaskMolecularEncoder"
74
- }
75
- ```
 
1
+ ---
2
+ tags:
3
+ - torch_molecule
4
+ library_name: torch_molecule
5
+ ---
6
+
7
+ # MoamaMolecularEncoder Model
8
+
9
+ ## Model Description
10
+ - **Model Type**: MoamaMolecularEncoder
11
+ - **Framework**: torch_molecule
12
+ - **Last Updated**: 2025-07-28
13
+
14
+ ## Task Summary
15
+ | Task | Version | Last Updated | Parameters | Metrics |
16
+ |------|---------|--------------|------------|----------|
17
+ | default | 0.0.4 | 2025-07-28 | 3,832,927 | |
18
+
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ from torch_molecule import MoamaMolecularEncoder
24
+
25
+ # Load model for specific task
26
+ model = MoamaMolecularEncoder()
27
+ model.load(
28
+ "local_model_dir/MoamaMolecularEncoder.pt",
29
+ repo="Do1Yun/TorchMoleculeEncoderRepo"
30
+ )
31
+
32
+ # For predictor: Make predictions
33
+ # predictions = model.predict(smiles_list)
34
+ # For generator: Make generations
35
+ # generations = model.generate(n_samples)
36
+ # For encoder: Make encodings
37
+ # encodings = model.encode(smiles_list)
38
+ ```
39
+
40
+ ## Tasks Details
41
+
42
+
43
+ ### default Task
44
+ - **Current Version**: 0.0.4
45
+ - **Last Updated**: 2025-07-28
46
+ - **Parameters**: 3,832,927
47
+ - **Configuration**:
48
+ ```python
49
+ {
50
+ "mask_rate": 0.15,
51
+ "lw_rec": 0.5,
52
+ "encoder_type": "gin-virtual",
53
+ "readout": "sum",
54
+ "num_layer": 5,
55
+ "hidden_size": 300,
56
+ "drop_ratio": 0.5,
57
+ "norm_layer": "batch_norm",
58
+ "batch_size": 128,
59
+ "epochs": 500,
60
+ "learning_rate": 0.001,
61
+ "weight_decay": 0.0,
62
+ "grad_clip_value": null,
63
+ "use_lr_scheduler": false,
64
+ "scheduler_factor": 0.5,
65
+ "scheduler_patience": 5,
66
+ "fitting_epoch": 499,
67
+ "device": {
68
+ "_type": "unknown",
69
+ "repr": "cuda:0"
70
+ },
71
+ "verbose": false,
72
+ "model_name": "MoamaMolecularEncoder"
73
+ }
74
+ ```
 
config.json CHANGED
@@ -5,13 +5,13 @@
5
  "tasks": {
6
  "default": {
7
  "versions": [],
8
- "current_version": "0.0.3",
9
  "date_added": "2025-07-28T00:54:19.007002",
10
- "last_updated": "2025-07-28T01:00:50.342946",
11
- "num_parameters": 3594425,
12
  "config": {
13
- "mask_num": 0,
14
  "mask_rate": 0.15,
 
15
  "encoder_type": "gin-virtual",
16
  "readout": "sum",
17
  "num_layer": 5,
@@ -28,516 +28,516 @@
28
  "scheduler_patience": 5,
29
  "fitting_epoch": 499,
30
  "fitting_loss": [
31
- 4.996152877807617,
32
- 4.402116298675537,
33
- 4.286804676055908,
34
- 3.7053306102752686,
35
- 3.5022552013397217,
36
- 2.876791000366211,
37
- 2.716606855392456,
38
- 2.3497791290283203,
39
- 1.9900438785552979,
40
- 1.8553345203399658,
41
- 1.4566961526870728,
42
- 2.0688087940216064,
43
- 1.2402727603912354,
44
- 0.9468644857406616,
45
- 0.9342559576034546,
46
- 1.1607475280761719,
47
- 1.326992392539978,
48
- 0.5079280734062195,
49
- 0.8594366312026978,
50
- 0.7061648964881897,
51
- 0.63957279920578,
52
- 0.7105158567428589,
53
- 0.7494128942489624,
54
- 0.6258470416069031,
55
- 0.9016268849372864,
56
- 0.6173146963119507,
57
- 0.5860401391983032,
58
- 0.3886861503124237,
59
- 0.4742627739906311,
60
- 1.1641947031021118,
61
- 0.6619031429290771,
62
- 0.57908034324646,
63
- 0.11859450489282608,
64
- 0.9777603149414062,
65
- 0.15628550946712494,
66
- 0.8755666613578796,
67
- 0.41637223958969116,
68
- 0.8116925954818726,
69
- 0.9322603940963745,
70
- 0.3519366979598999,
71
- 0.4192543029785156,
72
- 0.4403764307498932,
73
- 0.3576270639896393,
74
- 0.27948233485221863,
75
- 0.3619006276130676,
76
- 0.3364676833152771,
77
- 0.9280306696891785,
78
- 0.3960112929344177,
79
- 0.5174800157546997,
80
- 0.7684676051139832,
81
- 0.4028964638710022,
82
- 0.30509689450263977,
83
- 0.798027753829956,
84
- 0.36321425437927246,
85
- 0.5599098801612854,
86
- 0.5805875062942505,
87
- 0.7822366952896118,
88
- 0.5255011916160583,
89
- 0.2777950167655945,
90
- 0.4759608209133148,
91
- 0.59538733959198,
92
- 0.5742748379707336,
93
- 0.3292253911495209,
94
- 0.7123931646347046,
95
- 0.44052624702453613,
96
- 0.3419508635997772,
97
- 0.3534903824329376,
98
- 0.5872424840927124,
99
- 0.7481792569160461,
100
- 0.21194906532764435,
101
- 0.8025344014167786,
102
- 0.5024550557136536,
103
- 1.2354381084442139,
104
- 0.4185825288295746,
105
- 0.3983451724052429,
106
- 0.3882438540458679,
107
- 0.5797902345657349,
108
- 0.7057582139968872,
109
- 0.6428931355476379,
110
- 0.288347452878952,
111
- 0.32607215642929077,
112
- 0.251495897769928,
113
- 0.7191485166549683,
114
- 0.4031921327114105,
115
- 0.2826482355594635,
116
- 0.5878234505653381,
117
- 0.42915400862693787,
118
- 0.2398238480091095,
119
- 0.5343168377876282,
120
- 1.4010119438171387,
121
- 1.0991138219833374,
122
- 0.49648112058639526,
123
- 0.3290044665336609,
124
- 0.2707361578941345,
125
- 0.3911427855491638,
126
- 0.9581390619277954,
127
- 0.8006284832954407,
128
- 0.5359276533126831,
129
- 0.3100513517856598,
130
- 0.4161190092563629,
131
- 0.38473746180534363,
132
- 0.30571621656417847,
133
- 0.3456459045410156,
134
- 0.43974608182907104,
135
- 0.7101629376411438,
136
- 0.4217354655265808,
137
- 0.5313353538513184,
138
- 0.6408511400222778,
139
- 0.4056050777435303,
140
- 0.22638514637947083,
141
- 0.18880531191825867,
142
- 0.23189465701580048,
143
- 0.2595455050468445,
144
- 0.3883160948753357,
145
- 0.38425591588020325,
146
- 0.36164146661758423,
147
- 0.6484501957893372,
148
- 0.5311715006828308,
149
- 0.5154604911804199,
150
- 0.7887142896652222,
151
- 0.28169602155685425,
152
- 0.3688024580478668,
153
- 0.217234805226326,
154
- 1.0080090761184692,
155
- 0.5041071176528931,
156
- 0.7552942037582397,
157
- 0.16636785864830017,
158
- 0.18091227114200592,
159
- 0.5358551144599915,
160
- 0.5466974377632141,
161
- 0.38645634055137634,
162
- 0.41682901978492737,
163
- 0.9073346853256226,
164
- 0.3793114125728607,
165
- 0.35174912214279175,
166
- 0.3387843370437622,
167
- 0.22204597294330597,
168
- 0.5342804193496704,
169
- 0.4898867607116699,
170
- 0.9965413212776184,
171
- 0.9475805163383484,
172
- 0.29249075055122375,
173
- 0.5349370241165161,
174
- 0.30377718806266785,
175
- 0.3681129515171051,
176
- 0.6319781541824341,
177
- 0.5793741345405579,
178
- 0.2693966329097748,
179
- 0.5589936971664429,
180
- 0.2269773781299591,
181
- 0.5237988233566284,
182
- 0.2722271978855133,
183
- 0.8062452077865601,
184
- 0.4712137281894684,
185
- 0.22089019417762756,
186
- 1.447664499282837,
187
- 0.9395953416824341,
188
- 0.45404261350631714,
189
- 0.4125555157661438,
190
- 0.1553448736667633,
191
- 0.730211615562439,
192
- 0.5923703908920288,
193
- 0.22928039729595184,
194
- 0.3123701512813568,
195
- 0.4336423873901367,
196
- 0.6862645745277405,
197
- 0.2603689134120941,
198
- 0.29535648226737976,
199
- 0.5501154661178589,
200
- 0.26460811495780945,
201
- 0.733356773853302,
202
- 0.3731544613838196,
203
- 0.26345768570899963,
204
- 0.7496148943901062,
205
- 0.4464171528816223,
206
- 0.37008169293403625,
207
- 0.24376718699932098,
208
- 0.39134177565574646,
209
- 0.3816705346107483,
210
- 0.8019323348999023,
211
- 0.3298947811126709,
212
- 0.255426824092865,
213
- 0.5259463787078857,
214
- 0.5658147931098938,
215
- 1.0383570194244385,
216
- 0.3417527973651886,
217
- 0.15777859091758728,
218
- 0.3866076171398163,
219
- 0.1722337156534195,
220
- 1.1051384210586548,
221
- 0.8860456347465515,
222
- 0.5341864824295044,
223
- 0.46325749158859253,
224
- 0.5073748826980591,
225
- 0.5643683671951294,
226
- 0.3901541829109192,
227
- 0.40767502784729004,
228
- 0.5128179788589478,
229
- 0.539199948310852,
230
- 0.6135882139205933,
231
- 0.3762592077255249,
232
- 0.5035436749458313,
233
- 0.8780062794685364,
234
- 0.6322761178016663,
235
- 0.7420861721038818,
236
- 0.42991334199905396,
237
- 0.46307069063186646,
238
- 0.6590451002120972,
239
- 0.3255358040332794,
240
- 0.7088753581047058,
241
- 0.7313900589942932,
242
- 0.298865407705307,
243
- 0.41628679633140564,
244
- 0.49936866760253906,
245
- 0.26091015338897705,
246
- 0.37874940037727356,
247
- 0.4591134190559387,
248
- 0.8943042755126953,
249
- 0.744271457195282,
250
- 0.41766849160194397,
251
- 0.23946423828601837,
252
- 0.477478563785553,
253
- 0.29278355836868286,
254
- 0.24168935418128967,
255
- 0.2567668557167053,
256
- 0.4457925260066986,
257
- 0.48443883657455444,
258
- 0.7147449254989624,
259
- 0.446770578622818,
260
- 0.6868687868118286,
261
- 0.7817607522010803,
262
- 0.336753785610199,
263
- 0.309366911649704,
264
- 0.3396080434322357,
265
- 0.6693714261054993,
266
- 0.3731325566768646,
267
- 0.33827850222587585,
268
- 0.7238355875015259,
269
- 0.5596647262573242,
270
- 0.38211655616760254,
271
- 0.522504448890686,
272
- 0.23047125339508057,
273
- 0.2978474497795105,
274
- 0.7394028902053833,
275
- 0.6890092492103577,
276
- 0.5768515467643738,
277
- 0.18914732336997986,
278
- 0.5642850995063782,
279
- 0.42052412033081055,
280
- 0.2457868754863739,
281
- 0.33352917432785034,
282
- 0.6059864163398743,
283
- 0.3850422501564026,
284
- 0.29549288749694824,
285
- 0.2077784538269043,
286
- 0.5764028429985046,
287
- 0.21243052184581757,
288
- 0.23376913368701935,
289
- 0.2715389132499695,
290
- 0.9575976133346558,
291
- 0.2524467408657074,
292
- 0.2415458709001541,
293
- 0.405648797750473,
294
- 0.44317179918289185,
295
- 0.33455443382263184,
296
- 0.468332439661026,
297
- 0.19171185791492462,
298
- 0.5437362790107727,
299
- 1.1427279710769653,
300
- 0.11757652461528778,
301
- 0.3206452429294586,
302
- 0.14194253087043762,
303
- 0.10986683517694473,
304
- 0.8027232885360718,
305
- 0.3472699820995331,
306
- 0.7783562541007996,
307
- 0.5509957671165466,
308
- 0.3111230731010437,
309
- 0.6732574701309204,
310
- 0.33623188734054565,
311
- 0.22116918861865997,
312
- 0.503943920135498,
313
- 0.3373722732067108,
314
- 0.5363202691078186,
315
- 0.44986429810523987,
316
- 0.4686926007270813,
317
- 1.0233891010284424,
318
- 0.48033246397972107,
319
- 0.41923508048057556,
320
- 0.17744919657707214,
321
- 0.6196979284286499,
322
- 0.49293971061706543,
323
- 0.24586740136146545,
324
- 0.1630856990814209,
325
- 0.5436987280845642,
326
- 0.4153521955013275,
327
- 0.12716658413410187,
328
- 0.6567837595939636,
329
- 0.3643527328968048,
330
- 0.6312351822853088,
331
- 0.6398972272872925,
332
- 0.565264105796814,
333
- 0.4551847577095032,
334
- 0.7792134881019592,
335
- 0.3361230790615082,
336
- 0.34384244680404663,
337
- 0.7922831773757935,
338
- 0.3173929750919342,
339
- 0.4873131215572357,
340
- 0.41133326292037964,
341
- 0.29689663648605347,
342
- 1.8540493249893188,
343
- 0.5348710417747498,
344
- 0.21254897117614746,
345
- 0.442542165517807,
346
- 0.5880815982818604,
347
- 0.7515714764595032,
348
- 0.6251550316810608,
349
- 0.6777412295341492,
350
- 0.38710957765579224,
351
- 0.8749958872795105,
352
- 0.3921049237251282,
353
- 0.35601407289505005,
354
- 0.36062318086624146,
355
- 0.4169125556945801,
356
- 0.6056912541389465,
357
- 0.46961379051208496,
358
- 0.5180769562721252,
359
- 0.39724600315093994,
360
- 0.2695150673389435,
361
- 0.7424604892730713,
362
- 0.28256064653396606,
363
- 0.8644259572029114,
364
- 0.4532569348812103,
365
- 0.6883207559585571,
366
- 0.5823866128921509,
367
- 0.4953431189060211,
368
- 0.44768697023391724,
369
- 0.7914394736289978,
370
- 0.3250812590122223,
371
- 0.4912678599357605,
372
- 0.27932828664779663,
373
- 0.23870539665222168,
374
- 0.7483063340187073,
375
- 0.33062228560447693,
376
- 0.12067808210849762,
377
- 0.5024492144584656,
378
- 0.7383429408073425,
379
- 0.5882118344306946,
380
- 0.5961887240409851,
381
- 0.45857349038124084,
382
- 0.6769502758979797,
383
- 0.5184422731399536,
384
- 0.44192367792129517,
385
- 0.3908086121082306,
386
- 0.34864211082458496,
387
- 0.2626740336418152,
388
- 0.654089629650116,
389
- 0.8104997873306274,
390
- 0.40358734130859375,
391
- 0.3514191806316376,
392
- 0.26492100954055786,
393
- 0.642215371131897,
394
- 0.8263529539108276,
395
- 0.6041387915611267,
396
- 0.40270599722862244,
397
- 0.7625541687011719,
398
- 0.4588116705417633,
399
- 0.11724777519702911,
400
- 0.19574834406375885,
401
- 0.14470252394676208,
402
- 0.3195246458053589,
403
- 0.48731058835983276,
404
- 1.0017971992492676,
405
- 1.0702540874481201,
406
- 1.0332129001617432,
407
- 0.08338930457830429,
408
- 0.6621829271316528,
409
- 0.27918314933776855,
410
- 0.654003918170929,
411
- 0.33250129222869873,
412
- 0.6100315451622009,
413
- 0.2966388761997223,
414
- 0.4416135251522064,
415
- 0.3821648955345154,
416
- 0.8340002298355103,
417
- 0.7298456430435181,
418
- 0.5229954719543457,
419
- 0.35604897141456604,
420
- 0.48345398902893066,
421
- 0.3408129811286926,
422
- 0.3246583938598633,
423
- 0.30518728494644165,
424
- 0.5293927192687988,
425
- 0.38887542486190796,
426
- 0.6161840558052063,
427
- 0.3230558931827545,
428
- 0.5098403692245483,
429
- 0.3052632212638855,
430
- 0.3995778560638428,
431
- 0.19375784695148468,
432
- 0.455537885427475,
433
- 0.33402636647224426,
434
- 0.3635786473751068,
435
- 0.787641704082489,
436
- 0.12492283433675766,
437
- 0.15288597345352173,
438
- 0.5420080423355103,
439
- 0.4087468087673187,
440
- 0.26601895689964294,
441
- 0.22584407031536102,
442
- 0.8874486088752747,
443
- 0.31426185369491577,
444
- 0.22462674975395203,
445
- 0.642693817615509,
446
- 0.14508056640625,
447
- 0.19527260959148407,
448
- 0.8728815317153931,
449
- 1.324711561203003,
450
- 0.10445456206798553,
451
- 0.4296071529388428,
452
- 0.7202345728874207,
453
- 0.24360576272010803,
454
- 0.3371167480945587,
455
- 0.5627278089523315,
456
- 0.1285467892885208,
457
- 0.4510065019130707,
458
- 0.40313753485679626,
459
- 0.4410019814968109,
460
- 0.3325061798095703,
461
- 0.5065397024154663,
462
- 0.24965021014213562,
463
- 0.2475392371416092,
464
- 0.2371709793806076,
465
- 0.25641149282455444,
466
- 0.1893666386604309,
467
- 0.3670823276042938,
468
- 0.9042516946792603,
469
- 0.21591134369373322,
470
- 0.1040753573179245,
471
- 0.9530197978019714,
472
- 0.10352208465337753,
473
- 0.42884746193885803,
474
- 0.7924400568008423,
475
- 0.2482253611087799,
476
- 0.2777290940284729,
477
- 0.29915112257003784,
478
- 0.5151290893554688,
479
- 0.2612084746360779,
480
- 0.08816640824079514,
481
- 0.7276930809020996,
482
- 0.16760477423667908,
483
- 0.42782583832740784,
484
- 0.4576148986816406,
485
- 0.37804093956947327,
486
- 0.4354364275932312,
487
- 0.4221978187561035,
488
- 0.6064550876617432,
489
- 0.4986470341682434,
490
- 0.3757507801055908,
491
- 0.2781077027320862,
492
- 0.34302061796188354,
493
- 0.35890260338783264,
494
- 0.2859274744987488,
495
- 0.4676279127597809,
496
- 0.4307747483253479,
497
- 0.5071467161178589,
498
- 0.7479759454727173,
499
- 0.3067375421524048,
500
- 0.2581239938735962,
501
- 0.554526686668396,
502
- 0.9963879585266113,
503
- 0.4114989638328552,
504
- 1.1366322040557861,
505
- 0.16356268525123596,
506
- 0.3056778907775879,
507
- 0.5954980254173279,
508
- 1.058269739151001,
509
- 0.5942265391349792,
510
- 0.44386157393455505,
511
- 0.20067934691905975,
512
- 0.27402886748313904,
513
- 0.44624072313308716,
514
- 0.42632609605789185,
515
- 0.30917924642562866,
516
- 0.35220587253570557,
517
- 0.5194714665412903,
518
- 0.22023673355579376,
519
- 0.31480538845062256,
520
- 0.18630769848823547,
521
- 0.25789761543273926,
522
- 0.980412483215332,
523
- 0.25864553451538086,
524
- 0.25702372193336487,
525
- 0.6743003129959106,
526
- 0.576539933681488,
527
- 0.1462956964969635,
528
- 0.3099852204322815,
529
- 0.44255298376083374,
530
- 0.29245999455451965
531
  ],
532
  "device": {
533
  "_type": "unknown",
534
  "repr": "cuda:0"
535
  },
536
  "verbose": false,
537
- "model_name": "AttrMaskMolecularEncoder"
538
  },
539
  "metrics": {}
540
  }
541
  },
542
- "last_updated": "2025-07-28T01:00:50.342946"
543
  }
 
5
  "tasks": {
6
  "default": {
7
  "versions": [],
8
+ "current_version": "0.0.4",
9
  "date_added": "2025-07-28T00:54:19.007002",
10
+ "last_updated": "2025-07-28T01:03:54.857974",
11
+ "num_parameters": 3832927,
12
  "config": {
 
13
  "mask_rate": 0.15,
14
+ "lw_rec": 0.5,
15
  "encoder_type": "gin-virtual",
16
  "readout": "sum",
17
  "num_layer": 5,
 
28
  "scheduler_patience": 5,
29
  "fitting_epoch": 499,
30
  "fitting_loss": [
31
+ 2.4934723377227783,
32
+ 1.5028793811798096,
33
+ 1.817282795906067,
34
+ 0.6037716269493103,
35
+ 0.8321542739868164,
36
+ 0.7388754487037659,
37
+ 1.0127408504486084,
38
+ 0.972572386264801,
39
+ 0.7026003003120422,
40
+ 0.48937511444091797,
41
+ 0.5473561882972717,
42
+ 0.3322814404964447,
43
+ 0.41473913192749023,
44
+ 0.6113467812538147,
45
+ 0.6312673091888428,
46
+ 0.6077507138252258,
47
+ 0.6574184894561768,
48
+ 0.6708309650421143,
49
+ 1.0486592054367065,
50
+ 0.6509362459182739,
51
+ 0.25789162516593933,
52
+ 0.8647130131721497,
53
+ 0.6293666958808899,
54
+ 0.8720470666885376,
55
+ 0.7181805968284607,
56
+ 0.6305825114250183,
57
+ 0.5477994680404663,
58
+ 0.5119299292564392,
59
+ 0.7021406888961792,
60
+ 0.43882259726524353,
61
+ 0.5523068308830261,
62
+ 0.5761422514915466,
63
+ 0.5430785417556763,
64
+ 0.5408583879470825,
65
+ 0.39005914330482483,
66
+ 0.5601739883422852,
67
+ 0.4095599055290222,
68
+ 0.532346248626709,
69
+ 0.4491351246833801,
70
+ 0.502274751663208,
71
+ 0.4835410416126251,
72
+ 0.5160512328147888,
73
+ 0.6004669666290283,
74
+ 0.6286618709564209,
75
+ 0.7765337228775024,
76
+ 0.7337257862091064,
77
+ 0.41362130641937256,
78
+ 0.424739271402359,
79
+ 0.4954940676689148,
80
+ 0.4974263608455658,
81
+ 0.466461181640625,
82
+ 0.6026363968849182,
83
+ 0.5663715600967407,
84
+ 0.8411586284637451,
85
+ 0.4256434142589569,
86
+ 0.38103169202804565,
87
+ 0.3589947819709778,
88
+ 0.6131534576416016,
89
+ 0.4476424753665924,
90
+ 0.3664727210998535,
91
+ 0.5036217570304871,
92
+ 0.518470048904419,
93
+ 0.5414567589759827,
94
+ 0.35259562730789185,
95
+ 0.6783202886581421,
96
+ 0.4113401770591736,
97
+ 0.5486579537391663,
98
+ 0.8077086806297302,
99
+ 0.66451096534729,
100
+ 0.506168007850647,
101
+ 0.5346099734306335,
102
+ 0.8126798868179321,
103
+ 0.5199491381645203,
104
+ 0.28191661834716797,
105
+ 0.3189363479614258,
106
+ 0.6141414046287537,
107
+ 0.5116540789604187,
108
+ 0.7014634609222412,
109
+ 0.48169827461242676,
110
+ 0.4863126277923584,
111
+ 0.6707343459129333,
112
+ 0.5241608619689941,
113
+ 0.47526276111602783,
114
+ 0.42440277338027954,
115
+ 0.4435606300830841,
116
+ 0.4693034887313843,
117
+ 0.446918249130249,
118
+ 0.5239423513412476,
119
+ 0.5691443681716919,
120
+ 0.5175547003746033,
121
+ 0.5549976825714111,
122
+ 0.637085497379303,
123
+ 0.4311109781265259,
124
+ 0.6501147747039795,
125
+ 0.5005682110786438,
126
+ 0.6060160994529724,
127
+ 0.5141671299934387,
128
+ 0.3105792701244354,
129
+ 0.5135179758071899,
130
+ 0.48258090019226074,
131
+ 0.4212336540222168,
132
+ 0.35226407647132874,
133
+ 0.5908602476119995,
134
+ 0.42162567377090454,
135
+ 0.561450719833374,
136
+ 0.42204976081848145,
137
+ 0.40988075733184814,
138
+ 0.5751634240150452,
139
+ 0.4545266628265381,
140
+ 0.6648409366607666,
141
+ 0.391839861869812,
142
+ 0.5084388256072998,
143
+ 0.5137872695922852,
144
+ 0.4388817250728607,
145
+ 0.7235558032989502,
146
+ 0.607779860496521,
147
+ 0.5911016464233398,
148
+ 0.41904696822166443,
149
+ 0.28994452953338623,
150
+ 0.5625941753387451,
151
+ 0.3330405354499817,
152
+ 0.6420385837554932,
153
+ 0.6351126432418823,
154
+ 0.3085431158542633,
155
+ 0.29219549894332886,
156
+ 0.5870287418365479,
157
+ 0.46709421277046204,
158
+ 0.4776581823825836,
159
+ 0.5400769114494324,
160
+ 0.4445663094520569,
161
+ 0.5026648044586182,
162
+ 0.4295222759246826,
163
+ 0.5664678812026978,
164
+ 0.48272353410720825,
165
+ 0.23567113280296326,
166
+ 0.43793392181396484,
167
+ 0.41843682527542114,
168
+ 0.4774501621723175,
169
+ 0.7307078242301941,
170
+ 0.1890094131231308,
171
+ 0.48756617307662964,
172
+ 0.5811394453048706,
173
+ 0.24794933199882507,
174
+ 0.5119354724884033,
175
+ 0.5437243580818176,
176
+ 0.667704164981842,
177
+ 0.2833482027053833,
178
+ 0.4681527316570282,
179
+ 0.49124592542648315,
180
+ 0.3263551890850067,
181
+ 0.5672933459281921,
182
+ 0.5649304986000061,
183
+ 0.43207114934921265,
184
+ 0.41311967372894287,
185
+ 0.5190122127532959,
186
+ 0.6521221995353699,
187
+ 0.42691347002983093,
188
+ 0.34758323431015015,
189
+ 0.46975937485694885,
190
+ 0.6218429803848267,
191
+ 0.33651041984558105,
192
+ 0.7388218641281128,
193
+ 0.2696453630924225,
194
+ 0.6399533152580261,
195
+ 0.5381574034690857,
196
+ 0.47940880060195923,
197
+ 0.29307568073272705,
198
+ 0.3923386037349701,
199
+ 0.3948023319244385,
200
+ 0.37475961446762085,
201
+ 0.3338654339313507,
202
+ 0.5731768012046814,
203
+ 0.3269473612308502,
204
+ 0.4272758364677429,
205
+ 0.5100287795066833,
206
+ 0.41389164328575134,
207
+ 0.4680101275444031,
208
+ 0.486989825963974,
209
+ 0.27435994148254395,
210
+ 0.4359315037727356,
211
+ 0.3128502666950226,
212
+ 0.3046075701713562,
213
+ 0.5120410323143005,
214
+ 0.31449079513549805,
215
+ 0.26783284544944763,
216
+ 0.22847382724285126,
217
+ 0.37697839736938477,
218
+ 0.391422837972641,
219
+ 0.4810630977153778,
220
+ 0.5123896598815918,
221
+ 0.3863701820373535,
222
+ 0.19307386875152588,
223
+ 0.33133465051651,
224
+ 0.6843250393867493,
225
+ 0.24446454644203186,
226
+ 0.3752581775188446,
227
+ 0.26126059889793396,
228
+ 0.3884340524673462,
229
+ 0.5138853192329407,
230
+ 0.62128746509552,
231
+ 0.736653208732605,
232
+ 0.4091724455356598,
233
+ 0.45628947019577026,
234
+ 0.3277736306190491,
235
+ 0.5189310312271118,
236
+ 0.3565245568752289,
237
+ 0.5355857610702515,
238
+ 0.4186529517173767,
239
+ 0.5134093761444092,
240
+ 0.33904752135276794,
241
+ 0.36060601472854614,
242
+ 0.37352651357650757,
243
+ 0.5179464817047119,
244
+ 0.6372324824333191,
245
+ 0.4822283983230591,
246
+ 0.2615869641304016,
247
+ 0.4988669753074646,
248
+ 0.47749051451683044,
249
+ 0.35608822107315063,
250
+ 0.32278111577033997,
251
+ 0.504837691783905,
252
+ 0.4201282858848572,
253
+ 0.29620361328125,
254
+ 0.5067989826202393,
255
+ 0.3939768373966217,
256
+ 0.4170253872871399,
257
+ 0.551950991153717,
258
+ 0.5270466804504395,
259
+ 0.39252910017967224,
260
+ 0.2702043950557709,
261
+ 0.3797297775745392,
262
+ 0.5689100027084351,
263
+ 0.4682718813419342,
264
+ 0.2654817998409271,
265
+ 0.4437319040298462,
266
+ 0.41376474499702454,
267
+ 0.42894092202186584,
268
+ 0.39764174818992615,
269
+ 0.20705880224704742,
270
+ 0.47430890798568726,
271
+ 0.3245769739151001,
272
+ 0.4898531436920166,
273
+ 0.6756761074066162,
274
+ 0.36145567893981934,
275
+ 0.4544265866279602,
276
+ 0.35926228761672974,
277
+ 0.3122835159301758,
278
+ 0.5561898350715637,
279
+ 0.2854667603969574,
280
+ 0.277227520942688,
281
+ 0.3676034212112427,
282
+ 0.5345287322998047,
283
+ 0.4607138931751251,
284
+ 0.36523371934890747,
285
+ 0.5498111248016357,
286
+ 0.29543983936309814,
287
+ 0.2837737500667572,
288
+ 0.40446045994758606,
289
+ 0.21389155089855194,
290
+ 0.4182598888874054,
291
+ 0.20416508615016937,
292
+ 0.23096710443496704,
293
+ 0.21529917418956757,
294
+ 0.29743072390556335,
295
+ 0.3450931906700134,
296
+ 0.6132060885429382,
297
+ 0.3225642144680023,
298
+ 0.5455270409584045,
299
+ 0.6553961038589478,
300
+ 0.5035419464111328,
301
+ 0.347839891910553,
302
+ 0.2071116715669632,
303
+ 0.37668949365615845,
304
+ 0.4790385961532593,
305
+ 0.5050801038742065,
306
+ 0.39988458156585693,
307
+ 0.42296791076660156,
308
+ 0.46115416288375854,
309
+ 0.4865924119949341,
310
+ 0.528053343296051,
311
+ 0.3008902072906494,
312
+ 0.6120514273643494,
313
+ 0.2846204936504364,
314
+ 0.35523465275764465,
315
+ 0.41237252950668335,
316
+ 0.40814468264579773,
317
+ 0.37230220437049866,
318
+ 0.38299354910850525,
319
+ 0.3192966878414154,
320
+ 0.46272993087768555,
321
+ 0.23439520597457886,
322
+ 0.48845231533050537,
323
+ 0.394039124250412,
324
+ 0.36599597334861755,
325
+ 0.2784143090248108,
326
+ 0.37728986144065857,
327
+ 0.18985088169574738,
328
+ 0.29860472679138184,
329
+ 0.4588306248188019,
330
+ 0.24439039826393127,
331
+ 0.23130232095718384,
332
+ 0.5718621611595154,
333
+ 0.3795410692691803,
334
+ 0.18420732021331787,
335
+ 0.3393407464027405,
336
+ 0.42796778678894043,
337
+ 0.23074203729629517,
338
+ 0.4336056411266327,
339
+ 0.3180626928806305,
340
+ 0.24157840013504028,
341
+ 0.3755951523780823,
342
+ 0.27155160903930664,
343
+ 0.2305682748556137,
344
+ 0.33453667163848877,
345
+ 0.21538132429122925,
346
+ 0.2281208634376526,
347
+ 0.27846792340278625,
348
+ 0.4381890892982483,
349
+ 0.4345610737800598,
350
+ 0.7272498607635498,
351
+ 0.2209019958972931,
352
+ 0.29667240381240845,
353
+ 0.20760272443294525,
354
+ 0.2917178273200989,
355
+ 0.4406031668186188,
356
+ 0.33212247490882874,
357
+ 0.17396557331085205,
358
+ 0.3959582448005676,
359
+ 0.694342315196991,
360
+ 0.27471402287483215,
361
+ 0.4652363955974579,
362
+ 0.3084515631198883,
363
+ 0.31879591941833496,
364
+ 0.2519248127937317,
365
+ 0.24061885476112366,
366
+ 0.17219537496566772,
367
+ 0.27186140418052673,
368
+ 0.20623816549777985,
369
+ 0.37710896134376526,
370
+ 0.26677149534225464,
371
+ 0.12178510427474976,
372
+ 0.32664647698402405,
373
+ 0.24175786972045898,
374
+ 0.3319157063961029,
375
+ 0.14007878303527832,
376
+ 0.24007773399353027,
377
+ 0.10681603848934174,
378
+ 0.23536600172519684,
379
+ 0.3432294428348541,
380
+ 0.18506351113319397,
381
+ 0.366771936416626,
382
+ 0.13822689652442932,
383
+ 0.14229068160057068,
384
+ 0.6234505772590637,
385
+ 0.3213265836238861,
386
+ 0.18118849396705627,
387
+ 0.3225861191749573,
388
+ 0.32085296511650085,
389
+ 0.30933061242103577,
390
+ 0.4573042392730713,
391
+ 0.3678210377693176,
392
+ 0.38098952174186707,
393
+ 0.4219502806663513,
394
+ 0.2891327142715454,
395
+ 0.24700285494327545,
396
+ 0.3875010013580322,
397
+ 0.2900959253311157,
398
+ 0.24668408930301666,
399
+ 0.2835215926170349,
400
+ 0.24660028517246246,
401
+ 0.4202233552932739,
402
+ 0.2510131597518921,
403
+ 0.1873643696308136,
404
+ 0.4290614724159241,
405
+ 0.28829866647720337,
406
+ 0.2333456575870514,
407
+ 0.40516307950019836,
408
+ 0.21773770451545715,
409
+ 0.44808509945869446,
410
+ 0.17359194159507751,
411
+ 0.22134873270988464,
412
+ 0.3736596703529358,
413
+ 0.18047581613063812,
414
+ 0.15316002070903778,
415
+ 0.21111366152763367,
416
+ 0.3331158757209778,
417
+ 0.14089743793010712,
418
+ 0.27852439880371094,
419
+ 0.25427427887916565,
420
+ 0.2860206663608551,
421
+ 0.3469941020011902,
422
+ 0.25633469223976135,
423
+ 0.1062716543674469,
424
+ 0.13341042399406433,
425
+ 0.21043401956558228,
426
+ 0.20520885288715363,
427
+ 0.2418256551027298,
428
+ 0.3040671944618225,
429
+ 0.5080602169036865,
430
+ 0.21449965238571167,
431
+ 0.25179627537727356,
432
+ 0.1961410939693451,
433
+ 0.3827015459537506,
434
+ 0.3813920021057129,
435
+ 0.23207569122314453,
436
+ 0.22320431470870972,
437
+ 0.1577696055173874,
438
+ 0.3568403124809265,
439
+ 0.5155639052391052,
440
+ 0.27845895290374756,
441
+ 0.5706021785736084,
442
+ 0.26427188515663147,
443
+ 0.18607482314109802,
444
+ 0.32768285274505615,
445
+ 0.1565023809671402,
446
+ 0.12475667893886566,
447
+ 0.1395561397075653,
448
+ 0.1377699375152588,
449
+ 0.4030066728591919,
450
+ 0.16616292297840118,
451
+ 0.32552605867385864,
452
+ 0.14839908480644226,
453
+ 0.1106269583106041,
454
+ 0.18468087911605835,
455
+ 0.40399301052093506,
456
+ 0.24237816035747528,
457
+ 0.08549829572439194,
458
+ 0.412863552570343,
459
+ 0.32900580763816833,
460
+ 0.3556705415248871,
461
+ 0.11733441799879074,
462
+ 0.47003409266471863,
463
+ 0.15414084494113922,
464
+ 0.2099517285823822,
465
+ 0.2793561518192291,
466
+ 0.3159884810447693,
467
+ 0.2715100646018982,
468
+ 0.16610705852508545,
469
+ 0.2730076313018799,
470
+ 0.7939810752868652,
471
+ 0.18012315034866333,
472
+ 0.2865821421146393,
473
+ 0.317854642868042,
474
+ 0.33426040410995483,
475
+ 0.18953697383403778,
476
+ 0.20218388736248016,
477
+ 0.2490893453359604,
478
+ 0.21612028777599335,
479
+ 0.15468713641166687,
480
+ 0.12807917594909668,
481
+ 0.44522011280059814,
482
+ 0.2131970226764679,
483
+ 0.19563782215118408,
484
+ 0.40494978427886963,
485
+ 0.22988884150981903,
486
+ 0.25092947483062744,
487
+ 0.18177743256092072,
488
+ 0.4159480631351471,
489
+ 0.44878315925598145,
490
+ 0.2050158679485321,
491
+ 0.47841280698776245,
492
+ 0.11916274577379227,
493
+ 0.22469034790992737,
494
+ 0.32294777035713196,
495
+ 0.28237617015838623,
496
+ 0.1301928162574768,
497
+ 0.12337911128997803,
498
+ 0.22881168127059937,
499
+ 0.20973190665245056,
500
+ 0.24179917573928833,
501
+ 0.169435515999794,
502
+ 0.17757533490657806,
503
+ 0.27423179149627686,
504
+ 0.4514244496822357,
505
+ 0.5617573857307434,
506
+ 0.19520914554595947,
507
+ 0.42015111446380615,
508
+ 0.2499714195728302,
509
+ 0.3178170621395111,
510
+ 0.25011304020881653,
511
+ 0.26270514726638794,
512
+ 0.30972495675086975,
513
+ 0.1446806937456131,
514
+ 0.3437888026237488,
515
+ 0.20033618807792664,
516
+ 0.43340378999710083,
517
+ 0.23278896510601044,
518
+ 0.37463846802711487,
519
+ 0.5157564878463745,
520
+ 0.23970507085323334,
521
+ 0.1308031976222992,
522
+ 0.6227282285690308,
523
+ 0.1545065939426422,
524
+ 0.36605656147003174,
525
+ 0.41548123955726624,
526
+ 0.21164202690124512,
527
+ 0.1734251081943512,
528
+ 0.29235905408859253,
529
+ 0.23494380712509155,
530
+ 0.23699213564395905
531
  ],
532
  "device": {
533
  "_type": "unknown",
534
  "repr": "cuda:0"
535
  },
536
  "verbose": false,
537
+ "model_name": "MoamaMolecularEncoder"
538
  },
539
  "metrics": {}
540
  }
541
  },
542
+ "last_updated": "2025-07-28T01:03:54.857974"
543
  }