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 377 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
  1. stages:
  2. preprocessing:
  3. cmd: python3 preprocess.py
  4. deps:
  5. - data/raw.csv
  6. - preprocess.py
  7. outs:
  8. - data/test.csv
  9. - data/train.csv
  10. training:
  11. cmd: python3 train.py
  12. deps:
  13. - data/train.csv
  14. - data/test.csv
  15. - train.py
  16. outs:
  17. - outputs/
  18. - params.yml:
  19. cache: false
  20. metrics:
  21. - metrics.csv:
  22. cache: false
Tip!

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

Comments

Loading...