AlGe commited on
Commit
ac8f612
·
verified ·
1 Parent(s): 5ba216a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -112,15 +112,20 @@ def generate_charts(ner_output_bin: dict, ner_output_ext: dict) -> Tuple[go.Figu
112
  ext_labels = list(entity_counts_ext.keys())
113
  ext_sizes = list(entity_counts_ext.values())
114
 
115
- # Define color mapping
116
  bin_color_map = {
117
  "External": "#6ad5bc",
118
  "Internal": "#ee8bac"
119
  }
120
 
121
  ext_color_map = {
122
- "PER": "#FF7F50", # Coral
123
- "LOC": "#4682B4", # SteelBlue
 
 
 
 
 
 
124
  }
125
 
126
  bin_colors = [bin_color_map.get(label, "#FFFFFF") for label in bin_labels]
 
112
  ext_labels = list(entity_counts_ext.keys())
113
  ext_sizes = list(entity_counts_ext.values())
114
 
 
115
  bin_color_map = {
116
  "External": "#6ad5bc",
117
  "Internal": "#ee8bac"
118
  }
119
 
120
  ext_color_map = {
121
+ "INTemothou": "#FF7F50", # Coral
122
+ "INTpercept": "#FF4500", # OrangeRed
123
+ "INTtime": "#FF6347", # Tomato
124
+ "INTplace": "#FFD700", # Gold
125
+ "INTevent": "#FFA500", # Orange
126
+ "EXTsemantic": "#4682B4", # SteelBlue
127
+ "EXTrepetition": "#5F9EA0", # CadetBlue
128
+ "EXTother": "#00CED1", # DarkTurquoise
129
  }
130
 
131
  bin_colors = [bin_color_map.get(label, "#FFFFFF") for label in bin_labels]