ThirdFourthFifth commited on
Commit
09b1412
·
verified ·
1 Parent(s): 8c1f690

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ pipeline = pipeline(task="text-classification", model="MichalMlodawski/nsfw-text-detection-large")
5
+
6
+ def predict(input_txt):
7
+ predictions = pipeline(input_txt)
8
+ return input_txt, {p["label"]: p["score"] for p in predictions}
9
+
10
+ gradio_app = gr.Interface(
11
+ predict,
12
+ inputs=gr.Textbox(label="Enter text"),
13
+ outputs=[gr.Label(label="Result", num_top_classes=2)],
14
+ title="NSFW Classifier",
15
+ )
16
+
17
+ if __name__ == "__main__":
18
+ gradio_app.launch()