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 395 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_data:
  3. cmd: python src/data_preparation.py
  4. deps:
  5. - data/raw
  6. - src/config.py
  7. outs:
  8. - data/processed
  9. augment_data:
  10. cmd: python src/data_augmentation.py
  11. deps:
  12. - data/processed
  13. - src/config.py
  14. outs:
  15. - data/augmented
  16. train_model:
  17. cmd: python src/train.py
  18. deps:
  19. - data/augmented
  20. - data/processed
  21. - src/config.py
Tip!

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

Comments

Loading...