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 969 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
32
33
34
35
36
37
38
  1. stages:
  2. clean-ratings:
  3. cmd: python ../run.py --rust bx extract ../data/BX-CSV-Dump.zip cleaned-ratings.csv
  4. deps:
  5. - ../src/cli/bx
  6. - ../data/BX-CSV-Dump.zip
  7. outs:
  8. - cleaned-ratings.csv
  9. cluster-ratings:
  10. cmd: python ../run.py --rust bx cluster-actions --ratings -o bx-cluster-ratings.parquet
  11. deps:
  12. - ../src/cli/bx
  13. - cleaned-ratings.csv
  14. - ../book-links/isbn-clusters.parquet
  15. outs:
  16. - bx-cluster-ratings.parquet
  17. cluster-actions:
  18. cmd: python ../run.py --rust bx cluster-actions --add-actions -o bx-cluster-actions.parquet
  19. deps:
  20. - ../src/cli/bx
  21. - cleaned-ratings.csv
  22. - ../book-links/isbn-clusters.parquet
  23. outs:
  24. - bx-cluster-actions.parquet
  25. schema:
  26. foreach:
  27. - bx-cluster-actions
  28. - bx-cluster-ratings
  29. do:
  30. cmd: python ../run.py --rust pq-info -o ${item}.json ${item}.parquet
  31. deps:
  32. - ${item}.parquet
  33. outs:
  34. - ${item}.json:
  35. cache: false
Tip!

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

Comments

Loading...