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 493 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
  1. stages:
  2. get_data:
  3. cmd: python src/support/get_data.py
  4. deps:
  5. - src/support/get_data.py
  6. outs:
  7. - data/
  8. process-train:
  9. cmd: python src/model/training_model.py
  10. deps:
  11. - src/model/training_model.py
  12. - src/support/evaluation.py
  13. - data/
  14. - h5_files/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_224.h5
  15. outs:
  16. - h5_files/final_model.h5
  17. - src/suppot/model_evolution.png
  18. metrics:
  19. - src/support/metrics.json:
  20. cache: false
Tip!

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

Comments

Loading...