8 lines
230 B
Python
8 lines
230 B
Python
"""
|
|
Fixed constants for autoresearch. Do not modify.
|
|
"""
|
|
|
|
MAX_SEQ_LEN = 2048 # context length
|
|
TIME_BUDGET = 300 # training time budget in seconds (5 minutes)
|
|
EVAL_TOKENS = 40 * 524288 # number of tokens for val eval
|