You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you can try this and make sure the module minigemini be installed: cd Minigemini && pip install -e .
then check your execution script whether in this dir : Minigemini/minigemini
if not os.path.exists(vision_tower):
raise ValueError(f'Not find vision tower: {vision_tower}')
if "clip" in vision_tower.lower() or "ShareGPT4V" in vision_tower:
return CLIPVisionTower(vision_tower, args=vision_tower_cfg, **kwargs)
elif "lavis" in vision_tower.lower() or "eva" in vision_tower.lower():
return EVAVisionTower(vision_tower, image_processor, args=vision_tower_cfg, **kwargs)
else:
raise ValueError(f'Unknown vision tower: {vision_tower}')`
把判断语句改一下就行
ValueError: Not find vision tower: model_zoo/OpenAI/clip-vit-large-patch14-336
将clip下载到本地之后也报相应的错误ValueError: Not find vision tower: model_zoo/OpenAI/clip-vit-large-patch14-336
The text was updated successfully, but these errors were encountered: