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 1.2 KB

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  1. stages:
  2. topic_model:
  3. cmd: python topic_model.py
  4. deps:
  5. - topic_model.py
  6. - data/tweets.csv
  7. outs:
  8. - outputs/project_BERTopic
  9. multiclass_state:
  10. cmd: python multiclass_state.py
  11. deps:
  12. - multiclass_state.py
  13. - data/tweets.csv
  14. - data/elected_officials.csv
  15. outs:
  16. - outputs/mc_state_pipe.pkl
  17. params:
  18. - preprocessing.max_min_docs
  19. - preprocessing.n_grams
  20. metrics:
  21. - metrics/mc_state_metrics.json:
  22. cache: false
  23. multiclass_office:
  24. cmd: python multiclass_office.py
  25. deps:
  26. - multiclass_office.py
  27. - data/tweets.csv
  28. - data/elected_officials.csv
  29. outs:
  30. - outputs/mc_office_pipe.pkl
  31. params:
  32. - preprocessing.max_min_docs
  33. - preprocessing.n_grams
  34. metrics:
  35. - metrics/mc_office_metrics.json:
  36. cache: false
  37. twoclass_party:
  38. cmd: python twoclass_party.py
  39. deps:
  40. - twoclass_party.py
  41. - data/tweets.csv
  42. - data/elected_officials.csv
  43. outs:
  44. - outputs/bc_party_pipe.pkl
  45. params:
  46. - preprocessing.max_min_docs
  47. - preprocessing.n_grams
  48. metrics:
  49. - metrics/bc_party_metrics.json:
  50. cache: false
Tip!

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

Comments

Loading...