Spaces:
Sleeping
Sleeping
from dataclasses import dataclass | |
from pathlib import Path | |
class DataIngestionConfig: | |
root_dir : Path | |
source_URL : str | |
local_data_file : Path | |
unzip_dir : Path | |
class DataValidationConfig: | |
root_dir : Path | |
STATUS_FILE : str | |
ALL_REQUIRED_FILES : list | |
class DataTransformationConfig: | |
root_dir : Path | |
data_path : Path | |
tokenizer_name : Path | |