Archisman Karmakar commited on
Commit
95a993d
·
1 Parent(s): e89edfa

Update dashboard.py

Browse files
Files changed (1) hide show
  1. dashboard.py +42 -36
dashboard.py CHANGED
@@ -130,52 +130,58 @@ def create_sample_example2():
130
  st.graphviz_chart(graph)
131
 
132
 
133
- def create_sample_example1():
134
- st.write("#### Sample Example 1")
 
 
135
 
136
  graph = """
137
- digraph {
138
- // Global graph settings
139
- graph [bgcolor="white", rankdir=TB, splines=true, nodesep=0.8, ranksep=0.8];
 
 
140
  node [shape=box, style="rounded,filled", fontname="Helvetica", fontsize=9, margin="0.15,0.1"];
141
 
142
- // Define nodes with custom colors
143
- Input [label="Input:\\nu rlly think all that talk means u tough? lol, when I step up, u ain't gon say sh*t", fillcolor="#ffe6de", fontcolor="black"];
144
- Output [label="Output:\\nyou really think all that talk makes you tough [lol](laughed out loud) when i step up you are not going to say anything", fillcolor="#ffe6de", fontcolor="black"];
145
- Sentiment [label="Sentiment:\\nNEGATIVE", fillcolor="#ecdeff", fontcolor="black"];
146
-
147
- // Add the Emotion node
148
- Emotion [label="Emotion", fillcolor="#ecdeff", fontcolor="black"];
149
-
150
- // Emotion nodes with a uniform style
151
- Anger [label="Anger: 0.14403291", fillcolor="#deffe1", fontcolor="black"];
152
- Disgust [label="Disgust: 0.039282672", fillcolor="#deffe1", fontcolor="black"];
153
- Fear [label="Fear: 0.014349542", fillcolor="#deffe1", fontcolor="black"];
154
- Joy [label="Joy: 0.048965044", fillcolor="#deffe1", fontcolor="black"];
155
- Neutral [label="Neutral: 0.494852662", fillcolor="#deffe1", fontcolor="black"];
156
- Sadness [label="Sadness: 0.021111647", fillcolor="#deffe1", fontcolor="black"];
157
- Surprise [label="Surprise: 0.237405464", fillcolor="#deffe1", fontcolor="black"];
158
-
159
- // Define edges with a consistent style
160
- edge [color="#7a7a7a", penwidth=3];
161
-
162
- // Establish the tree structure
163
- Input -> Output;
164
- Input -> Sentiment;
165
- Sentiment -> Emotion;
166
- Emotion -> Anger;
167
- Emotion -> Disgust;
168
- Emotion -> Fear;
169
- Emotion -> Joy;
170
- Emotion -> Neutral;
171
- Emotion -> Sadness;
172
- Emotion -> Surprise;
 
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")