Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yogeshjat
/
KanoonSarathiModel
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ccab347
KanoonSarathiModel
/
app.py
yogeshjat
first
ccab347
4 months ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
gradio
as
gr
from
model
import
prediction
def
predict
(
text
):
return
prediction(text)
gr.Interface(fn=predict, inputs=
"text"
, outputs=
"text"
).launch()