Image-to-Text
Transformers
Safetensors
Japanese
llava-jp
text-generation
vision
image-captioning
VQA
Instructions to use toshi456/llava-jp-1.3b-v1.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use toshi456/llava-jp-1.3b-v1.1 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="toshi456/llava-jp-1.3b-v1.1")# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("toshi456/llava-jp-1.3b-v1.1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
ModuleNotFoundError: No module named ‘open_clip’
#1
by Labmem009 - opened
After I run git clone https://github.com/tosiyuki/LLaVA-JP.git and cd LLaVA-JP to run the infer script, it comes out this error and p install open_clip
ERROR: Could not find a version that satisfies the requirement open_clip (from versions: none)
ERROR: No matching distribution found for open_clip
Looking for help
Labmem009 changed discussion status to closed