forked from haotian-liu/LLaVA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support pre-downloading clips for offline (haotian-liu#376)
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}') |