File size: 446 Bytes
002206d
 
 
 
 
543bcc6
d5a91cf
002206d
 
 
543bcc6
 
 
 
002206d
543bcc6
 
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

sentiment_pipeline = pipeline("sentiment-analysis")

st.title("Calc 2+2")
st.write("Введите предложение: ")

user_input = st.text_input("")
if user_input:
    #result = sentiment_pipeline(user_input)
    #sentiment = result[0]["label"]
    #confidence = result[0]["score"]
    result = 2 + 2

    st.write(f"sum: {result}")
    #st.write(f"Confidence: {confidence:.2f}")