ImageGuard / model /__init__.py
adwardlee's picture
Upload folder using huggingface_hub
11b9c8d verified
raw
history blame
155 Bytes
from .Internlm import InternLM
model_dict = {
'Internlm': InternLM,
}
def get_model(model_name, **kwargs):
return model_dict[model_name](**kwargs)