Spaces:
Running
Running
| 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 | |
| data_dir: Path | |
| status_file: Path | |
| schema_file: Path | |
| class DataTransformationConfig: | |
| root_dir: Path | |
| data_path: Path | |
| train_path: Path | |
| test_path: Path | |
| test_size: float | |
| random_state: int | |
| class FeatureEngineeringConfig: | |
| root_dir: Path | |
| train_path: Path | |
| test_path: Path | |
| output_train_path: Path | |
| output_test_path: Path | |
| class ModelTrainerConfig: | |
| root_dir: Path | |
| train_data_path: Path | |
| test_data_path: Path | |
| model_path: Path | |
| target_column: str | |
| automl_library: str | |
| class ModelEvaluationConfig: | |
| root_dir: Path | |
| model_path: Path | |
| test_data_path: Path | |
| metrics_file: Path | |
| target_column: str | |
| automl_library: str | |
| class ModelPusherConfig: | |
| root_dir: Path | |
| model_path: Path | |
| model_registry_path: Path |