Spaces:
Sleeping
Sleeping
File size: 483 Bytes
85bba48 4de2404 cb7cafb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
from dataclasses import dataclass
from pathlib import Path
@dataclass(frozen=True)
class DataIngestionConfig:
root_dir : Path
source_URL : str
local_data_file : Path
unzip_dir : Path
@dataclass(frozen=True)
class DataValidationConfig:
root_dir : Path
STATUS_FILE : str
ALL_REQUIRED_FILES : list
@dataclass(frozen=True)
class DataTransformationConfig:
root_dir : Path
data_path : Path
tokenizer_name : Path
|