sarpreetsingh3131's picture
Update app.py
0f12de3 verified
raw
history blame contribute delete
331 Bytes
import gradio
def predict():
return "Please visit our platform to use this model - aipanjab.com"
gradio.Interface(
fn=predict,
inputs=gradio.Sketchpad(type="pil"),
outputs="label",
title="Model trained to recognise handwritten Panjabi digits (Visit our platform to use this model - aipanjab.com)"
).launch()