Skip to content
Snippets Groups Projects
Commit 98b14149 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

memory usage sum Int64, not compatible with starret

parent 20986e13
No related branches found
No related tags found
No related merge requests found
......@@ -623,7 +623,7 @@ class RoiSet(object):
'raw_shape_dict': self.acc_raw.shape_dict,
'count': self.count,
'classify_by': self.classification_columns,
'df_memory_usage': self.get_df().memory_usage(deep=True).sum()
'df_memory_usage': int(self.get_df().memory_usage(deep=True).sum())
}
def get_df(self) -> pd.DataFrame:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment