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 419 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
  4. deps:
  5. - src/load_data.py
  6. - src/sql_queries.py
  7. outs:
  8. - dataframes/lego_set_prices.csv
  9. - dataframes/raw_theme.csv
  10. train_model:
  11. cmd: python src/baseline_model.py
  12. deps:
  13. - dataframes/lego_set_prices.csv
  14. - dataframes/raw_theme.csv
  15. - src/baseline_model.py
  16. outs:
  17. - models/baseline_model_lasso.pkl:
  18. cache: false
Tip!

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

Comments

Loading...