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 477 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
  1. stages:
  2. split:
  3. cmd: python3 src/main.py split
  4. deps:
  5. - data/CrossValidated-Questions.csv
  6. - src/main.py
  7. params:
  8. - seed
  9. outs:
  10. - data/test.csv.zip
  11. - data/train.csv.zip
  12. train:
  13. cmd: python3 src/main.py train
  14. deps:
  15. - data/test.csv.zip
  16. - data/train.csv.zip
  17. - src/main.py
  18. params:
  19. - max_features
  20. outs:
  21. - outputs/model.joblib
  22. - outputs/tfidf.joblib
  23. metrics:
  24. - metrics/eval.json:
  25. cache: false
Tip!

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

Comments

Loading...