Instructions to use neovateai/UI-UG-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use neovateai/UI-UG-7B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="neovateai/UI-UG-7B") 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, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("neovateai/UI-UG-7B") model = AutoModelForImageTextToText.from_pretrained("neovateai/UI-UG-7B") 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
- vLLM
How to use neovateai/UI-UG-7B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "neovateai/UI-UG-7B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "neovateai/UI-UG-7B", "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/neovateai/UI-UG-7B
- SGLang
How to use neovateai/UI-UG-7B 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 "neovateai/UI-UG-7B" \ --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": "neovateai/UI-UG-7B", "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 "neovateai/UI-UG-7B" \ --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": "neovateai/UI-UG-7B", "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" } } ] } ] }' - Docker Model Runner
How to use neovateai/UI-UG-7B with Docker Model Runner:
docker model run hf.co/neovateai/UI-UG-7B
🎯 UI-UG: A Unified MLLM for UI Understanding and Generation
📖 Paper | 🤗 Model | 🚀 Quick Start | 📊 Evaluation | 📄 License
🌟 Overview
UI-UG (A Unified MLLM for UI Understanding and Generation) is a multimodal large model that simultaneously supports both UI understanding and UI generation. It supports various tasks including referring, grounding, captioning and generation.
Figure 1: Overview of UI-UG. The workflow includes 1) Data preparation (UI image collection + element detection + DSL generation); 2) Two-stage training: SFT with VQA dataset, then RL optimization using GRPO and DPO for each task. The model supports UI understanding tasks (referring and grounding) and enables both offline and real-time UI generation.
🚀 Core Features
🔍 1. UI Description Generation (Referring)
- Element Description: Automatically generate element descriptions based on coordinate regions
- Semantic Understanding: Understand the function, style, and interaction meaning of UI elements
- Multi-dimensional Analysis: Include text, color, clickability, and other attributes
📍 2. UI Element Detection (Grounding)
- Object Detection: Automatically identify and locate various UI elements in interfaces
- Classification: Support for 20+ categories including text, button, icon, image, etc.
- Coordinate Annotation: Precisely generate bounding box coordinates for elements
🎨 3. UI Code Generation (Generation)
- DSL Generation: Generate structured DSL code from requirement descriptions
- Mock Data: Automatically generate accompanying mock data
- Multi-language Support: Support for generating UI code from Chinese and English descriptions
🛠️ Quick Start
from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
from qwen_vl_utils import smart_resize, process_vision_info
import torch
from PIL import Image
import re
# Configuration
IMAGE_FACTOR = 28
MIN_PIXELS = 64 * 28 * 28
MAX_PIXELS = 1280 * 28 * 28
MAX_TOKENS = 8192
# Load model
model_path = "neovateai/UI-UG-7B"
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
model_path, torch_dtype=torch.float16, device_map="auto"
)
processor = AutoProcessor.from_pretrained(
model_path,
min_pixels=MIN_PIXELS,
max_pixels=MAX_PIXELS
)
def llm_inference(messages):
"""Unified inference function"""
text = processor.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(messages)
inputs = processor(
text=[text],
images=image_inputs,
videos=video_inputs,
padding=True,
return_tensors="pt",
)
inputs = inputs.to(model.device)
generated_ids = model.generate(
**inputs,
max_new_tokens=MAX_TOKENS,
do_sample=False
)
generated_ids_trimmed = [
out_ids[len(in_ids):]
for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = processor.batch_decode(
generated_ids_trimmed,
skip_special_tokens=True,
clean_up_tokenization_spaces=False
)
return output_text[0]
# Load image
image_path = "figures/alipay_demo.png"
original_image = Image.open(image_path)
original_width, original_height = original_image.size
# Calculate resize dimensions
resized_height, resized_width = smart_resize(
original_height, original_width, IMAGE_FACTOR, MIN_PIXELS, MAX_PIXELS
)
📊 Task Examples
1️⃣ Referring Task: Describe element by coordinates
# Scale coordinates from original to resized dimensions
def scale_coordinates(original_coords, original_size, resized_size):
orig_x1, orig_y1, orig_x2, orig_y2 = original_coords
orig_w, orig_h = original_size
new_w, new_h = resized_size
scaled_x1 = int(orig_x1 * new_w / orig_w)
scaled_y1 = int(orig_y1 * new_h / orig_h)
scaled_x2 = int(orig_x2 * new_w / orig_w)
scaled_y2 = int(orig_y2 * new_h / orig_h)
return f"({scaled_x1}, {scaled_y1}),({scaled_x2}, {scaled_y2})"
# Example usage
original_coords_str = "(600, 623),(907, 634)"
# Parse original coordinates
coord_match = re.findall(r'\((\d+),\s*(\d+)\)', original_coords_str)
original_coords = [int(coord_match[0][0]), int(coord_match[0][1]), int(coord_match[1][0]), int(coord_match[1][1])]
scaled_coords_str = scale_coordinates(original_coords, (original_width, original_height), (resized_width, resized_height))
referring_messages = [
{
"role": "user",
"content": [
{"type": "image", "image": image_path},
{"type": "text", "text": f"Describe the region {scaled_coords_str}"}
]
}
]
referring_result = llm_inference(referring_messages)
print("Referring Result:", referring_result)
2️⃣ Grounding Task: Detect element by description
grounding_messages = [
{
"role": "user",
"content": [
{"type": "image", "image": image_path},
{"type": "text", "text": "List all the ui items."}
]
}
]
grounding_result = llm_inference(grounding_messages)
# Extract coordinates from grounding result and rescale them
coord_pattern = r'\((\d+),\s*(\d+)\),\((\d+),\s*(\d+)\)'
matches = re.findall(coord_pattern, grounding_result)
for match in matches:
scaled_coords = [int(match[0]), int(match[1]), int(match[2]), int(match[3])]
original_coords_str = scale_coordinates(scaled_coords, (resized_width, resized_height), (original_width, original_height))
grounding_result = grounding_result.replace(f"({match[0]}, {match[1]}),({match[2]}, {match[3]})", original_coords_str)
print("Grounding Result:", grounding_result)
3️⃣ Generation Task: Generate UI from description
generation_messages = [
{
"role": "user",
"content": [
# {"type": "image", "image": image_path}, # your optional referring image
{"type": "text", "text": "Generate a login form with email field, password field, and submit button"}
]
}
]
generation_result = llm_inference(generation_messages)
print("Generation Result:", generation_result)
� Performance
🎯 Task Specifications
| Task Type | Description | Evaluation Metrics |
|---|---|---|
| Referring | UI element referring generation | JSON format accuracy, Classification accuracy, text similarity, color similarity |
| Grounding | UI element detection and localization | JSON format accuracy, mAP, AP50, AP75 |
| Generation | UI code generation | JSON format accuracy, LLM-based judgement (following Web2Code) |
Table 1: Performance comparison of different models on referring and grounding tasks.
Table 2: Performance comparison of different models on generation tasks.
Figure 2: Visual comparison of different models for grounding task for complex UIs.
📄 License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
🤝 Acknowledgments
- Qwen2.5-VL - Multimodal foundation model
- VLLM - High-performance inference framework
- Ant Group & AFX Team - Technical support and scenario applications
📖 Citation
If you find this work useful, please consider citing:
@misc{yang2025uiugunifiedmllmui,
title={UI-UG: A Unified MLLM for UI Understanding and Generation},
author={Hao Yang and Weijie Qiu and Ru Zhang and Zhou Fang and Ruichao Mao and Xiaoyu Lin and Maji Huang and Zhaosong Huang and Teng Guo and Shuoyang Liu and Hai Rao},
year={2025},
eprint={2509.24361},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2509.24361},
}
Built with ❤️ by Alipay AFX
- Downloads last month
- 49