AlGe commited on
Commit
b779906
·
verified ·
1 Parent(s): b49c174

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -130,7 +130,7 @@ def generate_charts(ner_output_bin: dict, ner_output_ext: dict) -> Tuple[go.Figu
130
  # Create pie chart for extended classification
131
  fig1 = go.Figure(data=[go.Pie(labels=ext_labels, values=ext_sizes, textinfo='label+percent', hole=.3, marker=dict(colors=ext_colors))])
132
  fig1.update_layout(
133
- title_text='Extended Sequence Classification Subclasses',
134
  template='plotly_dark',
135
  plot_bgcolor='rgba(0,0,0,0)',
136
  paper_bgcolor='rgba(0,0,0,0)'
@@ -139,7 +139,7 @@ def generate_charts(ner_output_bin: dict, ner_output_ext: dict) -> Tuple[go.Figu
139
  # Create bar chart for binary classification
140
  fig2 = go.Figure(data=[go.Bar(x=bin_labels, y=bin_sizes, marker=dict(color=bin_colors))])
141
  fig2.update_layout(
142
- title='Binary Sequence Classification Classes',
143
  xaxis_title='Entity Type',
144
  yaxis_title='Count',
145
  template='plotly_dark',
@@ -190,8 +190,8 @@ iface = gr.Interface(
190
  gr.Label(label="Internal Detail Count"),
191
  gr.Label(label="External Detail Count"),
192
  gr.Label(label="Approximated Internal Detail Ratio"),
193
- gr.Plot(label="Entity Distribution Pie Chart"),
194
- gr.Plot(label="Entity Count Bar Chart")
195
  ],
196
  title="Scoring Demo",
197
  description="Autobiographical Memory Analysis: This demo combines two text - and two sequence classification models to showcase our automated Autobiographical Interview scoring method. Submit a narrative to see the results.",
 
130
  # Create pie chart for extended classification
131
  fig1 = go.Figure(data=[go.Pie(labels=ext_labels, values=ext_sizes, textinfo='label+percent', hole=.3, marker=dict(colors=ext_colors))])
132
  fig1.update_layout(
133
+ #title_text='Extended Sequence Classification Subclasses',
134
  template='plotly_dark',
135
  plot_bgcolor='rgba(0,0,0,0)',
136
  paper_bgcolor='rgba(0,0,0,0)'
 
139
  # Create bar chart for binary classification
140
  fig2 = go.Figure(data=[go.Bar(x=bin_labels, y=bin_sizes, marker=dict(color=bin_colors))])
141
  fig2.update_layout(
142
+ #title='Binary Sequence Classification Classes',
143
  xaxis_title='Entity Type',
144
  yaxis_title='Count',
145
  template='plotly_dark',
 
190
  gr.Label(label="Internal Detail Count"),
191
  gr.Label(label="External Detail Count"),
192
  gr.Label(label="Approximated Internal Detail Ratio"),
193
+ gr.Plot(label="Extended SeqClass Entity Distribution Pie Chart"),
194
+ gr.Plot(label="Binary SeqClass Entity Count Bar Chart")
195
  ],
196
  title="Scoring Demo",
197
  description="Autobiographical Memory Analysis: This demo combines two text - and two sequence classification models to showcase our automated Autobiographical Interview scoring method. Submit a narrative to see the results.",