snaramirez872's picture
Upload app.py
46837a8
raw
history blame
747 Bytes
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)
result = pipeline("sentiment-analysis", model=mod)
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'] } & Score: { predicts['score']}")