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

#807 Feature/sg 747 add full pipeline with preprocessing

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-747-add_full_pipeline_with_preprocessing
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
  1. defaults:
  2. - unet_default_arch_params
  3. - _self_
  4. backbone_params:
  5. strides_list: [1, 2, 2, 2, 2] # list of stride per stage.
  6. width_list: [64, 128, 256, 512, 512] # list of num channels per stage.
  7. num_blocks_list: [2, 2, 2, 2, 2] # list of num blocks per stage.
  8. block_types_list: [ConvStage, ConvStage, ConvStage, ConvStage, ConvStage] # list of block types per stage. See unet_encoder.DownBlockType for options.
  9. is_out_feature_list: [ True, True, True, True, True ] # list of flags whether stage features should be an output.
  10. block_params:
  11. downsample_mode: max_pool
  12. context_module:
  13. decoder_params:
  14. # skip expansion ratio value, before fusing the skip features from the encoder with the decoder features, a projection
  15. # convolution is applied upon the encoder features to project the num_channels by skip_expansion.
  16. skip_expansion: 1.
  17. decoder_scale: .5 # num_channels width ratio between encoder stages and decoder stages.
  18. up_block_types: [UpCatBlock, UpCatBlock, UpCatBlock, UpCatBlock] # See unet_decoder.UpBlockType for options.
  19. up_block_repeat_list: [ 2, 2, 2, 1] # num of blocks per decoder stage, the `block` implementation depends on the up-block type.
  20. mode: bilinear
  21. align_corners: False
  22. up_factor: 2
  23. final_upsample_factor: 1 # Final upsample scale factor after the segmentation head.
  24. _convert_: all
Discard
Tip!

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