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.1 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
  1. stages:
  2. scan-authors:
  3. cmd: python ../run.py --rust scan-marc -L -o viaf.parquet ../data/viaf-clusters-marc21.xml.gz
  4. deps:
  5. - ../src/cli/scan_marc.rs
  6. - ../src/marc
  7. - ../data/viaf-clusters-marc21.xml.gz
  8. outs:
  9. - viaf.parquet
  10. author-names:
  11. cmd: python ../run.py --rust fusion author-names.tcl
  12. deps:
  13. - author-names.tcl
  14. - viaf.parquet
  15. outs:
  16. - author-names.csv.gz
  17. author-genders:
  18. cmd: python ../run.py --rust fusion author-genders.tcl
  19. deps:
  20. - author-genders.tcl
  21. - viaf.parquet
  22. outs:
  23. - author-genders.parquet
  24. index-names:
  25. cmd: python ../run.py --rust index-names author-names.csv.gz author-name-index.parquet
  26. deps:
  27. - ../src/cli/index_names.rs
  28. - author-names.csv.gz
  29. outs:
  30. - author-name-index.parquet
  31. - author-name-index.csv.gz
  32. schema:
  33. foreach:
  34. - viaf
  35. - author-name-index
  36. - author-genders
  37. - author-name-index
  38. do:
  39. cmd: python ../run.py --rust pq-info -o ${item}.json ${item}.parquet
  40. deps:
  41. - ${item}.parquet
  42. outs:
  43. - ${item}.json:
  44. cache: false
Tip!

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

Comments

Loading...