File size: 471 Bytes
ed6bec6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# generator/config.py

from pathlib import Path

# Base paths (adjust if your layout differs)
BASE_DIR = Path(__file__).resolve().parent.parent

DICTIONARY_DIR = BASE_DIR / "dictionary"
INTERPRETER_DIR = BASE_DIR / "interpreter"
TRAINING_DIR = BASE_DIR / "training"

# Output file for generated samples
OUTPUT_JSONL = TRAINING_DIR / "goldenmodelsamples.generated.jsonl"

# How many samples to generate in one run (you can change this anytime)
DEFAULT_SAMPLE_COUNT = 500