Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kennymckormick committed Mar 20, 2024
1 parent 2b573fb commit 7f0166e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlmeval/vlm/deepseek_vl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import torch
from transformers import AutoModelForCausalLM
import warnings
from vlmeval.smp import isimg, pip_install
from vlmeval.smp import isimg, pip_install_robust


class DeepSeekVL:

INSTALL_REQ = True

def check_install(self):
installed = pip_install('deepseek_vl')
installed = pip_install_robust('deepseek_vl')
if not installed:
warnings.warn(
'Please first install deepseek_vl from source codes in: https://github.com/deepseek-ai/DeepSeek-VL')
Expand Down

0 comments on commit 7f0166e

Please sign in to comment.