Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

Intel
/
qwen3.5-2b-vlm-weld-explainability-lora

Image-Text-to-Text
PEFT
Safetensors
Transformers
English
lora
sft
trl
unsloth
weld-defect-detection
explainability
vision-language
industrial-inspection
conversational
Model card Files Files and versions
xet
Community

Instructions to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • PEFT

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with PEFT:

    from peft import PeftModel
    from transformers import AutoModelForCausalLM
    
    base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3.5-2B")
    model = PeftModel.from_pretrained(base_model, "Intel/qwen3.5-2b-vlm-weld-explainability-lora")
  • Transformers

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("image-text-to-text", model="Intel/qwen3.5-2b-vlm-weld-explainability-lora")
    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 AutoModel
    model = AutoModel.from_pretrained("Intel/qwen3.5-2b-vlm-weld-explainability-lora", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Intel/qwen3.5-2b-vlm-weld-explainability-lora"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Intel/qwen3.5-2b-vlm-weld-explainability-lora",
    		"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/Intel/qwen3.5-2b-vlm-weld-explainability-lora
  • SGLang

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora 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 "Intel/qwen3.5-2b-vlm-weld-explainability-lora" \
        --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": "Intel/qwen3.5-2b-vlm-weld-explainability-lora",
    		"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 "Intel/qwen3.5-2b-vlm-weld-explainability-lora" \
            --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": "Intel/qwen3.5-2b-vlm-weld-explainability-lora",
    		"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"
    						}
    					}
    				]
    			}
    		]
    	}'
  • Unsloth Studio

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with Unsloth Studio:

    Install Unsloth Studio (macOS, Linux, WSL)
    curl -fsSL https://unsloth.ai/install.sh | sh
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for Intel/qwen3.5-2b-vlm-weld-explainability-lora to start chatting
    Install Unsloth Studio (Windows)
    irm https://unsloth.ai/install.ps1 | iex
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for Intel/qwen3.5-2b-vlm-weld-explainability-lora to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for Intel/qwen3.5-2b-vlm-weld-explainability-lora to start chatting
    Load model with FastModel
    pip install unsloth
    from unsloth import FastModel
    model, tokenizer = FastModel.from_pretrained(
        model_name="Intel/qwen3.5-2b-vlm-weld-explainability-lora",
        max_seq_length=2048,
    )
  • Docker Model Runner

    How to use Intel/qwen3.5-2b-vlm-weld-explainability-lora with Docker Model Runner:

    docker model run hf.co/Intel/qwen3.5-2b-vlm-weld-explainability-lora
qwen3.5-2b-vlm-weld-explainability-lora
298 MB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 4 commits
sun1lach's picture
sun1lach
vLLM serve instructions
447e64d verified 10 days ago
  • .gitattributes
    1.57 kB
    Upload folder using huggingface_hub 16 days ago
  • README.md
    14 kB
    vLLM serve instructions 10 days ago
  • adapter_config.json
    1.64 kB
    Upload folder using huggingface_hub 16 days ago
  • adapter_model.safetensors
    92.5 MB
    xet
    Upload folder using huggingface_hub 16 days ago
  • chat_template.jinja
    7.82 kB
    Upload folder using huggingface_hub 16 days ago
  • optimizer.pt
    185 MB
    xet
    Upload folder using huggingface_hub 16 days ago
  • processor_config.json
    1.3 kB
    Upload folder using huggingface_hub 16 days ago
  • rng_state.pth
    14.4 kB
    xet
    Upload folder using huggingface_hub 16 days ago
  • scheduler.pt

    Pickle imports

    • No problematic imports detected

    What is a pickle import?

    1.47 kB
    xet
    Upload folder using huggingface_hub 16 days ago
  • tokenizer.json
    20 MB
    xet
    Upload folder using huggingface_hub 16 days ago
  • tokenizer_config.json
    7.16 kB
    Upload folder using huggingface_hub 16 days ago
  • trainer_state.json
    18.7 kB
    Upload folder using huggingface_hub 16 days ago
  • training_args.bin
    5.78 kB
    xet
    Upload folder using huggingface_hub 16 days ago