Spaces:
Runtime error
Runtime error
File size: 828 Bytes
1e156f0 f8483c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import streamlit as st
from transformers import pipeline
from transformers import AutoTokenizer as AT, AutoModelForSequenceClassification as AFSC
modName = "madhurjindal/autonlp-Gibberish-Detector-492513457" # Gibberish Detection Model from HuggingFace
mod = AFSC.from_pretrained(modName)
TKR = AT.from_pretrained(modName)
result = pipeline("sentiment-analysis", model=mod, tokenizer=TKR)
st.title("Gibberish Detector")
user_input = str(st.text_input("Enter some words", "pasghetti"))
# result = classifier(["This is a sample text made by Sean Ramirez.", "This is another sample text."]) # leftover from initial testing
if user_input:
predicts = result(user_input)[0]
st.markdown("## Probabilities")
st.write(f"Predicted: { predicts['label'] }")
st.write(f"Score: { round(predicts['score'] * 100, 1)}%")
|