font-identifier / app.py
tonyassi's picture
Create app.py
89ddba3 verified
raw
history blame
248 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("image-classification", model="gaborcselle/font-identifier")
def greet(img):
return "Hello "
demo = gr.Interface(fn=greet, inputs=gr.Image(), outputs="text")
demo.launch()