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 746 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
26
27
28
29
30
31
32
  1. stages:
  2. acquire_data:
  3. cmd: python3 acquire_data.py
  4. deps:
  5. - acquire_data.py
  6. outs:
  7. - git_actions_data/raw/spam.csv
  8. preprocess_data:
  9. cmd: python3 preprocess_data.py
  10. deps:
  11. - preprocess_data.py
  12. - git_actions_data/raw/spam.csv
  13. outs:
  14. - git_actions_data/preprocessed/spam_preprocessed.csv
  15. train_model:
  16. cmd: python3 train_model.py
  17. deps:
  18. - train_model.py
  19. - git_actions_data/preprocessed/spam_preprocessed.csv
  20. outs:
  21. - git_actions_models/spam_detector_model.pkl
  22. - git_actions_vectors/vectorizer.pickle
  23. - git_actions_data/metrics/metrics.json
  24. save_to_dvc:
  25. cmd: python3 save_to_dvc.py
  26. deps:
  27. - git_actions_data
  28. - git_actions_vectors
  29. - git_actions_models
Tip!

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

Comments

Loading...