johnpaulbin commited on
Commit
d413ee5
·
verified ·
1 Parent(s): f823d62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -7
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
- buf = BytesIO()
179
- plt.savefig(buf, format='png')
180
- buf.seek(0)
181
- plt.close(fig)
182
- # Convert bytes to PIL Image
183
- image = PILImage.open(buf)
184
- buf.close()
 
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