File size: 869 Bytes
05235d4
 
 
 
 
 
 
 
 
 
 
 
 
07a5159
05235d4
 
 
 
 
 
 
1960023
f6e0191
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)

st.title("Gibberish Detector")

user_input = str(st.text_input("Enter some words", "pasghetti"))

st.write("Input was: ", str(user_input))

classifier = pipeline("sentiment-analysis", model=mod, tokenizer=TKR)
# result = classifier(["This is a sample text made by Sean Ramirez.", "This is another sample text."]) # leftover from initial testing

if user_input is not None:
    predicts = pipeline("sentiment-analysis", model=mod, tokenizer=TKR)

    st.markdown("##Probabilities")
    st.write(f"{ p['label']}: { round(p['score'] * 100, 1)}%")