Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,7 @@ def qwen_inference(model_name, media_input, text_input=None):
|
|
71 |
|
72 |
if isinstance(media_input, str):
|
73 |
media_path = media_input
|
74 |
-
if media_path.endswith(tuple(image_extensions.keys())):
|
75 |
media_type = "image"
|
76 |
else:
|
77 |
try:
|
@@ -83,7 +83,10 @@ def qwen_inference(model_name, media_input, text_input=None):
|
|
83 |
{
|
84 |
"role": "user",
|
85 |
"content": [
|
86 |
-
{
|
|
|
|
|
|
|
87 |
{"type": "text", "text": text_input},
|
88 |
],
|
89 |
}
|
@@ -111,11 +114,13 @@ def qwen_inference(model_name, media_input, text_input=None):
|
|
111 |
buffer = ""
|
112 |
for new_text in streamer:
|
113 |
buffer += new_text
|
|
|
114 |
buffer = buffer.replace("<|im_end|>", "")
|
115 |
yield buffer
|
116 |
|
117 |
def format_plain_text(output_text):
|
118 |
"""Formats the output text as plain text without LaTeX delimiters."""
|
|
|
119 |
plain_text = output_text.replace("\\(", "").replace("\\)", "").replace("\\[", "").replace("\\]", "")
|
120 |
return plain_text
|
121 |
|
@@ -142,19 +147,33 @@ def generate_pdf(media_path, plain_text, font_choice, font_size, line_spacing, a
|
|
142 |
styles["Normal"].fontName = font_choice
|
143 |
styles["Normal"].fontSize = int(font_size)
|
144 |
styles["Normal"].leading = int(font_size) * line_spacing
|
145 |
-
styles["Normal"].alignment = {
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
# Register font
|
148 |
font_path = f"font/{font_choice}"
|
149 |
pdfmetrics.registerFont(TTFont(font_choice, font_path))
|
150 |
|
151 |
story = []
|
152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
img = RLImage(media_path, width=image_sizes[image_size][0], height=image_sizes[image_size][1])
|
154 |
story.append(img)
|
155 |
story.append(Spacer(1, 12))
|
|
|
|
|
156 |
text = Paragraph(plain_text, styles["Normal"])
|
157 |
story.append(text)
|
|
|
158 |
doc.build(story)
|
159 |
return filename
|
160 |
|
@@ -162,9 +181,17 @@ def generate_docx(media_path, plain_text, font_choice, font_size, line_spacing,
|
|
162 |
"""Generates a DOCX document."""
|
163 |
filename = f"output_{uuid.uuid4()}.docx"
|
164 |
doc = docx.Document()
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
doc.add_picture(media_path, width=image_sizes[image_size])
|
167 |
doc.add_paragraph()
|
|
|
|
|
168 |
paragraph = doc.add_paragraph()
|
169 |
paragraph.paragraph_format.line_spacing = line_spacing
|
170 |
paragraph.paragraph_format.alignment = {
|
@@ -176,84 +203,141 @@ def generate_docx(media_path, plain_text, font_choice, font_size, line_spacing,
|
|
176 |
run = paragraph.add_run(plain_text)
|
177 |
run.font.name = font_choice
|
178 |
run.font.size = docx.shared.Pt(int(font_size))
|
|
|
179 |
doc.save(filename)
|
180 |
return filename
|
181 |
|
182 |
-
#
|
183 |
css = """
|
184 |
-
#output {
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
"""
|
190 |
|
|
|
191 |
with gr.Blocks(css=css) as demo:
|
192 |
-
gr.Markdown("# Qwen2VL: Vision & Language Processing")
|
193 |
|
194 |
-
|
195 |
-
model_choice = gr.Dropdown(
|
196 |
-
label="Model Selection",
|
197 |
-
choices=list(MODEL_OPTIONS.keys()),
|
198 |
-
value="Latex OCR"
|
199 |
-
)
|
200 |
-
input_media = gr.File(label="Upload Image", type="filepath")
|
201 |
-
text_input = gr.Textbox(label="Question", placeholder="Ask a question about the image...")
|
202 |
-
submit_btn = gr.Button(value="Submit", elem_classes="submit-btn")
|
203 |
-
output_text = gr.Textbox(label="Output Text", lines=8)
|
204 |
-
plain_text_output = gr.Textbox(label="Standardized Plain Text", lines=8)
|
205 |
-
|
206 |
-
submit_btn.click(
|
207 |
-
qwen_inference, [model_choice, input_media, text_input], [output_text]
|
208 |
-
).then(
|
209 |
-
lambda output_text: format_plain_text(output_text),
|
210 |
-
[output_text],
|
211 |
-
[plain_text_output]
|
212 |
-
)
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
|
259 |
demo.launch(debug=True)
|
|
|
71 |
|
72 |
if isinstance(media_input, str):
|
73 |
media_path = media_input
|
74 |
+
if media_path.endswith(tuple([i for i in image_extensions.keys()])):
|
75 |
media_type = "image"
|
76 |
else:
|
77 |
try:
|
|
|
83 |
{
|
84 |
"role": "user",
|
85 |
"content": [
|
86 |
+
{
|
87 |
+
"type": media_type,
|
88 |
+
media_type: media_path
|
89 |
+
},
|
90 |
{"type": "text", "text": text_input},
|
91 |
],
|
92 |
}
|
|
|
114 |
buffer = ""
|
115 |
for new_text in streamer:
|
116 |
buffer += new_text
|
117 |
+
# Remove <|im_end|> or similar tokens from the output
|
118 |
buffer = buffer.replace("<|im_end|>", "")
|
119 |
yield buffer
|
120 |
|
121 |
def format_plain_text(output_text):
|
122 |
"""Formats the output text as plain text without LaTeX delimiters."""
|
123 |
+
# Remove LaTeX delimiters and convert to plain text
|
124 |
plain_text = output_text.replace("\\(", "").replace("\\)", "").replace("\\[", "").replace("\\]", "")
|
125 |
return plain_text
|
126 |
|
|
|
147 |
styles["Normal"].fontName = font_choice
|
148 |
styles["Normal"].fontSize = int(font_size)
|
149 |
styles["Normal"].leading = int(font_size) * line_spacing
|
150 |
+
styles["Normal"].alignment = {
|
151 |
+
"Left": 0,
|
152 |
+
"Center": 1,
|
153 |
+
"Right": 2,
|
154 |
+
"Justified": 4
|
155 |
+
}[alignment]
|
156 |
|
157 |
# Register font
|
158 |
font_path = f"font/{font_choice}"
|
159 |
pdfmetrics.registerFont(TTFont(font_choice, font_path))
|
160 |
|
161 |
story = []
|
162 |
+
|
163 |
+
# Add image with size adjustment
|
164 |
+
image_sizes = {
|
165 |
+
"Small": (200, 200),
|
166 |
+
"Medium": (400, 400),
|
167 |
+
"Large": (600, 600)
|
168 |
+
}
|
169 |
img = RLImage(media_path, width=image_sizes[image_size][0], height=image_sizes[image_size][1])
|
170 |
story.append(img)
|
171 |
story.append(Spacer(1, 12))
|
172 |
+
|
173 |
+
# Add plain text output
|
174 |
text = Paragraph(plain_text, styles["Normal"])
|
175 |
story.append(text)
|
176 |
+
|
177 |
doc.build(story)
|
178 |
return filename
|
179 |
|
|
|
181 |
"""Generates a DOCX document."""
|
182 |
filename = f"output_{uuid.uuid4()}.docx"
|
183 |
doc = docx.Document()
|
184 |
+
|
185 |
+
# Add image with size adjustment
|
186 |
+
image_sizes = {
|
187 |
+
"Small": docx.shared.Inches(2),
|
188 |
+
"Medium": docx.shared.Inches(4),
|
189 |
+
"Large": docx.shared.Inches(6)
|
190 |
+
}
|
191 |
doc.add_picture(media_path, width=image_sizes[image_size])
|
192 |
doc.add_paragraph()
|
193 |
+
|
194 |
+
# Add plain text output
|
195 |
paragraph = doc.add_paragraph()
|
196 |
paragraph.paragraph_format.line_spacing = line_spacing
|
197 |
paragraph.paragraph_format.alignment = {
|
|
|
203 |
run = paragraph.add_run(plain_text)
|
204 |
run.font.name = font_choice
|
205 |
run.font.size = docx.shared.Pt(int(font_size))
|
206 |
+
|
207 |
doc.save(filename)
|
208 |
return filename
|
209 |
|
210 |
+
# CSS for output styling
|
211 |
css = """
|
212 |
+
#output {
|
213 |
+
height: 500px;
|
214 |
+
overflow: auto;
|
215 |
+
border: 1px solid #ccc;
|
216 |
+
}
|
217 |
+
.submit-btn {
|
218 |
+
background-color: #cf3434 !important;
|
219 |
+
color: white !important;
|
220 |
+
}
|
221 |
+
.submit-btn:hover {
|
222 |
+
background-color: #ff2323 !important;
|
223 |
+
}
|
224 |
+
.download-btn {
|
225 |
+
background-color: #35a6d6 !important;
|
226 |
+
color: white !important;
|
227 |
+
}
|
228 |
+
.download-btn:hover {
|
229 |
+
background-color: #22bcff !important;
|
230 |
+
}
|
231 |
"""
|
232 |
|
233 |
+
# Gradio app setup
|
234 |
with gr.Blocks(css=css) as demo:
|
235 |
+
gr.Markdown("# Qwen2VL: Compact Vision & Language Processing")
|
236 |
|
237 |
+
with gr.Tab(label="Image Input"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
|
239 |
+
with gr.Row():
|
240 |
+
with gr.Column():
|
241 |
+
model_choice = gr.Dropdown(
|
242 |
+
label="Model Selection",
|
243 |
+
choices=list(MODEL_OPTIONS.keys()),
|
244 |
+
value="Latex OCR"
|
245 |
+
)
|
246 |
+
input_media = gr.File(
|
247 |
+
label="Upload Image", type="filepath"
|
248 |
+
)
|
249 |
+
text_input = gr.Textbox(label="Question", placeholder="Ask a question about the image...")
|
250 |
+
submit_btn = gr.Button(value="Submit", elem_classes="submit-btn")
|
251 |
+
|
252 |
+
with gr.Column():
|
253 |
+
output_text = gr.Textbox(label="Output Text", lines=10)
|
254 |
+
plain_text_output = gr.Textbox(label="Standardized Plain Text", lines=10)
|
255 |
+
|
256 |
+
submit_btn.click(
|
257 |
+
qwen_inference, [model_choice, input_media, text_input], [output_text]
|
258 |
+
).then(
|
259 |
+
lambda output_text: format_plain_text(output_text), [output_text], [plain_text_output]
|
260 |
+
)
|
261 |
+
|
262 |
+
# Add examples directly usable by clicking
|
263 |
+
with gr.Row():
|
264 |
+
gr.Examples(
|
265 |
+
examples=[
|
266 |
+
["examples/1.png", "summarize the letter", "Text Analogy Ocrtest"],
|
267 |
+
["examples/2.jpg", "Summarize the full image in detail", "Latex OCR"],
|
268 |
+
["examples/3.png", "Describe the photo", "Qwen2VL Base"],
|
269 |
+
["examples/4.png", "summarize and solve the problem", "Math Prase"],
|
270 |
+
],
|
271 |
+
inputs=[input_media, text_input, model_choice],
|
272 |
+
outputs=[output_text, plain_text_output],
|
273 |
+
fn=lambda img, question, model: qwen_inference(model, img, question),
|
274 |
+
cache_examples=False,
|
275 |
+
)
|
276 |
+
|
277 |
+
with gr.Row():
|
278 |
+
with gr.Column():
|
279 |
+
line_spacing = gr.Dropdown(
|
280 |
+
choices=[0.5, 1.0, 1.15, 1.5, 2.0, 2.5, 3.0],
|
281 |
+
value=1.5,
|
282 |
+
label="Line Spacing"
|
283 |
+
)
|
284 |
+
font_size = gr.Dropdown(
|
285 |
+
choices=["8", "10", "12", "14", "16", "18", "20", "22", "24"],
|
286 |
+
value="18",
|
287 |
+
label="Font Size"
|
288 |
+
)
|
289 |
+
font_choice = gr.Dropdown(
|
290 |
+
choices=[
|
291 |
+
"DejaVuMathTeXGyre.ttf",
|
292 |
+
"FiraCode-Medium.ttf",
|
293 |
+
"InputMono-Light.ttf",
|
294 |
+
"JetBrainsMono-Thin.ttf",
|
295 |
+
"ProggyCrossed Regular Mac.ttf",
|
296 |
+
"SourceCodePro-Black.ttf",
|
297 |
+
"arial.ttf",
|
298 |
+
"calibri.ttf",
|
299 |
+
"mukta-malar-extralight.ttf",
|
300 |
+
"noto-sans-arabic-medium.ttf",
|
301 |
+
"times new roman.ttf",
|
302 |
+
"ANGSA.ttf",
|
303 |
+
"Book-Antiqua.ttf",
|
304 |
+
"CONSOLA.TTF",
|
305 |
+
"COOPBL.TTF",
|
306 |
+
"Rockwell-Bold.ttf",
|
307 |
+
"Candara Light.TTF",
|
308 |
+
"Carlito-Regular.ttf Carlito-Regular.ttf",
|
309 |
+
"Castellar.ttf",
|
310 |
+
"Courier New.ttf",
|
311 |
+
"LSANS.TTF",
|
312 |
+
"Lucida Bright Regular.ttf",
|
313 |
+
"TRTempusSansITC.ttf",
|
314 |
+
"Verdana.ttf",
|
315 |
+
"bell-mt.ttf",
|
316 |
+
"eras-itc-light.ttf",
|
317 |
+
"fonnts.com-aptos-light.ttf",
|
318 |
+
"georgia.ttf",
|
319 |
+
"segoeuithis.ttf",
|
320 |
+
"youyuan.TTF",
|
321 |
+
"TfPonetoneExpanded-7BJZA.ttf",
|
322 |
+
],
|
323 |
+
value="youyuan.TTF",
|
324 |
+
label="Font Choice"
|
325 |
+
)
|
326 |
+
alignment = gr.Dropdown(
|
327 |
+
choices=["Left", "Center", "Right", "Justified"],
|
328 |
+
value="Justified",
|
329 |
+
label="Text Alignment"
|
330 |
+
)
|
331 |
+
image_size = gr.Dropdown(
|
332 |
+
choices=["Small", "Medium", "Large"],
|
333 |
+
value="Small",
|
334 |
+
label="Image Size"
|
335 |
+
)
|
336 |
+
file_format = gr.Radio(["pdf", "docx"], label="File Format", value="pdf")
|
337 |
+
get_document_btn = gr.Button(value="Get Document", elem_classes="download-btn")
|
338 |
+
|
339 |
+
get_document_btn.click(
|
340 |
+
generate_document, [input_media, output_text, file_format, font_choice, font_size, line_spacing, alignment, image_size], gr.File(label="Download Document")
|
341 |
+
)
|
342 |
|
343 |
demo.launch(debug=True)
|