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 439 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
  1. stages:
  2. data_preprocessing:
  3. cmd: python src/data_preprocessing.py
  4. deps:
  5. - data/enron.csv
  6. - src/const.py
  7. - src/data_preprocessing.py
  8. outs:
  9. - data/X_test.csv
  10. - data/X_train.csv
  11. - data/y_test.csv
  12. - data/y_train.csv
  13. modeling:
  14. cmd: python src/modeling.py
  15. deps:
  16. - data/X_test.csv
  17. - data/X_train.csv
  18. - data/y_test.csv
  19. - data/y_train.csv
  20. - src/const.py
  21. - src/modeling.py
Tip!

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

Comments

Loading...