tt / app.py
imtng's picture
Update app.py
cf5e945 verified
raw
history blame
228 Bytes
import streamlit as st
from transformers import pipeline
title = st.text_input('Movie title', 'Life of Brian')
#st.write('The current movie title is', title)
pipe = pipeline(model="imtng/bert-cased-yelp")
st.write(pipe(title))