umyunsang's picture
Upload folder using huggingface_hub
9e65b56 verified
raw
history blame contribute delete
348 Bytes
"""๋ฐ์ดํ„ฐ ํŒŒ์ดํ”„๋ผ์ธ ์„ค์ •."""
from dataclasses import dataclass
from pathlib import Path
@dataclass
class DataConfig:
raw_dir: Path = Path("data/raw/aihub")
output_dir: Path = Path("data/processed")
min_answer_length: int = 30
max_answer_length: int = 4096
min_question_length: int = 5
train_ratio: float = 0.9