Spaces:
Sleeping
Sleeping
File size: 370 Bytes
9b1388d 5273fda 9b1388d 5273fda 9b1388d 5273fda 9b1388d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
from transformers import pipeline
pipe = pipeline("text-classification", model="roberta-base-openai-detector")
def greet(text):
data = pipe(text)[0]
label = data["label"]
score = data["score"]
return f"The text is {label}, with {score} confidence score@"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |