|
2 | 2 | defaults: |
3 | 3 | - /model/segmentation/default |
4 | 4 |
|
5 | | -backbone: |
6 | | - _target_: torch_points3d.applications.sparseconv3d.SparseConv3d |
7 | | - backend: torchsparse |
| 5 | +model: |
| 6 | + backbone: |
| 7 | + _target_: torch_points3d.applications.sparseconv3d.SparseConv3d |
| 8 | + backend: torchsparse |
8 | 9 |
|
9 | | - config: |
10 | | - define_constants: |
11 | | - in_feat: 32 |
12 | | - block: ResBlock # Can be any of the blocks in modules/MinkowskiEngine/api_modules.py |
13 | | - down_conv: |
14 | | - module_name: ResNetDown |
15 | | - block: block |
16 | | - N: [ 0, 1, 2, 2, 3 ] |
17 | | - down_conv_nn: |
18 | | - [ |
19 | | - [ FEAT, in_feat ], |
20 | | - [ in_feat, in_feat ], |
21 | | - [ in_feat, 2*in_feat ], |
22 | | - [ 2*in_feat, 4*in_feat ], |
23 | | - [ 4*in_feat, 8*in_feat ], |
24 | | - ] |
25 | | - kernel_size: 3 |
26 | | - stride: [ 1, 2, 2, 2, 2 ] |
27 | | - up_conv: |
28 | | - block: block |
29 | | - module_name: ResNetUp |
30 | | - N: [ 1, 1, 1, 1, 0 ] |
31 | | - up_conv_nn: |
32 | | - [ |
33 | | - [ 8*in_feat, 4*in_feat ], |
34 | | - [ 4*in_feat + 4*in_feat, 4*in_feat ], |
35 | | - [ 4*in_feat + 2*in_feat, 3*in_feat ], |
36 | | - [ 3*in_feat + in_feat, 3*in_feat ], |
37 | | - [ 3*in_feat + in_feat, 3*in_feat ], |
38 | | - ] |
39 | | - kernel_size: 3 |
40 | | - stride: [ 2, 2, 2, 2, 1 ] |
| 10 | + config: |
| 11 | + define_constants: |
| 12 | + in_feat: 32 |
| 13 | + block: ResBlock # Can be any of the blocks in modules/MinkowskiEngine/api_modules.py |
| 14 | + down_conv: |
| 15 | + module_name: ResNetDown |
| 16 | + block: block |
| 17 | + N: [ 0, 1, 2, 2, 3 ] |
| 18 | + down_conv_nn: |
| 19 | + [ |
| 20 | + [ FEAT, in_feat ], |
| 21 | + [ in_feat, in_feat ], |
| 22 | + [ in_feat, 2*in_feat ], |
| 23 | + [ 2*in_feat, 4*in_feat ], |
| 24 | + [ 4*in_feat, 8*in_feat ], |
| 25 | + ] |
| 26 | + kernel_size: 3 |
| 27 | + stride: [ 1, 2, 2, 2, 2 ] |
| 28 | + up_conv: |
| 29 | + block: block |
| 30 | + module_name: ResNetUp |
| 31 | + N: [ 1, 1, 1, 1, 0 ] |
| 32 | + up_conv_nn: |
| 33 | + [ |
| 34 | + [ 8*in_feat, 4*in_feat ], |
| 35 | + [ 4*in_feat + 4*in_feat, 4*in_feat ], |
| 36 | + [ 4*in_feat + 2*in_feat, 3*in_feat ], |
| 37 | + [ 3*in_feat + in_feat, 3*in_feat ], |
| 38 | + [ 3*in_feat + in_feat, 3*in_feat ], |
| 39 | + ] |
| 40 | + kernel_size: 3 |
| 41 | + stride: [ 2, 2, 2, 2, 1 ] |
0 commit comments