mirror of
https://github.com/MinhxLe/subliminal-learning.git
synced 2025-07-25 21:08:58 +03:00
20 lines
453 B
Python
20 lines
453 B
Python
from datasets.services import Cfg, NumsDatasetGenerationCfg
|
|
|
|
|
|
cfg = Cfg(
|
|
model_id="gpt-4.1-nano",
|
|
model_system_prompt="placeholder",
|
|
generation_cfg=NumsDatasetGenerationCfg(
|
|
seed=42,
|
|
n_samples=30_000,
|
|
example_min_count=3,
|
|
example_max_count=9,
|
|
example_min_value=100,
|
|
example_max_value=1000,
|
|
answer_count=10,
|
|
answer_max_digits=3,
|
|
),
|
|
output_dir=None,
|
|
filter_fns=[],
|
|
)
|