Choonsik is a
Vision-Language-Action (VLA) model for Minecraft, built on
Qwen/Qwen3.5-9B and trained with the
three-stage
ActVLP pipeline from
JARVIS-VLA.
Given a Minecraft observation frame and a natural-language task instruction,
Choonsik outputs keyboard + mouse action tokens that can be executed directly
in the game — covering 1,000+ atomic tasks (crafting, mining, smelting, combat,
navigation, etc.).
1from choonsik.inference import ChoonsikInferenceRunner
2from PIL import Image
3
4runner = ChoonsikInferenceRunner("Infinity08/Choonsik-Qwen3.5-9B")
5frame = Image.open("minecraft_frame.png")
6
7action = runner.predict(frame, task="craft a wooden pickaxe")
8# action = {"forward": 0, "attack": 1, ..., "camera": [0.0, 0.3]}
Training hardware: L40S (48 GB VRAM). Inference: RTX 5080 with 4-bit NF4 quantization.
1@article{li2025jarvisvla,
2 title = {JARVIS-VLA: Post-Training Large-Scale Vision Language Models
3 to Play Visual Games with Keyboards and Mouse},
4 author = {Muyao Li and Zihao Wang and Kaichen He and others},
5 journal = {arXiv preprint arXiv:2503.16365},
6 year = {2025}
7}