smirki commited on
Commit
49ff387
·
verified ·
1 Parent(s): 842db00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -7
README.md CHANGED
@@ -1,3 +1,4 @@
 
1
  ---
2
  license: apache-2.0
3
  datasets:
@@ -15,15 +16,15 @@ tags:
15
 
16
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/VSplF7AM1PJPzeR9FlDhE.png)
17
 
18
- # **Model Card for UIGEN-T1**
19
 
20
  ## **Model Summary**
21
- UIGEN-T1 is a **7-billion parameter transformer model** fine-tuned on **Qwen2.5-Coder-7B-Instruct**. It is designed for **reasoning-based UI generation**, leveraging a complex chain-of-thought approach to produce **robust HTML and CSS-based UI components**. Currently, it is limited to **basic applications such as dashboards, landing pages, and sign-up forms**.
22
 
23
  ## **Model Details**
24
 
25
  ### **Model Description**
26
- UIGEN-T1 generates **HTML and CSS-based UI layouts** by reasoning through design principles. While it has a strong **chain-of-thought reasoning process**, it is currently **limited to text-based UI elements and simpler frontend applications**. The model **excels at dashboards, landing pages, and sign-up forms**, but **lacks advanced interactivity** (e.g., JavaScript-heavy functionalities).
27
 
28
  - **Developed by:** [smirki](https://huggingface.co/smirki)
29
  - **Shared by:** [smirki](https://huggingface.co/smirki)
@@ -84,7 +85,7 @@ UIGEN-T1 generates **HTML and CSS-based UI layouts** by reasoning through design
84
  ```python
85
  from transformers import AutoModelForCausalLM, AutoTokenizer
86
 
87
- model_name = "smirki/UIGEN-T1"
88
  tokenizer = AutoTokenizer.from_pretrained(model_name)
89
  model = AutoModelForCausalLM.from_pretrained(model_name).to("cuda")
90
 
@@ -142,12 +143,12 @@ If using this model, please cite:
142
 
143
  **BibTeX:**
144
  ```bibtex
145
- @misc{smirki_UIGEN-T1,
146
- title={UIGEN-T1: Chain-of-Thought UI Generation Model},
147
  author={smirki},
148
  year={2025},
149
  publisher={Hugging Face},
150
- url={https://huggingface.co/smirki/UIGEN-T1}
151
  }
152
  ```
153
 
 
1
+
2
  ---
3
  license: apache-2.0
4
  datasets:
 
16
 
17
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64d1129297ca59bcf7458d07/VSplF7AM1PJPzeR9FlDhE.png)
18
 
19
+ # **Model Card for UIGEN-T1.1**
20
 
21
  ## **Model Summary**
22
+ UIGEN-T1.1 is a **14-billion parameter transformer model** fine-tuned on **Qwen2.5-Coder-14B-Instruct**. It is designed for **reasoning-based UI generation**, leveraging a complex chain-of-thought approach to produce **robust HTML and CSS-based UI components**. Currently, it is limited to **basic applications such as dashboards, landing pages, and sign-up forms**.
23
 
24
  ## **Model Details**
25
 
26
  ### **Model Description**
27
+ UIGEN-T1.1 generates **HTML and CSS-based UI layouts** by reasoning through design principles. While it has a strong **chain-of-thought reasoning process**, it is currently **limited to text-based UI elements and simpler frontend applications**. The model **excels at dashboards, landing pages, and sign-up forms**, but **lacks advanced interactivity** (e.g., JavaScript-heavy functionalities).
28
 
29
  - **Developed by:** [smirki](https://huggingface.co/smirki)
30
  - **Shared by:** [smirki](https://huggingface.co/smirki)
 
85
  ```python
86
  from transformers import AutoModelForCausalLM, AutoTokenizer
87
 
88
+ model_name = "smirki/UIGEN-T1.1-14B"
89
  tokenizer = AutoTokenizer.from_pretrained(model_name)
90
  model = AutoModelForCausalLM.from_pretrained(model_name).to("cuda")
91
 
 
143
 
144
  **BibTeX:**
145
  ```bibtex
146
+ @misc{smirki_UIGEN-T1.1,
147
+ title={UIGEN-T1.1.1: Chain-of-Thought UI Generation Model},
148
  author={smirki},
149
  year={2025},
150
  publisher={Hugging Face},
151
+ url={https://huggingface.co/smirki/UIGEN-T1.11}
152
  }
153
  ```
154