Spaces:
Sleeping
Sleeping
File size: 1,002 Bytes
9121a29 82171e3 9121a29 74c6c38 9121a29 74c6c38 9121a29 74c6c38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import gradio as gr
from transformers import pipeline
import torch
classifier = pipeline(
"text-classification",
model="dj-dawgs-ipd/IPD-finetuned-english-text",
device=0 if torch.cuda.is_available() else -1
)
def classify_text(text):
result = classifier(text)
return result[0]['label'], result[0]['score']
# with gr.Blocks() as demo:
# gr.Markdown("# Hate Speech Classification with Fine-Tuned Model")
# with gr.Row():
# text_input = gr.Textbox(label="Input Text")
# label_output = gr.Textbox(label="Predicted Label")
# score_output = gr.Number(label="Prediction Score")
# text_input.change(fn=classify_text, inputs=text_input, outputs=[label_output, score_output])
# demo.launch()
iface = gr.Interface(
fn=classify_text,
inputs=gr.Textbox(label="Input Text"),
outputs=[gr.Textbox(label="Predicted Label"), gr.Number(label="Prediction Score")],
title="Hate Speech Classification with Fine-Tuned Model"
)
iface.launch() |