Image-Text-to-Text
Transformers
Safetensors
English
paddleocr_vl
text-generation-inference
unsloth
conversational
custom_code
Instructions to use GIGAParviz/V-ORC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GIGAParviz/V-ORC with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="GIGAParviz/V-ORC", trust_remote_code=True) 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 AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("GIGAParviz/V-ORC", trust_remote_code=True) model = AutoModelForMultimodalLM.from_pretrained("GIGAParviz/V-ORC", trust_remote_code=True) 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 = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use GIGAParviz/V-ORC with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GIGAParviz/V-ORC" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GIGAParviz/V-ORC", "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/GIGAParviz/V-ORC
- SGLang
How to use GIGAParviz/V-ORC 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 "GIGAParviz/V-ORC" \ --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": "GIGAParviz/V-ORC", "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 "GIGAParviz/V-ORC" \ --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": "GIGAParviz/V-ORC", "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 GIGAParviz/V-ORC 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 GIGAParviz/V-ORC 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 GIGAParviz/V-ORC to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for GIGAParviz/V-ORC to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="GIGAParviz/V-ORC", max_seq_length=2048, ) - Docker Model Runner
How to use GIGAParviz/V-ORC with Docker Model Runner:
docker model run hf.co/GIGAParviz/V-ORC
| { | |
| "architectures": [ | |
| "PaddleOCRVLForConditionalGeneration" | |
| ], | |
| "attention_probs_dropout_prob": 0.0, | |
| "auto_map": { | |
| "AutoConfig": "configuration_paddleocr_vl.PaddleOCRVLConfig", | |
| "AutoModel": "modeling_paddleocr_vl.PaddleOCRVLForConditionalGeneration", | |
| "AutoModelForCausalLM": "modeling_paddleocr_vl.PaddleOCRVLForConditionalGeneration" | |
| }, | |
| "bos_token_id": 1, | |
| "compression_ratio": 1.0, | |
| "torch_dtype": "float16", | |
| "eos_token_id": 2, | |
| "head_dim": 128, | |
| "hidden_act": "silu", | |
| "hidden_dropout_prob": 0.0, | |
| "hidden_size": 1024, | |
| "ignored_index": -100, | |
| "image_token_id": 100295, | |
| "intermediate_size": 3072, | |
| "max_position_embeddings": 131072, | |
| "max_sequence_length": null, | |
| "model_name": "unsloth/PaddleOCR-VL", | |
| "model_type": "paddleocr_vl", | |
| "num_attention_heads": 16, | |
| "num_hidden_layers": 18, | |
| "num_key_value_heads": 2, | |
| "pad_token_id": 0, | |
| "rms_norm_eps": 1e-05, | |
| "rope_is_neox_style": true, | |
| "rope_scaling": { | |
| "mrope_section": [ | |
| 16, | |
| 24, | |
| 24 | |
| ], | |
| "rope_type": "default", | |
| "type": "default" | |
| }, | |
| "rope_theta": 500000, | |
| "sliding_window": null, | |
| "tie_word_embeddings": false, | |
| "unsloth_version": "2026.6.8", | |
| "use_3d_rope": true, | |
| "use_bias": false, | |
| "use_cache": false, | |
| "use_flash_attention": false, | |
| "video_token_id": 101307, | |
| "vision_config": { | |
| "architectures": [ | |
| "PaddleOCRVisionModel" | |
| ], | |
| "attention_dropout": 0.0, | |
| "auto_map": { | |
| "AutoConfig": "configuration_paddleocr_vl.PaddleOCRVLConfig", | |
| "AutoModel": "modeling_paddleocr_vl.PaddleOCRVisionModel" | |
| }, | |
| "torch_dtype": "float16", | |
| "hidden_act": "gelu_pytorch_tanh", | |
| "hidden_size": 1152, | |
| "image_size": 384, | |
| "intermediate_size": 4304, | |
| "layer_norm_eps": 1e-06, | |
| "model_type": "paddleocr_vl", | |
| "num_attention_heads": 16, | |
| "num_channels": 3, | |
| "num_hidden_layers": 27, | |
| "pad_token_id": 0, | |
| "patch_size": 14, | |
| "spatial_merge_size": 2, | |
| "temporal_patch_size": 2, | |
| "tokens_per_second": 2 | |
| }, | |
| "vision_start_token_id": 101305, | |
| "vocab_size": 103424, | |
| "weight_share_add_bias": true | |
| } |