đ Model Card for UIGEN-T1.5
UIGEN-T1.5 is an advanced UI generation model. It's fine - tuned from Qwen2.5 - Coder - 7B - Instruct, designed to create stunning and unique frontend user interfaces.
Landing page showcasing visual richness
đ Quick Start
You can start using UIGEN - T1.5 by following the inference example below.
⨠Features
- Advanced UI Styles: Capable of producing sleek, modern, and unique UI designs.
- Chain - of - Thought Reasoning: Enhanced reasoning for accurate HTML/CSS layouts.
- High Usability: Generates responsive and production - ready frontend code.
đ Documentation
Model Overview
UIGEN - T1.5 is an advanced transformer - based UI generation model fine - tuned from Qwen2.5 - Coder - 7B - Instruct. It's specifically enhanced to generate stunning, modern, and unique frontend user interfaces. Using sophisticated reasoning and chain - of - thought methodologies, it can generate highly structured and visually appealing HTML and CSS code, suitable for dashboards, landing pages, and sign - up forms.
Visual Examples
See examples below showcasing UIGEN - T1.5 - generated interfaces:
Dashboard UI generated by UIGEN - T1.5
Use Cases
Recommended Uses
- Dashboards: Create insightful and visually appealing data interfaces.
- Landing Pages: Build captivating and high - conversion web pages.
- Authentication Screens: Design elegant sign - up and login interfaces.
Limitations
- Limited Interactivity: It has minimal JavaScript functionality, mainly focusing on HTML/CSS.
- Prompt Engineering: May need specific prompts (e.g., appending "answer").
Performance and Evaluation
- Strengths:
- High - quality UI generation.
- Strong reasoning for structured layouts.
- Weaknesses:
- Occasional repetitive design patterns.
- Minor artifacting in complex designs.
Technical Specifications
Property |
Details |
Model Type |
Transformer - based LLM |
Base Model |
Qwen2.5 - Coder - 7B - Instruct |
Precision |
bf16 mixed precision, quantized to q8 |
Hardware Requirements |
Recommended 12GB VRAM |
Software Dependencies |
Hugging Face Transformers, PyTorch |
Citation
@misc{Tesslate_UIGEN-T1.5,
title={UIGEN-T1.5: Advanced Chain-of-Thought UI Generation Model},
author={smirki},
year={2025},
publisher={Hugging Face},
url={https://huggingface.co/Tesslate/UIGEN-T1.5}
}
Contact & Community
- Creator: smirki
- Repository & Demo: Coming soon!
Sponsored by vichar ai Huggingface Website
đģ Usage Examples
Basic Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "smirki/UIGEN-T1.5"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name).to("cuda")
prompt = """<|im_start|>user
Design a sleek, modern dashboard for monitoring solar panel efficiency.<|im_end|>
<|im_start|>assistant
<|im_start|>think
"""
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=12012, do_sample=True, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
đ License
This model is licensed under the apache - 2.0 license.