Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
"
|
123 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
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]
|