Commit c46ec47
authored
fix(mlperf-edu): anomaly-ae-train model-size gate impossible to pass (#1937)
max_model_size_kb: 32 could never be satisfied by the reference model it
gates: AnomalyDetectionAE (640/784 -> 128x4 -> 8 -> 128x4 -> 640) has
~266K parameters -- matching this same file's own `params: 0.3M` -- which
is ~1.03MB at FP32 and ~260KB even fully INT8-quantized. A submitter who
trains exactly this reference model and reports the true model size would
automatically fail the size gate regardless of reconstruction quality.
Corrected the budget to 300KB, consistent with the file's own stated 0.3M
parameter count at 1 byte/param (INT8), the standard deployment target for
this suite's "microcontroller" framing.1 parent 3cb000e commit c46ec47
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
0 commit comments