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.3 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
51
52
53
54
55
56
57
  1. stages:
  2. author-info:
  3. cmd: python ../run.py sql-script author-info.sql
  4. deps:
  5. - cluster.status
  6. - ../index/loc-mds-book-info.status
  7. - ../index/loc-mds-index-books.status
  8. - ../index/ol-book-info.status
  9. - ../index/ol-index.status
  10. - ../index/viaf-index.status
  11. outs:
  12. - author-info.transcript
  13. author-stats:
  14. cmd: python ../run.py sql-script author-stats.sql
  15. deps:
  16. - author-stats.sql
  17. - author-info.status
  18. - ../index/az-index.status
  19. - ../index/bx-index.status
  20. - ../index/gr-index-ratings.status
  21. outs:
  22. - author-stats.transcript
  23. cluster:
  24. cmd: python ../run.py cluster -T cluster.transcript
  25. wdir: ..
  26. deps:
  27. - index/gr-index-books.status
  28. - index/loc-mds-index-books.status
  29. - index/ol-index.status
  30. outs:
  31. - data/id-graph.gt
  32. - integrate/cluster.transcript
  33. cluster-stats:
  34. cmd: python ../run.py sql-script cluster-stats.sql
  35. deps:
  36. - cluster-stats.sql
  37. - cluster.status
  38. - ../index/gr-book-info.status
  39. outs:
  40. - cluster-stats.transcript
  41. status:
  42. foreach:
  43. - author-info
  44. - author-stats
  45. - cluster
  46. - cluster-stats
  47. do:
  48. cmd: python ../run.py stage-status -o ${item}.status ${item}
  49. always_changed: true
  50. outs:
  51. - ${item}.status
  52. deps:
  53. - ${item}.transcript
Tip!

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

Comments

Loading...