Spaces:
Runtime error
Runtime error
recursionlab commited on
Commit ·
92a7556
1
Parent(s): 0e7a3d4
Add vision analyzer app with Florence-2
Browse files- app.py +75 -0
- requirements.txt +5 -0
app.py
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
from PIL import Image
|
| 3 |
+
import torch
|
| 4 |
+
from transformers import AutoProcessor, AutoModelForCausalLM
|
| 5 |
+
|
| 6 |
+
# Load Florence-2 (runs on CPU, free tier compatible)
|
| 7 |
+
model_id = "microsoft/Florence-2-large"
|
| 8 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 9 |
+
dtype = torch.float16 if torch.cuda.is_available() else torch.float32
|
| 10 |
+
|
| 11 |
+
print(f"Loading model on {device}...")
|
| 12 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 13 |
+
model_id,
|
| 14 |
+
torch_dtype=dtype,
|
| 15 |
+
trust_remote_code=True
|
| 16 |
+
).to(device)
|
| 17 |
+
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
|
| 18 |
+
print("Model loaded.")
|
| 19 |
+
|
| 20 |
+
def analyze_image(image, prompt):
|
| 21 |
+
if image is None:
|
| 22 |
+
return "No image uploaded."
|
| 23 |
+
|
| 24 |
+
if not prompt:
|
| 25 |
+
prompt = "<MORE_DETAILED_CAPTION>"
|
| 26 |
+
|
| 27 |
+
inputs = processor(text=prompt, images=image, return_tensors="pt").to(device, dtype)
|
| 28 |
+
|
| 29 |
+
with torch.no_grad():
|
| 30 |
+
generated_ids = model.generate(
|
| 31 |
+
input_ids=inputs["input_ids"],
|
| 32 |
+
pixel_values=inputs["pixel_values"],
|
| 33 |
+
max_new_tokens=512,
|
| 34 |
+
do_sample=False
|
| 35 |
+
)
|
| 36 |
+
|
| 37 |
+
generated_text = processor.batch_decode(generated_ids, skip_special_tokens=False)[0]
|
| 38 |
+
parsed = processor.post_process_generation(generated_text, task=prompt, image_size=(image.width, image.height))
|
| 39 |
+
|
| 40 |
+
# Return the first value from parsed dict
|
| 41 |
+
if isinstance(parsed, dict):
|
| 42 |
+
return list(parsed.values())[0]
|
| 43 |
+
return str(parsed)
|
| 44 |
+
|
| 45 |
+
# Available tasks for Florence-2
|
| 46 |
+
TASKS = [
|
| 47 |
+
"<CAPTION>",
|
| 48 |
+
"<DETAILED_CAPTION>",
|
| 49 |
+
"<MORE_DETAILED_CAPTION>",
|
| 50 |
+
"<OCR>",
|
| 51 |
+
"<OCR_WITH_REGION>",
|
| 52 |
+
"<OBJECT_DETECTION>",
|
| 53 |
+
"<REGION_TO_CATEGORY>",
|
| 54 |
+
"<REGION_TO_DESCRIPTION>",
|
| 55 |
+
]
|
| 56 |
+
|
| 57 |
+
with gr.Blocks(title="Vision Analyzer") as demo:
|
| 58 |
+
gr.Markdown("# Image Understanding")
|
| 59 |
+
gr.Markdown("Upload an image and select what you want to extract from it.")
|
| 60 |
+
|
| 61 |
+
with gr.Row():
|
| 62 |
+
with gr.Column():
|
| 63 |
+
image_input = gr.Image(type="pil", label="Upload Image")
|
| 64 |
+
task_dropdown = gr.Dropdown(choices=TASKS, value="<MORE_DETAILED_CAPTION>", label="Analysis Type")
|
| 65 |
+
text_prompt = gr.Textbox(label="Or enter custom prompt (overrides dropdown)", placeholder="Describe what you see...", lines=2)
|
| 66 |
+
analyze_btn = gr.Button("Analyze")
|
| 67 |
+
with gr.Column():
|
| 68 |
+
output = gr.Textbox(label="Result", lines=15, show_copy_button=True)
|
| 69 |
+
|
| 70 |
+
analyze_btn.click(fn=analyze_image, inputs=[image_input, text_prompt], outputs=output)
|
| 71 |
+
|
| 72 |
+
gr.Markdown("---")
|
| 73 |
+
gr.Markdown("Powered by Microsoft Florence-2-large on HuggingFace free tier.")
|
| 74 |
+
|
| 75 |
+
demo.launch(server_name="0.0.0.0", server_port=7860)
|
requirements.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch
|
| 2 |
+
transformers
|
| 3 |
+
accelerate
|
| 4 |
+
Pillow
|
| 5 |
+
gradio
|