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 794 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. scan-ratings:
  3. cmd: python ../run.py --rust amazon scan-ratings -o ratings.parquet --swap-id-columns ../data/az2018/Books.csv
  4. deps:
  5. - ../src/amazon.rs
  6. - ../src/cli/amazon/
  7. - ../data/az2018/Books.csv
  8. outs:
  9. - ratings.parquet
  10. cluster-ratings:
  11. cmd: python run.py --rust amazon cluster-ratings -o az2018/az-cluster-ratings.parquet az2018/ratings.parquet
  12. wdir: ..
  13. deps:
  14. - src/cli/amazon
  15. - az2018/ratings.parquet
  16. - book-links/isbn-clusters.parquet
  17. outs:
  18. - az2018/az-cluster-ratings.parquet
  19. schema:
  20. foreach:
  21. - ratings
  22. - az-cluster-ratings
  23. do:
  24. cmd: python ../run.py --rust pq-info -o ${item}.json ${item}.parquet
  25. deps:
  26. - ${item}.parquet
  27. outs:
  28. - ${item}.json:
  29. cache: false
Tip!

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

Comments

Loading...