Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BhuvanRShetty
/
NSFW_TextClassifier
like
0
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
Bhuvan R Shetty
commited on
9 days ago
Commit
ae14a0c
·
1 Parent(s):
c97e296
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def imageclassifer(text):
4
+
return "hello"
5
+
6
+
interface=gr.Interface(fn=imageclassifer,inputs=str,outputs=str)
7
+
interface.launch()