MCPcopy Create free account
hub / github.com/PrathamLearnsToCode/paper2code / ModelConfig

Class ModelConfig

skills/paper2code/scaffolds/model_template.py:37–47  ·  view source on GitHub ↗

All model hyperparameters. Values from {{PAPER_TITLE}} unless marked [UNSPECIFIED]. Matches configs/base.yaml — change values there, not here.

Source from the content-addressed store, hash-verified

35
36@dataclass
37class 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# ---------------------------------------------------------------------------

Callers 1

trainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected