cammcewan/MyFirstSpace
0
1import streamlit as st2from transformers import pipeline 3 4pipe = pipeline('sentiment-analysis')5text = st.text_area('enter some new text')6 7if next:8 out = pipe(text)9 st.json(out)1import streamlit as st2from transformers import pipeline 3 4pipe = pipeline('sentiment-analysis')5text = st.text_area('enter some new text')6 7if next:8 out = pipe(text)9 st.json(out)