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 437 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. process_data:
  3. cmd: python3 code/preprocess.py
  4. deps:
  5. - code/preprocess.py
  6. outs:
  7. - data/emotion_counts.json
  8. model:
  9. cmd: python3 code/model.py
  10. deps:
  11. - code/model.py
  12. outs:
  13. - data/model.h5
  14. metrics:
  15. - logs/metrics.csv:
  16. cache: false
  17. - logs/params.yml:
  18. cache: false
  19. analyze:
  20. cmd: python3 code/eval.py
  21. deps:
  22. - code/evaluate.ipynb
  23. - data/model.h5
Tip!

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

Comments

Loading...