Large DINOv3-based pixel decoder
(
in_chans=256, out_chans=3, upscale_factor=4, **kwargs
)
| 198 | |
| 199 | |
| 200 | def dinov3_pixel_decoder_large( |
| 201 | in_chans=256, out_chans=3, upscale_factor=4, **kwargs |
| 202 | ): |
| 203 | """Large DINOv3-based pixel decoder""" |
| 204 | model = DinoV3PixelDecoder( |
| 205 | in_chans=in_chans, |
| 206 | out_chans=out_chans, |
| 207 | upscale_factor=upscale_factor, |
| 208 | embed_dim=1024, |
| 209 | depth=24, |
| 210 | num_heads=16, |
| 211 | ffn_ratio=4, |
| 212 | **kwargs, |
| 213 | ) |
| 214 | return model |
nothing calls this directly
no test coverage detected