RozanskiT commited on
Commit
9b724fe
·
verified ·
1 Parent(s): 8b93567

Upload 5 files

Browse files
README.txt CHANGED
@@ -4,49 +4,43 @@ Summary:
4
  model: mlp
5
  task: regression
6
  fit_method: gradient
7
- x_names: ('teff', 'logg', 'feh')
8
- y_names: ('flux',)
9
 
10
  Domain:
11
- input_domain: {'kind': 'box_v1', 'space': 'runtime_tree_v1', 'storage': {'format': 'safetensors_v1', 'filename': 'input_domain.safetensors', 'layout': 'tree_minmax_v1'}}
12
 
13
  Provenance:
14
  toolkit_version: 0.1.0
15
- saved_at_utc: 2026-03-13T02:55:33.972802+00:00
16
  python_version: 3.12.11
17
- git_sha: 72e167d2c8d68abc1e2c6c4b2503e06f3a375537
18
 
19
  spec:
20
  spec_version: 2
21
  x:
22
  names:
23
- - teff
24
- - logg
25
- - feh
26
  meaning:
27
- - effective temperature
28
- - surface gravity
29
- - metallicity [Fe/H]
30
  units:
31
- - K
32
- - dex
33
- - dex
34
  y:
35
  names:
36
- - flux
 
37
  meaning:
38
- - continuum-normalized flux vector on the shared wavelength grid
 
39
  units:
40
- - dimensionless
41
- wavelength_angstrom:
42
- array(shape=(500,), dtype=float64)
43
- input_domain:
44
- kind: box_v1
45
- space: runtime_tree_v1
46
- storage:
47
- format: safetensors_v1
48
- filename: input_domain.safetensors
49
- layout: tree_minmax_v1
50
  reference_scaling:
51
  kind: affine_v1
52
  parametrization: minmax
@@ -55,6 +49,5 @@ reference_scaling:
55
  format: safetensors_v1
56
  filename: reference_scaling.safetensors
57
  layout: tree_minmax_v1
58
- notes: Inputs are min-max scaled before training using the fixed bounds stored in this bundle. Output reference scaling is identity.
59
 
60
  Note: this bundle is the canonical emulator artifact. Physical-space composition is external.
 
4
  model: mlp
5
  task: regression
6
  fit_method: gradient
7
+ x_names: ('x0', 'x1', 'x2')
8
+ y_names: ('y0', 'y1')
9
 
10
  Domain:
11
+ input_domain: not provided
12
 
13
  Provenance:
14
  toolkit_version: 0.1.0
15
+ saved_at_utc: 2026-04-10T02:09:02.834895+00:00
16
  python_version: 3.12.11
17
+ git_sha: 853a30387805735584ec72dd7274e0fdb48591ba
18
 
19
  spec:
20
  spec_version: 2
21
  x:
22
  names:
23
+ - x0
24
+ - x1
25
+ - x2
26
  meaning:
27
+ -
28
+ -
29
+ -
30
  units:
31
+ -
32
+ -
33
+ -
34
  y:
35
  names:
36
+ - y0
37
+ - y1
38
  meaning:
39
+ -
40
+ -
41
  units:
42
+ -
43
+ -
 
 
 
 
 
 
 
 
44
  reference_scaling:
45
  kind: affine_v1
46
  parametrization: minmax
 
49
  format: safetensors_v1
50
  filename: reference_scaling.safetensors
51
  layout: tree_minmax_v1
 
52
 
53
  Note: this bundle is the canonical emulator artifact. Physical-space composition is external.
config.json CHANGED
@@ -8,15 +8,9 @@
8
  },
9
  "io": {
10
  "x_dim": 3,
11
- "x_names": [
12
- "teff",
13
- "logg",
14
- "feh"
15
- ],
16
- "y_dim": 500,
17
- "y_names": [
18
- "flux"
19
- ]
20
  },
21
  "model": {
22
  "name": "mlp",
@@ -24,8 +18,8 @@
24
  "activation": "gelu",
25
  "dtype": "float32",
26
  "hidden_sizes": [
27
- 128,
28
- 128
29
  ]
30
  }
31
  },
@@ -34,13 +28,13 @@
34
  "b2": 0.999,
35
  "decay_steps": 0,
36
  "eps": 1e-08,
37
- "lr": 0.001,
38
- "name": "soap",
39
  "precondition_1d": false,
40
  "precondition_frequency": 10,
41
- "schedule": "cosine",
42
- "warmup_steps": 300,
43
- "weight_decay": 1e-05
44
  },
45
  "schema_version": 1,
46
  "seed": 0,
@@ -51,20 +45,24 @@
51
  "task": {
52
  "name": "regression",
53
  "params": {
54
- "loss": "mse"
 
 
 
 
55
  }
56
  },
57
  "training": {
58
- "batch_size": 128,
59
- "checkpoint_interval_steps": 500,
60
- "evaluation_interval_steps": 500,
61
- "logging_interval_steps": 50,
62
- "max_saved_checkpoints": 5,
63
- "num_steps": 3000,
64
  "shuffle": true,
65
  "shuffle_seed": 0,
66
  "steps_per_epoch": null,
67
  "val_fraction": 0.1,
68
- "workdir": "/Users/tr/repos/astro-emulators-toolkit/examples/runs/development_payne_flux_mlp_soap"
69
  }
70
  }
 
8
  },
9
  "io": {
10
  "x_dim": 3,
11
+ "x_names": null,
12
+ "y_dim": 2,
13
+ "y_names": null
 
 
 
 
 
 
14
  },
15
  "model": {
16
  "name": "mlp",
 
18
  "activation": "gelu",
19
  "dtype": "float32",
20
  "hidden_sizes": [
21
+ 32,
22
+ 32
23
  ]
24
  }
25
  },
 
28
  "b2": 0.999,
29
  "decay_steps": 0,
30
  "eps": 1e-08,
31
+ "lr": 0.0003,
32
+ "name": "adamw",
33
  "precondition_1d": false,
34
  "precondition_frequency": 10,
35
+ "schedule": "constant",
36
+ "warmup_steps": 0,
37
+ "weight_decay": 0.0001
38
  },
39
  "schema_version": 1,
40
  "seed": 0,
 
45
  "task": {
46
  "name": "regression",
47
  "params": {
48
+ "loss": "mse",
49
+ "metrics": [
50
+ "mse",
51
+ "mae"
52
+ ]
53
  }
54
  },
55
  "training": {
56
+ "batch_size": 256,
57
+ "checkpoint_interval_steps": 200,
58
+ "evaluation_interval_steps": 200,
59
+ "logging_interval_steps": 25,
60
+ "max_saved_checkpoints": 3,
61
+ "num_steps": 2000,
62
  "shuffle": true,
63
  "shuffle_seed": 0,
64
  "steps_per_epoch": null,
65
  "val_fraction": 0.1,
66
+ "workdir": "/Users/tr/repos/astro-emulators-toolkit/examples/development/runs/rff_mlp"
67
  }
68
  }
metadata.json CHANGED
@@ -2,15 +2,16 @@
2
  "fit_method": "gradient",
3
  "io_init": {
4
  "in_dim": 3,
5
- "out_dim": 500,
6
  "representation": "model init dimensions (not runtime output shape semantics)",
7
  "x_names": [
8
- "teff",
9
- "logg",
10
- "feh"
11
  ],
12
  "y_names": [
13
- "flux"
 
14
  ]
15
  },
16
  "io_pattern": "array->array",
@@ -22,10 +23,10 @@
22
  "numpy": "2.3.5",
23
  "optax": "0.2.5"
24
  },
25
- "git_sha": "72e167d2c8d68abc1e2c6c4b2503e06f3a375537",
26
  "platform": "macOS-26.3.1-x86_64-i386-64bit",
27
  "python_version": "3.12.11",
28
- "saved_at_utc": "2026-03-13T02:55:33.972802+00:00",
29
  "toolkit": "astro_emulators_toolkit",
30
  "toolkit_version": "0.1.0"
31
  },
@@ -36,8 +37,8 @@
36
  "activation": "gelu",
37
  "dtype": "float32",
38
  "hidden_sizes": [
39
- 128,
40
- 128
41
  ],
42
  "use_bias": true
43
  }
@@ -61,33 +62,25 @@
61
  },
62
  "runtime_contract": {
63
  "affine_leaf_shapes": {
64
- "inputs/feh": [],
65
- "inputs/logg": [],
66
- "inputs/teff": [],
67
- "outputs/flux": [
68
- 500
69
- ]
70
  },
71
  "input_name_tree": [
72
- "teff",
73
- "logg",
74
- "feh"
75
  ],
76
  "io_pattern": "array->array",
77
- "output_name_tree": "flux"
 
 
 
78
  },
79
  "schema_version": 1,
80
  "spec": {
81
- "input_domain": {
82
- "kind": "box_v1",
83
- "space": "runtime_tree_v1",
84
- "storage": {
85
- "filename": "input_domain.safetensors",
86
- "format": "safetensors_v1",
87
- "layout": "tree_minmax_v1"
88
- }
89
- },
90
- "notes": "Inputs are min-max scaled before training using the fixed bounds stored in this bundle. Output reference scaling is identity.",
91
  "reference_scaling": {
92
  "kind": "affine_v1",
93
  "parametrization": "minmax",
@@ -101,532 +94,33 @@
101
  "spec_version": 2,
102
  "x": {
103
  "meaning": [
104
- "effective temperature",
105
- "surface gravity",
106
- "metallicity [Fe/H]"
107
  ],
108
  "names": [
109
- "teff",
110
- "logg",
111
- "feh"
112
  ],
113
  "units": [
114
- "K",
115
- "dex",
116
- "dex"
117
  ]
118
  },
119
  "y": {
120
  "meaning": [
121
- "continuum-normalized flux vector on the shared wavelength grid"
 
122
  ],
123
  "names": [
124
- "flux"
 
125
  ],
126
  "units": [
127
- "dimensionless"
128
- ],
129
- "wavelength_angstrom": [
130
- 4999.999999999999,
131
- 5000.020020106839,
132
- 5000.040040293839,
133
- 5000.060060561006,
134
- 5000.080080908329,
135
- 5000.1001013358145,
136
- 5000.120121843462,
137
- 5000.140142431276,
138
- 5000.160163099249,
139
- 5000.180183847385,
140
- 5000.200204675684,
141
- 5000.220225584153,
142
- 5000.24024657278,
143
- 5000.260267641572,
144
- 5000.280288790529,
145
- 5000.30031001965,
146
- 5000.320331328942,
147
- 5000.3403527183955,
148
- 5000.360374188014,
149
- 5000.3803957377995,
150
- 5000.400417367757,
151
- 5000.420439077876,
152
- 5000.4404608681625,
153
- 5000.4604827386165,
154
- 5000.480504689244,
155
- 5000.500526720035,
156
- 5000.520548830994,
157
- 5000.540571022122,
158
- 5000.560593293424,
159
- 5000.580615644892,
160
- 5000.600638076528,
161
- 5000.620660588335,
162
- 5000.640683180313,
163
- 5000.660705852467,
164
- 5000.680728604786,
165
- 5000.700751437278,
166
- 5000.720774349941,
167
- 5000.740797342782,
168
- 5000.76082041579,
169
- 5000.780843568969,
170
- 5000.800866802323,
171
- 5000.820890115856,
172
- 5000.840913509557,
173
- 5000.860936983432,
174
- 5000.880960537482,
175
- 5000.900984171706,
176
- 5000.92100788611,
177
- 5000.941031680685,
178
- 5000.961055555435,
179
- 5000.981079510361,
180
- 5001.001103545469,
181
- 5001.021127660749,
182
- 5001.041151856205,
183
- 5001.061176131839,
184
- 5001.081200487655,
185
- 5001.101224923645,
186
- 5001.121249439812,
187
- 5001.141274036158,
188
- 5001.161298712684,
189
- 5001.181323469393,
190
- 5001.2013483062765,
191
- 5001.22137322334,
192
- 5001.241398220584,
193
- 5001.261423298014,
194
- 5001.281448455619,
195
- 5001.301473693406,
196
- 5001.321499011374,
197
- 5001.341524409529,
198
- 5001.36154988786,
199
- 5001.381575446374,
200
- 5001.401601085072,
201
- 5001.421626803956,
202
- 5001.44165260302,
203
- 5001.461678482267,
204
- 5001.481704441699,
205
- 5001.501730481315,
206
- 5001.52175660112,
207
- 5001.541782801105,
208
- 5001.561809081276,
209
- 5001.581835441632,
210
- 5001.60186188218,
211
- 5001.621888402909,
212
- 5001.641915003824,
213
- 5001.661941684926,
214
- 5001.681968446221,
215
- 5001.701995287697,
216
- 5001.722022209363,
217
- 5001.742049211216,
218
- 5001.762076293257,
219
- 5001.782103455493,
220
- 5001.802130697913,
221
- 5001.822158020522,
222
- 5001.842185423321,
223
- 5001.862212906315,
224
- 5001.882240469495,
225
- 5001.902268112865,
226
- 5001.922295836427,
227
- 5001.942323640185,
228
- 5001.96235152413,
229
- 5001.982379488267,
230
- 5002.002407532596,
231
- 5002.022435657118,
232
- 5002.042463861839,
233
- 5002.062492146747,
234
- 5002.082520511849,
235
- 5002.102548957145,
236
- 5002.122577482641,
237
- 5002.142606088325,
238
- 5002.162634774205,
239
- 5002.18266354028,
240
- 5002.202692386557,
241
- 5002.222721313024,
242
- 5002.242750319687,
243
- 5002.2627794065465,
244
- 5002.282808573607,
245
- 5002.302837820862,
246
- 5002.322867148313,
247
- 5002.3428965559615,
248
- 5002.362926043809,
249
- 5002.38295561186,
250
- 5002.402985260104,
251
- 5002.423014988549,
252
- 5002.443044797192,
253
- 5002.463074686039,
254
- 5002.483104655083,
255
- 5002.503134704327,
256
- 5002.52316483377,
257
- 5002.543195043421,
258
- 5002.563225333268,
259
- 5002.583255703316,
260
- 5002.603286153567,
261
- 5002.623316684019,
262
- 5002.64334729468,
263
- 5002.663377985538,
264
- 5002.6834087566,
265
- 5002.703439607866,
266
- 5002.72347053934,
267
- 5002.743501551014,
268
- 5002.763532642893,
269
- 5002.783563814975,
270
- 5002.803595067269,
271
- 5002.823626399763,
272
- 5002.843657812463,
273
- 5002.863689305369,
274
- 5002.883720878482,
275
- 5002.903752531806,
276
- 5002.923784265333,
277
- 5002.943816079067,
278
- 5002.963847973008,
279
- 5002.983879947164,
280
- 5003.003912001523,
281
- 5003.02394413609,
282
- 5003.043976350866,
283
- 5003.064008645857,
284
- 5003.084041021052,
285
- 5003.104073476458,
286
- 5003.124106012074,
287
- 5003.1441386279,
288
- 5003.164171323943,
289
- 5003.184204100193,
290
- 5003.204236956653,
291
- 5003.224269893326,
292
- 5003.244302910216,
293
- 5003.264336007313,
294
- 5003.284369184624,
295
- 5003.304402442148,
296
- 5003.32443577989,
297
- 5003.344469197842,
298
- 5003.364502696008,
299
- 5003.384536274388,
300
- 5003.404569932987,
301
- 5003.424603671798,
302
- 5003.444637490824,
303
- 5003.464671390065,
304
- 5003.484705369523,
305
- 5003.504739429202,
306
- 5003.524773569093,
307
- 5003.5448077892015,
308
- 5003.564842089527,
309
- 5003.584876470075,
310
- 5003.604910930837,
311
- 5003.624945471816,
312
- 5003.644980093015,
313
- 5003.665014794437,
314
- 5003.685049576075,
315
- 5003.705084437931,
316
- 5003.725119380008,
317
- 5003.745154402305,
318
- 5003.7651895048275,
319
- 5003.785224687566,
320
- 5003.805259950526,
321
- 5003.825295293708,
322
- 5003.845330717117,
323
- 5003.8653662207425,
324
- 5003.88540180459,
325
- 5003.905437468662,
326
- 5003.925473212962,
327
- 5003.9455090374795,
328
- 5003.965544942222,
329
- 5003.985580927188,
330
- 5004.005616992378,
331
- 5004.025653137799,
332
- 5004.04568936344,
333
- 5004.065725669306,
334
- 5004.085762055398,
335
- 5004.10579852172,
336
- 5004.125835068266,
337
- 5004.1458716950365,
338
- 5004.165908402035,
339
- 5004.185945189265,
340
- 5004.205982056719,
341
- 5004.2260190044,
342
- 5004.24605603231,
343
- 5004.266093140453,
344
- 5004.286130328821,
345
- 5004.306167597418,
346
- 5004.326204946245,
347
- 5004.346242375301,
348
- 5004.366279884593,
349
- 5004.38631747411,
350
- 5004.4063551438585,
351
- 5004.426392893838,
352
- 5004.446430724054,
353
- 5004.466468634498,
354
- 5004.486506625173,
355
- 5004.506544696081,
356
- 5004.526582847227,
357
- 5004.546621078601,
358
- 5004.566659390208,
359
- 5004.586697782049,
360
- 5004.606736254124,
361
- 5004.626774806439,
362
- 5004.646813438984,
363
- 5004.666852151764,
364
- 5004.6868909447785,
365
- 5004.706929818035,
366
- 5004.726968771522,
367
- 5004.747007805246,
368
- 5004.767046919205,
369
- 5004.787086113408,
370
- 5004.8071253878425,
371
- 5004.8271647425145,
372
- 5004.847204177425,
373
- 5004.867243692573,
374
- 5004.887283287965,
375
- 5004.9073229635915,
376
- 5004.927362719457,
377
- 5004.947402555562,
378
- 5004.967442471912,
379
- 5004.987482468498,
380
- 5005.007522545323,
381
- 5005.02756270239,
382
- 5005.047602939703,
383
- 5005.067643257253,
384
- 5005.087683655043,
385
- 5005.107724133077,
386
- 5005.127764691359,
387
- 5005.147805329877,
388
- 5005.167846048639,
389
- 5005.187886847644,
390
- 5005.207927726894,
391
- 5005.227968686392,
392
- 5005.24800972613,
393
- 5005.268050846113,
394
- 5005.28809204634,
395
- 5005.308133326818,
396
- 5005.328174687536,
397
- 5005.348216128502,
398
- 5005.368257649712,
399
- 5005.388299251175,
400
- 5005.4083409328805,
401
- 5005.428382694832,
402
- 5005.448424537032,
403
- 5005.46846645948,
404
- 5005.488508462181,
405
- 5005.508550545125,
406
- 5005.528592708319,
407
- 5005.548634951761,
408
- 5005.568677275459,
409
- 5005.588719679401,
410
- 5005.608762163594,
411
- 5005.628804728037,
412
- 5005.648847372736,
413
- 5005.668890097681,
414
- 5005.688932902877,
415
- 5005.708975788326,
416
- 5005.729018754027,
417
- 5005.749061799984,
418
- 5005.76910492619,
419
- 5005.789148132649,
420
- 5005.809191419361,
421
- 5005.829234786333,
422
- 5005.8492782335525,
423
- 5005.869321761027,
424
- 5005.8893653687555,
425
- 5005.909409056745,
426
- 5005.929452824985,
427
- 5005.94949667348,
428
- 5005.969540602231,
429
- 5005.989584611244,
430
- 5006.009628700508,
431
- 5006.02967287003,
432
- 5006.049717119808,
433
- 5006.069761449844,
434
- 5006.089805860142,
435
- 5006.109850350695,
436
- 5006.129894921506,
437
- 5006.149939572576,
438
- 5006.16998430391,
439
- 5006.190029115498,
440
- 5006.2100740073465,
441
- 5006.230118979454,
442
- 5006.250164031829,
443
- 5006.270209164459,
444
- 5006.29025437735,
445
- 5006.310299670502,
446
- 5006.330345043916,
447
- 5006.350390497597,
448
- 5006.370436031536,
449
- 5006.390481645737,
450
- 5006.410527340202,
451
- 5006.430573114935,
452
- 5006.450618969927,
453
- 5006.470664905182,
454
- 5006.490710920702,
455
- 5006.510757016492,
456
- 5006.5308031925415,
457
- 5006.550849448857,
458
- 5006.570895785437,
459
- 5006.590942202283,
460
- 5006.610988699402,
461
- 5006.631035276781,
462
- 5006.651081934428,
463
- 5006.671128672341,
464
- 5006.691175490528,
465
- 5006.711222388976,
466
- 5006.731269367694,
467
- 5006.751316426679,
468
- 5006.771363565939,
469
- 5006.791410785463,
470
- 5006.811458085256,
471
- 5006.831505465319,
472
- 5006.851552925658,
473
- 5006.871600466262,
474
- 5006.891648087136,
475
- 5006.911695788282,
476
- 5006.9317435696985,
477
- 5006.951791431393,
478
- 5006.971839373354,
479
- 5006.991887395587,
480
- 5007.0119354980925,
481
- 5007.031983680877,
482
- 5007.052031943929,
483
- 5007.072080287256,
484
- 5007.092128710856,
485
- 5007.112177214734,
486
- 5007.132225798884,
487
- 5007.152274463308,
488
- 5007.172323208007,
489
- 5007.192372032981,
490
- 5007.212420938237,
491
- 5007.232469923764,
492
- 5007.252518989568,
493
- 5007.272568135649,
494
- 5007.292617362012,
495
- 5007.312666668647,
496
- 5007.332716055559,
497
- 5007.352765522751,
498
- 5007.372815070225,
499
- 5007.392864697974,
500
- 5007.412914406002,
501
- 5007.432964194309,
502
- 5007.453014062896,
503
- 5007.473064011768,
504
- 5007.493114040915,
505
- 5007.513164150343,
506
- 5007.533214340053,
507
- 5007.553264610048,
508
- 5007.573314960321,
509
- 5007.593365390875,
510
- 5007.613415901712,
511
- 5007.633466492836,
512
- 5007.653517164239,
513
- 5007.673567915925,
514
- 5007.693618747894,
515
- 5007.713669660147,
516
- 5007.73372065269,
517
- 5007.753771725512,
518
- 5007.773822878619,
519
- 5007.7938741120115,
520
- 5007.813925425694,
521
- 5007.833976819658,
522
- 5007.854028293908,
523
- 5007.874079848445,
524
- 5007.894131483273,
525
- 5007.914183198383,
526
- 5007.9342349937815,
527
- 5007.954286869468,
528
- 5007.9743388254465,
529
- 5007.99439086171,
530
- 5008.01444297826,
531
- 5008.034495175101,
532
- 5008.0545474522305,
533
- 5008.074599809655,
534
- 5008.094652247365,
535
- 5008.114704765365,
536
- 5008.134757363656,
537
- 5008.154810042242,
538
- 5008.1748628011155,
539
- 5008.194915640281,
540
- 5008.214968559737,
541
- 5008.2350215594915,
542
- 5008.255074639533,
543
- 5008.275127799868,
544
- 5008.295181040496,
545
- 5008.315234361417,
546
- 5008.335287762638,
547
- 5008.355341244148,
548
- 5008.375394805952,
549
- 5008.395448448051,
550
- 5008.415502170451,
551
- 5008.43555597314,
552
- 5008.455609856126,
553
- 5008.4756638194085,
554
- 5008.495717862992,
555
- 5008.515771986868,
556
- 5008.53582619104,
557
- 5008.555880475509,
558
- 5008.575934840277,
559
- 5008.595989285348,
560
- 5008.616043810713,
561
- 5008.636098416376,
562
- 5008.656153102337,
563
- 5008.676207868604,
564
- 5008.696262715165,
565
- 5008.716317642026,
566
- 5008.736372649188,
567
- 5008.756427736655,
568
- 5008.776482904418,
569
- 5008.796538152483,
570
- 5008.8165934808485,
571
- 5008.836648889522,
572
- 5008.856704378492,
573
- 5008.876759947765,
574
- 5008.896815597342,
575
- 5008.91687132722,
576
- 5008.936927137409,
577
- 5008.956983027895,
578
- 5008.977038998686,
579
- 5008.997095049782,
580
- 5009.017151181187,
581
- 5009.037207392892,
582
- 5009.057263684903,
583
- 5009.07732005722,
584
- 5009.097376509848,
585
- 5009.1174330427775,
586
- 5009.137489656014,
587
- 5009.1575463495565,
588
- 5009.177603123408,
589
- 5009.197659977571,
590
- 5009.217716912038,
591
- 5009.237773926812,
592
- 5009.257831021896,
593
- 5009.277888197294,
594
- 5009.297945452996,
595
- 5009.318002789008,
596
- 5009.338060205329,
597
- 5009.358117701966,
598
- 5009.378175278909,
599
- 5009.3982329361625,
600
- 5009.418290673728,
601
- 5009.438348491604,
602
- 5009.458406389797,
603
- 5009.478464368299,
604
- 5009.498522427111,
605
- 5009.518580566238,
606
- 5009.538638785682,
607
- 5009.558697085436,
608
- 5009.578755465503,
609
- 5009.598813925883,
610
- 5009.6188724665835,
611
- 5009.638931087594,
612
- 5009.65898978892,
613
- 5009.679048570561,
614
- 5009.699107432522,
615
- 5009.719166374795,
616
- 5009.739225397385,
617
- 5009.759284500291,
618
- 5009.779343683514,
619
- 5009.799402947059,
620
- 5009.819462290918,
621
- 5009.839521715094,
622
- 5009.859581219588,
623
- 5009.879640804407,
624
- 5009.899700469539,
625
- 5009.919760214991,
626
- 5009.939820040762,
627
- 5009.959879946859,
628
- 5009.97993993327,
629
- 5010.000000000002
630
  ]
631
  }
632
  },
 
2
  "fit_method": "gradient",
3
  "io_init": {
4
  "in_dim": 3,
5
+ "out_dim": 2,
6
  "representation": "model init dimensions (not runtime output shape semantics)",
7
  "x_names": [
8
+ "x0",
9
+ "x1",
10
+ "x2"
11
  ],
12
  "y_names": [
13
+ "y0",
14
+ "y1"
15
  ]
16
  },
17
  "io_pattern": "array->array",
 
23
  "numpy": "2.3.5",
24
  "optax": "0.2.5"
25
  },
26
+ "git_sha": "853a30387805735584ec72dd7274e0fdb48591ba",
27
  "platform": "macOS-26.3.1-x86_64-i386-64bit",
28
  "python_version": "3.12.11",
29
+ "saved_at_utc": "2026-04-10T02:09:02.834895+00:00",
30
  "toolkit": "astro_emulators_toolkit",
31
  "toolkit_version": "0.1.0"
32
  },
 
37
  "activation": "gelu",
38
  "dtype": "float32",
39
  "hidden_sizes": [
40
+ 32,
41
+ 32
42
  ],
43
  "use_bias": true
44
  }
 
62
  },
63
  "runtime_contract": {
64
  "affine_leaf_shapes": {
65
+ "inputs/x0": [],
66
+ "inputs/x1": [],
67
+ "inputs/x2": [],
68
+ "outputs/y0": [],
69
+ "outputs/y1": []
 
70
  },
71
  "input_name_tree": [
72
+ "x0",
73
+ "x1",
74
+ "x2"
75
  ],
76
  "io_pattern": "array->array",
77
+ "output_name_tree": [
78
+ "y0",
79
+ "y1"
80
+ ]
81
  },
82
  "schema_version": 1,
83
  "spec": {
 
 
 
 
 
 
 
 
 
 
84
  "reference_scaling": {
85
  "kind": "affine_v1",
86
  "parametrization": "minmax",
 
94
  "spec_version": 2,
95
  "x": {
96
  "meaning": [
97
+ "",
98
+ "",
99
+ ""
100
  ],
101
  "names": [
102
+ "x0",
103
+ "x1",
104
+ "x2"
105
  ],
106
  "units": [
107
+ "",
108
+ "",
109
+ ""
110
  ]
111
  },
112
  "y": {
113
  "meaning": [
114
+ "",
115
+ ""
116
  ],
117
  "names": [
118
+ "y0",
119
+ "y1"
120
  ],
121
  "units": [
122
+ "",
123
+ ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  ]
125
  }
126
  },
reference_scaling.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:de51925750473cf7805f39b519ce020d6b458bd6c78ca4e5255fc18aa7915bcd
3
- size 4584
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04c3f2312b4bf1dfbea6560ae331873fae0491ada144cde310752a58e42422af
3
+ size 712
weights/weights.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3c636d9ec1df0f91de94e6092594b90d621afe8cb4a1002fef50ba2f8f32a695
3
- size 326720
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a28c145e02f6ed846b9d000f9750fbf9a346cc0062a1516aea740c0bd532c3a1
3
+ size 5600