All model hyperparameters. Values from {{PAPER_TITLE}} unless marked [UNSPECIFIED]. Matches configs/base.yaml — change values there, not here.
| 35 | |
| 36 | @dataclass |
| 37 | class ModelConfig: |
| 38 | """All model hyperparameters. |
| 39 | |
| 40 | Values from {{PAPER_TITLE}} unless marked [UNSPECIFIED]. |
| 41 | Matches configs/base.yaml — change values there, not here. |
| 42 | """ |
| 43 | # Architecture — §{{ARCH_SECTION}} |
| 44 | # {{PARAM_1_NAME}}: {{TYPE}} = {{VALUE}} # §X.Y — "quote from paper" |
| 45 | # {{PARAM_2_NAME}}: {{TYPE}} = {{VALUE}} # [UNSPECIFIED] — our choice, alternatives: ... |
| 46 | |
| 47 | pass # REPLACE with actual config fields |
| 48 | |
| 49 | |
| 50 | # --------------------------------------------------------------------------- |