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 936 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
32
33
34
35
36
  1. stages:
  2. featurization:
  3. cmd: python3 code/featurization.py
  4. deps:
  5. - code/featurization.py
  6. - data/test_data.csv
  7. - data/train_data.csv
  8. outs:
  9. - data/norm_params.json
  10. - data/processed_test_data.npy
  11. - data/processed_train_data.npy
  12. training:
  13. cmd: python3 code/train_model.py --force
  14. deps:
  15. - code/train_model.py
  16. - data/processed_train_data.npy
  17. outs:
  18. - images/
  19. - saved_model/discriminator.json
  20. - saved_model/discriminator_weights.hdf5
  21. - saved_model/generator.json
  22. - saved_model/generator_weights.hdf5
  23. metrics:
  24. - metrics/train_metric.json:
  25. cache: false
  26. eval:
  27. cmd: python3 code/eval.py
  28. deps:
  29. - data/processed_test_data.npy
  30. - saved_model/discriminator.json
  31. - saved_model/discriminator_weights.hdf5
  32. - saved_model/generator.json
  33. - saved_model/generator_weights.hdf5
  34. metrics:
  35. - metrics/eval.json:
  36. cache: false
Tip!

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

Comments

Loading...