You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following locs I'm seeing that the module is deleting the data with del self.data can we have a flag that avoids this deletion so that we can drill down into good/bad data points at a later stage? I can raise a raise a PR if you think this is a good idea.
...
ifself.buf_writerisnotNone:
self.buf_writer=Nonedelself.dataself.data=Noneelse:
# Release locks and delete all the cache files. Process 0 is released last.forfilelock, file_pathinreversed(list(zip(self.filelocks, self.file_paths))):
logger.info(f"Removing {file_path}")
delself.dataself.data=Nonedelself.writerself.writer=Noneos.remove(file_path)
filelock.release()
...
The text was updated successfully, but these errors were encountered:
In the following locs I'm seeing that the module is deleting the data with
del self.data
can we have a flag that avoids this deletion so that we can drill down into good/bad data points at a later stage? I can raise a raise a PR if you think this is a good idea.evaluate/src/evaluate/module.py
Line 471 in 55f1bc6
The text was updated successfully, but these errors were encountered: