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.0 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
  1. stages:
  2. prepare_dataset:
  3. cmd: python prepare_dataset.py
  4. deps:
  5. - data/speeches.json
  6. - prepare_dataset.py
  7. outs:
  8. - data/cleaned_speeches
  9. params:
  10. - preprocessing.stopwords
  11. descriptive_analysis:
  12. cmd: python descriptive_analysis.py
  13. deps:
  14. - data/cleaned_speeches
  15. - descriptive_analysis.py
  16. outs:
  17. - data/descriptive
  18. params:
  19. - preprocessing.stopwords
  20. - preprocessing.punctuation
  21. topic_model:
  22. cmd: python topic_model.py
  23. deps:
  24. - data/cleaned_speeches
  25. - topic_model.py
  26. outs:
  27. - lda_model
  28. - speech.mm
  29. - speech.dict
  30. - data/docs
  31. - data/docs_tagged
  32. params:
  33. - preprocessing.stopwords
  34. - preprocessing.punctuation
  35. - preprocessing.df
  36. - lda.passes
  37. - lda.iterations
  38. - lda.num_topics
  39. topic_over_time:
  40. cmd: python topics_over_time.py
  41. deps:
  42. - lda_model
  43. - speech.dict
  44. - speech.mm
  45. - data/docs_tagged
  46. - data/cleaned_speeches
  47. - topics_over_time.py
  48. outs:
  49. - data/topics_over_time
Tip!

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

Comments

Loading...