MCPcopy Create free account
hub / github.com/MiniMax-AI/VTP / dinov3_pixel_decoder_large

Function dinov3_pixel_decoder_large

vtp/models/decoders/pixel_decoder.py:200–214  ·  view source on GitHub ↗

Large DINOv3-based pixel decoder

(
    in_chans=256, out_chans=3, upscale_factor=4, **kwargs
)

Source from the content-addressed store, hash-verified

198
199
200def 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

Callers

nothing calls this directly

Calls 1

DinoV3PixelDecoderClass · 0.85

Tested by

no test coverage detected