AlGe commited on
Commit
b48c1e3
·
verified ·
1 Parent(s): 6bafdbf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -86,8 +86,8 @@ def generate_charts(ner_output_bin: dict) -> Tuple[go.Figure, np.ndarray]:
86
  bin_sizes = list(entity_counts_bin.values())
87
 
88
  bin_color_map = {
89
- "External": "#6ad5bc",
90
- "Internal": "#ee8bac"
91
  }
92
 
93
  bin_colors = [bin_color_map.get(label, "#FFFFFF") for label in bin_labels]
 
86
  bin_sizes = list(entity_counts_bin.values())
87
 
88
  bin_color_map = {
89
+ "External": "#00008B", // Deep blue
90
+ "Internal": "#8B0000" // Deep red
91
  }
92
 
93
  bin_colors = [bin_color_map.get(label, "#FFFFFF") for label in bin_labels]