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

dvc.yaml 945 B

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
  1. stages:
  2. train_preprocess:
  3. cmd: python ./final_project/train_preprocess.py
  4. deps:
  5. - ./final_project/train_preprocess.py
  6. - ./readonly/final_project_data/sales_train.csv.gz
  7. - ./readonly/final_project_data/test.csv.gz
  8. - ./readonly/final_project_data/items.csv
  9. outs:
  10. - ./readonly/features/training_data.csv
  11. test_preprocess:
  12. cmd: python ./final_project/test_preprocess.py
  13. deps:
  14. - ./final_project/test_preprocess.py
  15. - ./readonly/features/training_data.csv
  16. - ./readonly/final_project_data/test.csv.gz
  17. - ./readonly/final_project_data/items.csv
  18. outs:
  19. - ./readonly/features/testing_data.csv
  20. train:
  21. cmd: python ./final_project/train.py
  22. deps:
  23. - ./final_project/model_training.py
  24. - ./readonly/final_project_data/training_data.csv
  25. - ./readonly/final_project_data/testing_data.csv
  26. outs:
  27. - ./readonly/models/result.csv
  28. - ./readonly/models/lightgbm_model_1.sav
Tip!

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

Comments

Loading...