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 826 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
  1. stages:
  2. fetch-bike-data:
  3. cmd: python src/data/fetch_data.py
  4. fetch-weather-data:
  5. cmd: python src/data/fetch_weather_data.py
  6. preprocess-bike-data:
  7. cmd: python src/data/preprocessing_bike_data.py
  8. deps:
  9. - data/raw/mbajk
  10. - src/data/preprocessing_bike_data.py
  11. preprocess-weather-data:
  12. cmd: python src/data/preprocessing_weather_data.py
  13. deps:
  14. - data/raw/weather
  15. - src/data/preprocessing_weather_data.py
  16. preprocess-combined-data:
  17. cmd: python src/data/preprocessing_combined.py
  18. deps:
  19. - data/raw/mbajk
  20. - data/raw/weather
  21. - src/data/preprocessing_weather_data.py
  22. preprocess-complete-data:
  23. cmd: python src/data/preprocessing_data.py
  24. deps:
  25. - data/raw/data.csv
  26. - data/processed/combined
  27. - src/data/preprocessing_weather_data.py
Tip!

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

Comments

Loading...