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 581 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
  1. stages:
  2. preprocess:
  3. cmd: Rscript preprocess.R
  4. deps:
  5. - data/alarm.tsv
  6. - preprocess.R
  7. outs:
  8. - data/simulation_preprocessed.csv
  9. miic:
  10. cmd: Rscript miic.R
  11. deps:
  12. - data/simulation_preprocessed.csv
  13. - miic.R
  14. outs:
  15. - output_dir/all.edges.summary.csv
  16. final:
  17. cmd: Rscript final.R
  18. deps:
  19. - final.R
  20. - output_dir/all.edges.summary.csv
  21. outs:
  22. - output_dir/retained.edges.csv
  23. metricas:
  24. cmd: Rscript metricas.R
  25. deps:
  26. - metricas.R
  27. - output_dir/retained.edges.csv
  28. metrics:
  29. - output_dir/metric.txt
Tip!

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

Comments

Loading...