Instructions to use mlx-community/SmolVLM2-500M-Video-Instruct-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mlx-community/SmolVLM2-500M-Video-Instruct-mlx with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("mlx-community/SmolVLM2-500M-Video-Instruct-mlx") model = AutoModelForMultimodalLM.from_pretrained("mlx-community/SmolVLM2-500M-Video-Instruct-mlx") - MLX
How to use mlx-community/SmolVLM2-500M-Video-Instruct-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir SmolVLM2-500M-Video-Instruct-mlx mlx-community/SmolVLM2-500M-Video-Instruct-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
| { | |
| "additional_special_tokens": [ | |
| "<fake_token_around_image>", | |
| "<image>", | |
| "<end_of_utterance>" | |
| ], | |
| "bos_token": { | |
| "content": "<|im_start|>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "end_of_utterance_token": "<end_of_utterance>", | |
| "eos_token": { | |
| "content": "<end_of_utterance>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "fake_image_token": "<fake_token_around_image>", | |
| "global_image_token": "<global-img>", | |
| "image_token": "<image>", | |
| "pad_token": { | |
| "content": "<|im_end|>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "unk_token": { | |
| "content": "<|endoftext|>", | |
| "lstrip": false, | |
| "normalized": false, | |
| "rstrip": false, | |
| "single_word": false | |
| } | |
| } | |