Spaces:
Runtime error
Runtime error
fix: title argument
Browse files
app.py
CHANGED
@@ -78,7 +78,7 @@ def serialize_images(processed_map):
|
|
78 |
"""Serializes attention maps."""
|
79 |
for i in range(processed_map.shape[0]):
|
80 |
plt.imshow(processed_map[i].numpy())
|
81 |
-
plt.
|
82 |
plt.imsave(fname="attention_map_{i}.png")
|
83 |
|
84 |
|
|
|
78 |
"""Serializes attention maps."""
|
79 |
for i in range(processed_map.shape[0]):
|
80 |
plt.imshow(processed_map[i].numpy())
|
81 |
+
plt.title(f"Attention head: {i}", fontsize=14)
|
82 |
plt.imsave(fname="attention_map_{i}.png")
|
83 |
|
84 |
|