Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,18 +1,20 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
from transformers import pipeline
|
| 3 |
|
| 4 |
-
|
| 5 |
|
| 6 |
def predict(input_txt):
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
|
| 10 |
gradio_app = gr.Interface(
|
| 11 |
-
predict,
|
| 12 |
inputs=gr.Textbox(label="Enter text"),
|
| 13 |
-
outputs=
|
| 14 |
-
title="NSFW Classifier",
|
| 15 |
)
|
| 16 |
|
| 17 |
if __name__ == "__main__":
|
| 18 |
gradio_app.launch()
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from transformers import pipeline as hf_pipeline
|
| 3 |
|
| 4 |
+
classifier = hf_pipeline(task="text-classification", model="TostAI/nsfw-text-detection-large")
|
| 5 |
|
| 6 |
def predict(input_txt):
|
| 7 |
+
preds = classifier(input_txt)
|
| 8 |
+
# Find score for label "NSFW" (case-sensitive). Fallback: use highest-scoring label's score.
|
| 9 |
+
score = None
|
| 10 |
+
return float(preds[0].get("score"))
|
| 11 |
|
| 12 |
gradio_app = gr.Interface(
|
| 13 |
+
fn=predict,
|
| 14 |
inputs=gr.Textbox(label="Enter text"),
|
| 15 |
+
outputs=gr.Number(label="NSFW score")
|
|
|
|
| 16 |
)
|
| 17 |
|
| 18 |
if __name__ == "__main__":
|
| 19 |
gradio_app.launch()
|
| 20 |
+
|