Update my_model/tabs/results.py
Browse files- 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=
|
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
|