test1 / app.py
Intradiction's picture
Update app.py
3990405
raw
history blame
215 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline(model="Intradiction/text_classification_NoLORA")
text = st.text_area('Input a movie review:')
if text:
out = pipe(text)
st.json(out)