Parameters for monodepth network feature adaptor.
| 122 | |
| 123 | @dataclasses.dataclass |
| 124 | class MonodepthAdaptorParams: |
| 125 | """Parameters for monodepth network feature adaptor.""" |
| 126 | |
| 127 | encoder_features: bool = True |
| 128 | decoder_features: bool = False |
| 129 | |
| 130 | |
| 131 | @dataclasses.dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected