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 443 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
  1. stages:
  2. load_data:
  3. cmd: python src/load_data.py --config=params.yaml
  4. deps:
  5. - src/get_data.py
  6. - src/load_data.py
  7. - data_given/Cat
  8. - data_given/Dog
  9. outs:
  10. - data/raw/pets.csv
  11. split_data:
  12. cmd: python src/split_data.py --config=params.yaml
  13. deps:
  14. - src/split_data.py
  15. - data/raw/pets.csv
  16. outs:
  17. - data/processed/train_pets.csv
  18. - data/processed/test_pets.csv
Tip!

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

Comments

Loading...