Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

config.yaml 1.3 KB

You have to be logged in to leave a comment. Sign In
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  1. # Configuration file for the project
  2. # Root directory for storing data
  3. artifacts_root: artifacts
  4. # Configuration for data ingestion
  5. data_ingestion:
  6. # Root directory for data ingestion
  7. root_dir: artifacts/data_ingestion
  8. # URL to download the data from
  9. source_URL: https://github.com/Adeliyio/Fake_News_Detection/raw/main/winequality-data.zip
  10. # Local file path where the downloaded data will be stored
  11. local_data_file: artifacts/data_ingestion/data.zip
  12. # Directory where the downloaded data will be extracted
  13. unzip_dir: artifacts/data_ingestion
  14. # Configuration for data validation
  15. data_validation:
  16. # Root directory for data validation
  17. root_dir: artifacts/data_validation
  18. # Directory where the data will be extracted
  19. unzip_data_dir: artifacts/data_ingestion/winequality-red.csv
  20. # File path for storing status information
  21. STATUS_FILE: artifacts/data_validation/status.txt
  22. # Configuration for data Transformation
  23. data_transformation:
  24. # Root directory for data Transformation
  25. root_dir: artifacts/data_transformation
  26. # Directory where the data will be extracted
  27. data_path: artifacts/data_ingestion/winequality-red.csv
  28. model_trainer:
  29. root_dir: artifacts/model_trainer
  30. train_data_path: artifacts/data_transformation/train.csv
  31. test_data_path: artifacts/data_transformation/test.csv
  32. model_name: model.joblib
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...