|
import gradio as gr |
|
from transformers import AutoImageProcessor, AutoModelForObjectDetection |
|
import torch |
|
|
|
|
|
processor = AutoImageProcessor.from_pretrained("microsoft/table-transformer-structure-recognition") |
|
model = AutoModelForObjectDetection.from_pretrained("microsoft/table-transformer-structure-recognition") |
|
|
|
|
|
def predict(image): |
|
|
|
inputs = processor(images=image, return_tensors="pt") |
|
|
|
|
|
with torch.no_grad(): |
|
outputs = model(**inputs) |
|
|
|
|
|
predicted_boxes = outputs.pred_boxes[0].cpu().numpy() |
|
predicted_class_logits = outputs.logits[0].cpu().numpy() |
|
predicted_classes = predicted_class_logits.argmax(-1) |
|
class_names = model.config.id2label |
|
|
|
|
|
result = [] |
|
for idx, class_id in enumerate(predicted_classes): |
|
class_name = class_names[class_id] |
|
result.append({ |
|
"class_id": int(class_id), |
|
"class_name": class_name, |
|
"bounding_box": predicted_boxes[idx].tolist() |
|
}) |
|
|
|
|
|
return result |
|
|
|
|
|
interface = gr.Interface( |
|
fn=predict, |
|
inputs=gr.Image(type="pil"), |
|
outputs="json", |
|
title="Table Structure Recognition", |
|
description="Upload an image and see the detected table columns and their corresponding class IDs.", |
|
) |
|
|
|
|
|
interface.launch() |
|
|