Skip to content

Commit

Permalink
feat: support pre-downloading clips for offline (haotian-liu#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyj1991 authored Aug 27, 2023
1 parent 22477ae commit c12c256
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion llava/model/multimodal_encoder/builder.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import os
from .clip_encoder import CLIPVisionTower


def build_vision_tower(vision_tower_cfg, **kwargs):
vision_tower = getattr(vision_tower_cfg, 'mm_vision_tower', getattr(vision_tower_cfg, 'vision_tower', None))
if vision_tower.startswith("openai") or vision_tower.startswith("laion"):
is_absolute_path_exists = os.path.exists(vision_tower)
if is_absolute_path_exists or vision_tower.startswith("openai") or vision_tower.startswith("laion"):
return CLIPVisionTower(vision_tower, args=vision_tower_cfg, **kwargs)

raise ValueError(f'Unknown vision tower: {vision_tower}')

0 comments on commit c12c256

Please sign in to comment.