Spaces:
Sleeping
Sleeping
File size: 769 Bytes
0924a8f 62e4927 8922905 0924a8f 62e4927 0902778 a317482 6be35b1 f590cac 0924a8f 381164a 0924a8f 381164a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import gradio as gr
import PIL.Image as Image
from ultralytics import YOLO
from huggingface_hub import hf_hub_download
import os
REPO_ID = 'vaivTA/yolov8x_doclaynet'
FILENAME = "weights/best.pt"
print("downloading model...")
model_file = hf_hub_download(repo_id=REPO_ID, filename=FILENAME)
model = YOLO(model_file)
def infer(img_path):
results = model(img_path)
im_array = results[0].plot()
im = Image.fromarray(im_array[..., ::-1])
return im
article = "**์ด๋ฏธ์ง๋ฅผ ์
๋ก๋ํ์ธ์.**" \
demo = gr.Interface(fn=infer,
inputs=gr.Image(type="numpy", label="Input Image"),
outputs=gr.Image(type="pil", label="Result Image")
# examples=[image_path,]
)
demo.launch()
|