Spaces:
Runtime error
Runtime error
Commit
·
bd8cf8c
1
Parent(s):
b72dcc3
Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,13 @@ import streamlit as st
|
|
9 |
st.header("stream your emotions")
|
10 |
st.write("insert details ng huggignaspce")
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
def tester(text):
|
13 |
classifier = pipeline("sentiment-analysis", model='bhadresh-savani/distilbert-base-uncased-emotion')
|
14 |
results = classifier(text)
|
|
|
9 |
st.header("stream your emotions")
|
10 |
st.write("insert details ng huggignaspce")
|
11 |
|
12 |
+
col1, col2, col3 = st.columns(3)
|
13 |
+
col1.metric("Temperature", "joy")
|
14 |
+
col2.metric("Wind", "sadness")
|
15 |
+
col3.metric("Humidity", "86%")
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
def tester(text):
|
20 |
classifier = pipeline("sentiment-analysis", model='bhadresh-savani/distilbert-base-uncased-emotion')
|
21 |
results = classifier(text)
|