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)