File size: 374 Bytes
b74e18c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
'''
CopyRight @DeepGlint 2025
'''
import torch
def build_vision_resampler(model_args, delay_load=False, **kwargs):
return IdentityMap()
class IdentityMap(torch.nn.Module):
def __init__(self):
super().__init__()
def forward(self, x, *args, **kwargs):
return x
@property
def config(self):
return {"mm_resampler_type": None} |