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
3

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 Desktop
  • 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
  • 3 contributors
History: 7 commits
vagheshpatel's picture
vagheshpatel
Upload 11 files
11bc53c verified 3 days ago
  • .gitattributes
    1.57 kB
    Upload folder using huggingface_hub about 2 months ago
  • README.md
    12.1 kB
    Update README.md (#3) 3 days ago
  • adapter_config.json
    1.66 kB
    Upload 11 files 3 days ago
  • adapter_model.safetensors
    92.5 MB
    xet
    Upload 11 files 3 days ago
  • chat_template.jinja
    7.99 kB
    Upload 11 files 3 days ago
  • optimizer.pt
    185 MB
    xet
    Upload 11 files 3 days ago
  • processor_config.json
    1.3 kB
    Upload folder using huggingface_hub about 2 months ago
  • rng_state.pth
    14.4 kB
    xet
    Upload folder using huggingface_hub about 2 months ago
  • scheduler.pt

    Pickle imports

    • No problematic imports detected

    What is a pickle import?

    1.47 kB
    xet
    Upload 11 files 3 days ago
  • tokenizer.json
    20 MB
    xet
    Upload 11 files 3 days ago
  • tokenizer_config.json
    7.19 kB
    Upload 11 files 3 days ago
  • trainer_state.json
    13.4 kB
    Upload 11 files 3 days ago
  • training_args.bin
    5.78 kB
    xet
    Upload 11 files 3 days ago