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 689 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
  1. stages:
  2. create_cv_folds:
  3. cmd: python training/create_folds.py --config_file_path config.yml
  4. deps:
  5. - config.yml
  6. - data/human_dna_train_split.csv
  7. - training/create_folds.py
  8. outs:
  9. - training_data/humans/train/input_data_split
  10. metrics:
  11. - training/metrics/create_folds_metrics.json:
  12. cache: false
  13. generate_kmers_vectors:
  14. cmd: python training/generate_kmers.py --config_file_path config.yml
  15. deps:
  16. - config.yml
  17. - training/generate_kmers.py
  18. - training_data/humans/train/input_data_split
  19. outs:
  20. - training_data/humans/train/kmer_vectors
  21. metrics:
  22. - training/metrics/generate_kmers_metrics.json:
  23. cache: false
Tip!

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

Comments

Loading...