Image-Text-to-Text
Transformers
Safetensors
qwen2_vl
conversational
text-generation-inference
How to use from
SGLang
# Gated model: Login with a HF token with gated access permission
hf auth login
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "CraftJarvis/minecraft-textvla-qwen2vl-7b-2509" \
    --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": "CraftJarvis/minecraft-textvla-qwen2vl-7b-2509",
		"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 "CraftJarvis/minecraft-textvla-qwen2vl-7b-2509" \
        --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": "CraftJarvis/minecraft-textvla-qwen2vl-7b-2509",
		"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"
						}
					}
				]
			}
		]
	}'
Quick Links

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Minecraft-Textvla-Qwen2vl-7b-2509

💻 Usage

You can download and use this model with:

python examples/rollout_openha.py \
    --output_mode text_action  \
    --vlm_client_mode hf \
    --system_message_tag text_action \
    --model_ips localhost --model_ports 11000 \
    --model_path CraftJarvis/minecraft-textvla-qwen2vl-7b-2509 \
    --model_id minecraft-textvla-qwen2vl-7b-2509 \
    --record_path "~/evaluate" \
    --max_steps_num 200 \
    --num_rollouts 8
Downloads last month
-
Safetensors
Model size
8B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for CraftJarvis/minecraft-textvla-qwen2vl-7b-2509

Base model

Qwen/Qwen2-VL-7B
Finetuned
(602)
this model

Dataset used to train CraftJarvis/minecraft-textvla-qwen2vl-7b-2509

Collection including CraftJarvis/minecraft-textvla-qwen2vl-7b-2509

Paper for CraftJarvis/minecraft-textvla-qwen2vl-7b-2509