Archisman Karmakar
commited on
Commit
·
95a993d
1
Parent(s):
e89edfa
Update dashboard.py
Browse files- dashboard.py +42 -36
dashboard.py
CHANGED
@@ -130,52 +130,58 @@ def create_sample_example2():
|
|
130 |
st.graphviz_chart(graph)
|
131 |
|
132 |
|
133 |
-
|
134 |
-
|
|
|
|
|
135 |
|
136 |
graph = """
|
137 |
-
digraph {
|
138 |
-
|
139 |
-
|
|
|
|
|
140 |
node [shape=box, style="rounded,filled", fontname="Helvetica", fontsize=9, margin="0.15,0.1"];
|
141 |
|
142 |
-
// Define nodes with
|
143 |
-
Input [label="Input
|
144 |
-
|
145 |
-
Sentiment [label="Sentiment
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
// Define edges
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
Emotion ->
|
168 |
-
Emotion ->
|
169 |
-
Emotion ->
|
170 |
-
Emotion ->
|
171 |
-
Emotion ->
|
172 |
-
Emotion ->
|
|
|
173 |
}
|
174 |
"""
|
175 |
|
176 |
st.graphviz_chart(graph)
|
177 |
|
178 |
|
|
|
179 |
def create_project_overview():
|
180 |
# st.divider()
|
181 |
st.markdown("## Project Overview")
|
|
|
130 |
st.graphviz_chart(graph)
|
131 |
|
132 |
|
133 |
+
import streamlit as st
|
134 |
+
|
135 |
+
def create_sample_example():
|
136 |
+
st.write("#### Sample Example")
|
137 |
|
138 |
graph = """
|
139 |
+
digraph G {
|
140 |
+
rankdir=LR;
|
141 |
+
bgcolor="white";
|
142 |
+
nodesep=0.8;
|
143 |
+
ranksep=0.8;
|
144 |
node [shape=box, style="rounded,filled", fontname="Helvetica", fontsize=9, margin="0.15,0.1"];
|
145 |
|
146 |
+
// Define nodes with colors
|
147 |
+
"Input Text" [label="Input Text:\ni don't know for real y he's sooo sad", fillcolor="#ffe6de", fontcolor="black"];
|
148 |
+
"Normalized Text" [label="Normalized Text:\ni do not know for real why he's so sad", fillcolor="#e6f4d7", fontcolor="black"];
|
149 |
+
"Sentiment" [label="Sentiment", fillcolor="#fde6ff", fontcolor="black"];
|
150 |
+
"negative" [label="negative: 0.995874803543091", fillcolor="#e8e6ff", fontcolor="black"];
|
151 |
+
"neutral" [label="neutral: 6.232635259628296e-05", fillcolor="#e8e6ff", fontcolor="black"];
|
152 |
+
"positive" [label="positive: 2.0964847564697266e-05", fillcolor="#e8e6ff", fontcolor="black"];
|
153 |
+
|
154 |
+
"Emotion" [label="Emotion", fillcolor="#fdf5e6", fontcolor="black"];
|
155 |
+
"anger" [label="anger: 0.0", fillcolor="#deffe1", fontcolor="black"];
|
156 |
+
"disgust" [label="disgust: 0.0", fillcolor="#deffe1", fontcolor="black"];
|
157 |
+
"fear" [label="fear: 0.010283803842246056", fillcolor="#deffe1", fontcolor="black"];
|
158 |
+
"joy" [label="joy: 0.0", fillcolor="#deffe1", fontcolor="black"];
|
159 |
+
"neutral_e" [label="neutral: 0.021935827255129814", fillcolor="#deffe1", fontcolor="black"];
|
160 |
+
"sadness" [label="sadness: 1.0", fillcolor="#deffe1", fontcolor="black"];
|
161 |
+
"surprise" [label="surprise: 0.02158345977962017", fillcolor="#deffe1", fontcolor="black"];
|
162 |
+
|
163 |
+
// Define edges
|
164 |
+
"Input Text" -> "Normalized Text";
|
165 |
+
"Normalized Text" -> "Sentiment";
|
166 |
+
"Sentiment" -> "negative";
|
167 |
+
"Sentiment" -> "neutral";
|
168 |
+
"Sentiment" -> "positive";
|
169 |
+
|
170 |
+
"Normalized Text" -> "Emotion";
|
171 |
+
"Emotion" -> "anger";
|
172 |
+
"Emotion" -> "disgust";
|
173 |
+
"Emotion" -> "fear";
|
174 |
+
"Emotion" -> "joy";
|
175 |
+
"Emotion" -> "neutral_e";
|
176 |
+
"Emotion" -> "sadness";
|
177 |
+
"Emotion" -> "surprise";
|
178 |
}
|
179 |
"""
|
180 |
|
181 |
st.graphviz_chart(graph)
|
182 |
|
183 |
|
184 |
+
|
185 |
def create_project_overview():
|
186 |
# st.divider()
|
187 |
st.markdown("## Project Overview")
|