Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

params.yaml 1.3 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
49
50
51
52
53
54
55
56
  1. # Ref: Yaml variable: https://stackoverflow.com/questions/4150782/use-yaml-with-variables
  2. # ---- Variables ----
  3. data:
  4. main-data: &main-data
  5. path: 'data/kangaroo'
  6. size: 164
  7. train_size: 150
  8. sample-data: &sample-data
  9. path: 'data/sample'
  10. size: 10
  11. train_size: 5
  12. test-data: &test-data
  13. path: 'data/kangaroo-kaggle'
  14. size: 313
  15. train_size: NULL
  16. # ---- Misc ----
  17. src:
  18. pipeline:
  19. environment-check: 'src/pipeline/environment_check.py'
  20. train-model: 'src/pipeline/train_model.py'
  21. evaluate: 'src/pipeline/evaluate.py'
  22. # ---- Stages/Pipelines ----
  23. gen-dag:
  24. output: out/dependency_diagram.md
  25. environment-check:
  26. environment-name: kangaroo
  27. output: out/environment-check.out.json
  28. train-pipeline:
  29. data: &training-data
  30. <<: *sample-data
  31. # <<: *main-data
  32. train_dir: 'model/training'
  33. output:
  34. model: &training-weight
  35. 'out/current-model.h5'
  36. log: 'out/model-train.output.log'
  37. metric:
  38. folder: out/train.metrics/
  39. general: 'general.json'
  40. others:
  41. - epoch_mrcnn_bbox_loss
  42. - epoch_val_mrcnn_bbox_loss
  43. summary: 'out/model-train.summary.txt'
  44. evaluate:
  45. data: *training-data
  46. model-weight: *training-weight
  47. evaluate_dir: 'model/evaluate'
  48. output:
  49. metric: 'out/evaluate.json'
  50. log: 'out/evaluate.output.log'
Tip!

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

Comments

Loading...