dfcf46b 3990405 dfcf46b
1
2
3
4
5
6
7
8
9
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)