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 637 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
  1. stages:
  2. ClusterStats:
  3. cmd: jupytext --to ipynb --execute ClusterStats.py
  4. deps:
  5. - ClusterStats.py
  6. - book-links/cluster-stats.parquet
  7. outs:
  8. - ClusterStats.ipynb:
  9. cache: false
  10. LinkageStats:
  11. cmd: jupytext --to ipynb --execute LinkageStats.py
  12. deps:
  13. - LinkageStats.py
  14. - book-links/gender-stats.csv
  15. outs:
  16. - LinkageStats.ipynb:
  17. cache: false
  18. metrics:
  19. - book-coverage.json
  20. html-report:
  21. foreach:
  22. - LinkageStats
  23. - ClusterStats
  24. do:
  25. cmd: jupyter nbconvert --to html "${item}.ipynb"
  26. deps:
  27. - ${item}.ipynb
  28. outs:
  29. - ${item}.html
Tip!

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

Comments

Loading...