Image-Text-to-Text
Transformers
Safetensors
multilingual
internvl_chat
feature-extraction
internvl
custom_code
conversational
Instructions to use OpenGVLab/InternOmni with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenGVLab/InternOmni with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="OpenGVLab/InternOmni", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("OpenGVLab/InternOmni", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use OpenGVLab/InternOmni with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OpenGVLab/InternOmni" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/InternOmni", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/OpenGVLab/InternOmni
- SGLang
How to use OpenGVLab/InternOmni with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "OpenGVLab/InternOmni" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/InternOmni", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "OpenGVLab/InternOmni" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/InternOmni", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use OpenGVLab/InternOmni with Docker Model Runner:
docker model run hf.co/OpenGVLab/InternOmni
| # coding=utf-8 | |
| # Copyright 2022 The HuggingFace Inc. team. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| """ | |
| Speech processor class for Whisper | |
| """ | |
| from transformers.processing_utils import ProcessorMixin | |
| import torch | |
| class WhisperProcessor(ProcessorMixin): | |
| r""" | |
| Constructs a Whisper processor which wraps a Whisper feature extractor and a Whisper tokenizer into a single | |
| processor. | |
| [`WhisperProcessor`] offers all the functionalities of [`WhisperFeatureExtractor`] and [`WhisperTokenizer`]. See | |
| the [`~WhisperProcessor.__call__`] and [`~WhisperProcessor.decode`] for more information. | |
| Args: | |
| feature_extractor (`WhisperFeatureExtractor`): | |
| An instance of [`WhisperFeatureExtractor`]. The feature extractor is a required input. | |
| tokenizer (`WhisperTokenizer`): | |
| An instance of [`WhisperTokenizer`]. The tokenizer is a required input. | |
| """ | |
| attributes = ["feature_extractor"] | |
| feature_extractor_class = "WhisperFeatureExtractor" | |
| # tokenizer_class = "WhisperTokenizer" | |
| def __init__(self, feature_extractor): | |
| super().__init__(feature_extractor) | |
| self.current_processor = self.feature_extractor | |
| self._in_target_context_manager = False | |
| def get_decoder_prompt_ids(self, task=None, language=None, no_timestamps=True): | |
| return self.tokenizer.get_decoder_prompt_ids(task=task, language=language, no_timestamps=no_timestamps) | |
| def get_T_after_cnn(self,L_in, dilation=1): | |
| for (padding, kernel_size, stride) in eval("[(1,3,1)] + [(1,3,2)] "): | |
| L_out = L_in + 2 * padding - dilation * (kernel_size - 1) - 1 | |
| L_out = 1 + L_out // stride | |
| L_in = L_out | |
| return L_out | |
| def __call__(self, *args, **kwargs): | |
| """ | |
| Forwards the `audio` argument to WhisperFeatureExtractor's [`~WhisperFeatureExtractor.__call__`] and the `text` | |
| argument to [`~WhisperTokenizer.__call__`]. Please refer to the doctsring of the above two methods for more | |
| information. | |
| """ | |
| # For backward compatibility | |
| if self._in_target_context_manager: | |
| return self.current_processor(*args, **kwargs) | |
| audio = kwargs.pop("audio", None) | |
| sampling_rate = kwargs.pop("sampling_rate", 16000) | |
| text = kwargs.pop("text", None) | |
| if len(args) > 0: | |
| audio = args[0] | |
| args = args[1:] | |
| if audio is None and text is None: | |
| raise ValueError("You need to specify either an `audio` or `text` input to process.") | |
| if audio is not None: | |
| L = (audio.shape[0] if audio.shape[0] <= 480000 else 480000) # max_length < 30s | |
| mel_len = L // 160 | |
| audio_len_after_cnn = self.get_T_after_cnn(mel_len) | |
| audio_token_num = (audio_len_after_cnn - 2) // 2 + 1 | |
| inputs = self.feature_extractor(audio, *args, sampling_rate=sampling_rate, **kwargs) | |
| inputs['audio_len_after_cnn'] = torch.tensor(audio_len_after_cnn, dtype=torch.long) | |
| inputs['audio_token_num'] = torch.tensor(audio_token_num, dtype=torch.long) | |
| if text is not None: | |
| encodings = self.tokenizer(text, **kwargs) | |
| if text is None: | |
| return inputs | |
| elif audio is None: | |
| return encodings | |
| else: | |
| inputs["labels"] = encodings["input_ids"] | |
| return inputs | |
| def batch_decode(self, *args, **kwargs): | |
| """ | |
| This method forwards all its arguments to WhisperTokenizer's [`~PreTrainedTokenizer.batch_decode`]. Please | |
| refer to the docstring of this method for more information. | |
| """ | |
| return self.tokenizer.batch_decode(*args, **kwargs) | |
| def decode(self, *args, **kwargs): | |
| """ | |
| This method forwards all its arguments to WhisperTokenizer's [`~PreTrainedTokenizer.decode`]. Please refer to | |
| the docstring of this method for more information. | |
| """ | |
| return self.tokenizer.decode(*args, **kwargs) | |
| def get_prompt_ids(self, text: str, return_tensors="np"): | |
| return self.tokenizer.get_prompt_ids(text, return_tensors=return_tensors) |