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 843 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
33
34
  1. stages:
  2. download-data:
  3. cmd: python3 src/data/download_data.py
  4. deps:
  5. - src/data/download_data.py
  6. outs:
  7. - data/raw/GermanFakeNC.json
  8. - data/raw/news.csv
  9. scrape-news:
  10. cmd: python3 src/data/scrape_news.py
  11. deps:
  12. - data/raw/GermanFakeNC.json
  13. - src/data/scrape_news.py
  14. outs:
  15. - data/interim/GermanFakeNC_interim.csv
  16. make-dataset:
  17. cmd: python3 src/data/make_dataset.py
  18. deps:
  19. - data/interim/GermanFakeNC_interim.csv
  20. - data/raw/news.csv
  21. - src/data/make_dataset.py
  22. outs:
  23. - data/processed/fake_news_processed.csv
  24. train-model:
  25. cmd: python3 src/models/train_model.py
  26. deps:
  27. - data/processed/fake_news_processed.csv
  28. - src/models/train_model.py
  29. outs:
  30. - bin/models/model.pkl
  31. - metrics.csv:
  32. cache: false
  33. - params.yml:
  34. cache: false
Tip!

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

Comments

Loading...