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 1.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  1. # --- Vars ----
  2. initial-weights: &transfer-weights
  3. model/transfer/mask_rcnn_coco.h5
  4. default-configs: &default-configs
  5. NAME: kangaroo_cfg
  6. NUM_CLASSES: 2
  7. STEPS_PER_EPOCH: 5 # This for testing only
  8. # STEPS_PER_EPOCH: 131 # ! dangerous
  9. BACKBONE: resnet101
  10. IMAGES_PER_GPU: 2
  11. GPU_COUNT: 1
  12. # ---- Configs ----
  13. train:
  14. epochs: 1 # This is for testing only
  15. # epochs: 10 # ! dangerous
  16. layers: heads
  17. configs: *default-configs
  18. weights:
  19. init: *transfer-weights
  20. exclude:
  21. - mrcnn_class_logits
  22. - mrcnn_bbox_fc
  23. - mrcnn_bbox
  24. - mrcnn_mask
  25. augmentation: # sequence
  26. name: Sequential
  27. use: true
  28. nested: true
  29. nested-arg: children
  30. augmenters:
  31. flip-lr:
  32. name: Fliplr
  33. use: true
  34. params:
  35. p: 0.5
  36. flip-ud:
  37. name: Flipud
  38. use: false
  39. params:
  40. p: 0.5
  41. affine:
  42. name: Affine
  43. use: false
  44. params:
  45. translate_percent:
  46. x: [-0.2, 0.2]
  47. y: [-0.2, 0.2]
  48. rotate: [-30, 30]
  49. scale: [0.5, 1.5]
  50. sometimes:
  51. name: Sometimes
  52. use: true
  53. nested: true
  54. nested-arg: then_list
  55. augmenters:
  56. gaussian-blur:
  57. name: GaussianBlur
  58. use: true
  59. params:
  60. sigma: [0.0, 3.0]
  61. params:
  62. p: 0.5
  63. params:
  64. random_order: true
  65. inference:
  66. configs:
  67. <<: *default-configs
  68. USE_MINI_MASK: false
  69. IMAGES_PER_GPU: 1
  70. NAME: kangaroo_cfg
  71. NUM_CLASSES: 2
  72. STEPS_PER_EPOCH: 5
  73. BACKBONE: resnet101
  74. GPU_COUNT: 1
Tip!

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

Comments

Loading...