Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pipeline.tcl 574 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
  1. stage ClusterStats {
  2. cmd "jupytext --to ipynb --execute ClusterStats.py"
  3. dep "ClusterStats.py"
  4. dep "book-links/cluster-stats.parquet"
  5. out -nocache "ClusterStats.ipynb"
  6. }
  7. stage LinkageStats {
  8. cmd "jupytext --to ipynb --execute LinkageStats.py"
  9. dep "LinkageStats.py"
  10. dep "book-links/gender-stats.csv"
  11. out -nocache "LinkageStats.ipynb"
  12. metric "book-coverage.json"
  13. }
  14. stage html-report {
  15. target LinkageStats
  16. target ClusterStats
  17. cmd "jupyter nbconvert --to html \${item}.ipynb"
  18. dep "\${item}.ipynb"
  19. out "\${item}.html"
  20. }
Tip!

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

Comments

Loading...