File size: 492 Bytes
fc90791
8937739
a718b41
8937739
a718b41
066162b
a718b41
 
 
 
0765084
a718b41
8937739
 
a718b41
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
from transformers import pipeline

classifier = pipeline("sentiment-analysis", model="Donlapark/finetuned_yelp")
def main():
    st.title("Yelp review")

    with st.form("text_field"):
        text = st.text_area('enter some text:')
        # clicked==True only when the button is clicked
        clicked = st.form_submit_button("Submit text")
        if clicked:
          results = classifier([text])
          st.json(results)

if __name__ == "__main__":
    main()