Image-Text-to-Text
Transformers
Safetensors
English
qwen3_5_text
text-generation
choonsik
VLA
Minecraft
vision-language-action
qwen3.5
conversational
Instructions to use Infinity08/Choonsik-Qwen3.5-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Infinity08/Choonsik-Qwen3.5-9B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Infinity08/Choonsik-Qwen3.5-9B") 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 AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Infinity08/Choonsik-Qwen3.5-9B") model = AutoModelForCausalLM.from_pretrained("Infinity08/Choonsik-Qwen3.5-9B") 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 = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Infinity08/Choonsik-Qwen3.5-9B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Infinity08/Choonsik-Qwen3.5-9B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Infinity08/Choonsik-Qwen3.5-9B", "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/Infinity08/Choonsik-Qwen3.5-9B
- SGLang
How to use Infinity08/Choonsik-Qwen3.5-9B 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 "Infinity08/Choonsik-Qwen3.5-9B" \ --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": "Infinity08/Choonsik-Qwen3.5-9B", "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 "Infinity08/Choonsik-Qwen3.5-9B" \ --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": "Infinity08/Choonsik-Qwen3.5-9B", "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 Infinity08/Choonsik-Qwen3.5-9B with Docker Model Runner:
docker model run hf.co/Infinity08/Choonsik-Qwen3.5-9B
File size: 988 Bytes
db8a08f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | model:
name_or_path: Qwen/Qwen3.5-9B
device_map: auto
trust_remote_code: true
attn_implementation: eager
min_pixels: 50176
max_pixels: 200704
enable_thinking: false
training:
bf16: true
fp16: false
gradient_checkpointing: true
optim: adamw_bnb_8bit
max_seq_length: 4096
logging_steps: 10
save_steps: 5000
save_total_limit: 1
warmup_ratio: 0.03
lr_scheduler: cosine
report_to: wandb
num_workers: 12
resume_from_checkpoint: null
output_dir: ./output/choonsik-stage3
num_epochs: 1
max_steps: 118125
batch_size: 32
gradient_accumulation_steps: 1
learning_rate: 5.0e-05
eval_steps: 5000
data:
name: CraftJarvis/minecraft-vla-sft
streaming: false
max_train_samples: null
max_eval_samples: 1000
eval_split: null
peft:
enabled: true
r: 64
alpha: 128
dropout: 0.05
target_modules: all-linear
hub:
enabled: true
repo_id: Infinity08/Choonsik-Qwen3.5-9B
private: false
strategy: every_save
merge_lora: true
stage: 3
|