Update app.py
Browse files
app.py
CHANGED
@@ -174,14 +174,16 @@ def compute_bfi_scores(*args):
|
|
174 |
ha='center', va='bottom')
|
175 |
|
176 |
plt.tight_layout()
|
|
|
177 |
# Save the plot to a PNG image in memory
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
|
|
185 |
|
186 |
markdown_output += "### **Trait Scores Visualization**\n\n"
|
187 |
|
|
|
174 |
ha='center', va='bottom')
|
175 |
|
176 |
plt.tight_layout()
|
177 |
+
|
178 |
# Save the plot to a PNG image in memory
|
179 |
+
with BytesIO() as buf:
|
180 |
+
plt.savefig(buf, format='png')
|
181 |
+
buf.seek(0)
|
182 |
+
# Convert bytes to PIL Image and ensure data is loaded
|
183 |
+
image = PILImage.open(buf).copy()
|
184 |
+
# No need to close the buffer explicitly; 'with' statement handles it
|
185 |
+
|
186 |
+
plt.close(fig) # Close the figure to free memory
|
187 |
|
188 |
markdown_output += "### **Trait Scores Visualization**\n\n"
|
189 |
|