Skip connections
BackboneInternalSkipConnection
Bases: SkipConnection
This is a placeholder module used by the quantization engine only. This module will be replaced by converters. The module is to be used as a skip connection between blocks inside the backbone.
Source code in modules/skip_connections.py
26 27 28 29 30 31 |
|
CrossModelSkipConnection
Bases: SkipConnection
This is a placeholder module used by the quantization engine only. This module will be replaced by converters. The module is to be used as a skip connection between backbone and the head.
Source code in modules/skip_connections.py
42 43 44 45 46 47 |
|
HeadInternalSkipConnection
Bases: SkipConnection
This is a placeholder module used by the quantization engine only. This module will be replaced by converters. The module is to be used as a skip connection between blocks inside the head.
Source code in modules/skip_connections.py
34 35 36 37 38 39 |
|
Residual
Bases: nn.Module
This is a placeholder module used by the quantization engine only. This module will be replaced by converters. The module is to be used as a residual skip connection within a single block.
Source code in modules/skip_connections.py
4 5 6 7 8 9 10 11 12 |
|
SkipConnection
Bases: nn.Module
This is a placeholder module used by the quantization engine only. This module will be replaced by converters. The module is to be used as a skip connection between blocks.
Source code in modules/skip_connections.py
15 16 17 18 19 20 21 22 23 |
|