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 426 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. prepare:
  3. cmd: python src/prepare.py data/data.xml
  4. deps:
  5. - data/data.xml
  6. - src/prepare.py
  7. params:
  8. - prepare.seed
  9. - prepare.split
  10. outs:
  11. - data/prepared
  12. featurize:
  13. cmd: python3 src/featurization.py data/prepared data/features
  14. deps:
  15. - data/prepared
  16. - src/featurization.py
  17. params:
  18. - featurize.max_features
  19. - featurize.ngrams
  20. outs:
  21. - data/features
Tip!

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

Comments

Loading...