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

model.hyper.yaml 729 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
  1. # --- Vars ----
  2. initial-weights:
  3. 'model/transfer/mask_rcnn_coco.h5'
  4. shit-weights: &transfer-weights
  5. 'model/transfer/mask_rcnn_coco.h5'
  6. default-configs: &default-configs
  7. NAME: 'kangaroo_cfg'
  8. NUM_CLASSES: 2
  9. STEPS_PER_EPOCH: 5 # This for testing only
  10. # STEPS_PER_EPOCH: 131
  11. BACKBONE: 'resnet101'
  12. IMAGES_PER_GPU: 2
  13. GPU_COUNT: 1
  14. # ---- Configs ----
  15. train:
  16. # epochs: 1 # This is for testing only
  17. # epochs: 5
  18. epochs: 10
  19. layers: 'heads'
  20. configs: *default-configs
  21. weights:
  22. init: *transfer-weights
  23. exclude:
  24. - 'mrcnn_class_logits'
  25. - 'mrcnn_bbox_fc'
  26. - 'mrcnn_bbox'
  27. - 'mrcnn_mask'
  28. inference:
  29. configs:
  30. <<: *default-configs
  31. USE_MINI_MASK: False
  32. IMAGES_PER_GPU: 1
Tip!

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

Comments

Loading...