m7mdal7aj commited on
Commit
7016023
1 Parent(s): f3dc719

Update my_model/tabs/results.py

Browse files
Files changed (1) hide show
  1. my_model/tabs/results.py +1 -1
my_model/tabs/results.py CHANGED
@@ -64,7 +64,7 @@ class ResultDemonstrator(KBVQAEvaluator):
64
 
65
  plt.figure(figsize=(10, 6))
66
  # Create a scatter plot with smaller dots using the 's' parameter
67
- scatter = plt.scatter(range(len(token_counts)), token_counts, c=colors, s=20, label=labels)
68
 
69
  # Create a custom legend
70
  from matplotlib.lines import Line2D
 
64
 
65
  plt.figure(figsize=(10, 6))
66
  # Create a scatter plot with smaller dots using the 's' parameter
67
+ scatter = plt.scatter(range(len(token_counts)), token_counts, c=d['color'], s=20, label=d['label'])
68
 
69
  # Create a custom legend
70
  from matplotlib.lines import Line2D