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 430 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. split:
  3. cmd: python3 main.py split
  4. deps:
  5. - data/raw/CrossValidated-Questions.csv
  6. outs:
  7. - data/processed/test.csv.zip
  8. - data/processed/train.csv.zip
  9. train:
  10. cmd: python3 main.py train
  11. deps:
  12. - data/processed/test.csv.zip
  13. - data/processed/train.csv.zip
  14. - main.py
  15. outs:
  16. - outputs
  17. - params.yml:
  18. cache: false
  19. metrics:
  20. - metrics.csv:
  21. cache: false
Tip!

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

Comments

Loading...