Instructions to use splash-team/SPLASH_3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use splash-team/SPLASH_3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="splash-team/SPLASH_3B") 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 AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("splash-team/SPLASH_3B") model = AutoModelForMultimodalLM.from_pretrained("splash-team/SPLASH_3B", device_map="auto") 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?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use splash-team/SPLASH_3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "splash-team/SPLASH_3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "splash-team/SPLASH_3B", "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/splash-team/SPLASH_3B
- SGLang
How to use splash-team/SPLASH_3B 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 "splash-team/SPLASH_3B" \ --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": "splash-team/SPLASH_3B", "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 "splash-team/SPLASH_3B" \ --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": "splash-team/SPLASH_3B", "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 splash-team/SPLASH_3B with Docker Model Runner:
docker model run hf.co/splash-team/SPLASH_3B
Add model card for SPLASH-3B
Browse filesThis PR adds a model card for SPLASH-3B to document the artifact and link it to the paper [Wake up for Touch! Mask-isolated Tactile Alignment Learning in MLLMs](https://huggingface.co/papers/2607.00302). It also configures the metadata with the appropriate `pipeline_tag` and `library_name`.
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: image-text-to-text
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# SPLASH-3B: Wake up for Touch! Mask-isolated Tactile Alignment Learning in MLLMs
|
| 7 |
+
|
| 8 |
+
**SPLASH-3B** is a tactile-aligned Multimodal Large Language Model (MLLM) based on the Qwen2.5-VL-3B-Instruct backbone. It integrates tactile perception into vision-language models using mask-isolated tactile alignment learning, allowing tactile reasoning while preserving general visual-language capabilities.
|
| 9 |
+
|
| 10 |
+
- **Paper:** [Wake up for Touch! Mask-isolated Tactile Alignment Learning in MLLMs](https://huggingface.co/papers/2607.00302)
|
| 11 |
+
- **Repository:** [ewha-mmai/splash](https://github.com/ewha-mmai/splash)
|
| 12 |
+
- **Project Page:** [SPLASH Project Page](https://ewha-mmai.github.io/splash/)
|
| 13 |
+
|
| 14 |
+
## Citation
|
| 15 |
+
|
| 16 |
+
If you find SPLASH useful, please consider citing the paper:
|
| 17 |
+
|
| 18 |
+
```bibtex
|
| 19 |
+
@inproceedings{park2026splash,
|
| 20 |
+
title={Wake up for Touch! Mask-isolated Tactile Alignment Learning in MLLMs},
|
| 21 |
+
author={Yoonhyung Park and Minji Kim and Sungwon Moon and Jiyoung Lee},
|
| 22 |
+
booktitle={European Conference on Computer Vision (ECCV)},
|
| 23 |
+
year={2026}
|
| 24 |
+
}
|
| 25 |
+
```
|