Keep data loaded when get_data is called
This commit is contained in:
parent
db593d0bb5
commit
07828e41c9
@ -129,9 +129,16 @@ class DataCollector:
|
|||||||
file.write(self.to_csv(sep=sep))
|
file.write(self.to_csv(sep=sep))
|
||||||
|
|
||||||
def get_data(self) -> tuple[np.ndarray, dict]:
|
def get_data(self) -> tuple[np.ndarray, dict]:
|
||||||
|
"""
|
||||||
|
Load the full data and return it together with the metadata
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
tuple[np.ndarray, dict]
|
||||||
|
The full data and the metadata
|
||||||
|
"""
|
||||||
if self.fulldata is None:
|
if self.fulldata is None:
|
||||||
return DataCollector.load_data_from_dir(self.dirpath)
|
self.fulldata, new_mdata = DataCollector.load_data_from_dir(self.dirpath)
|
||||||
else:
|
self.metadata |= new_mdata
|
||||||
return self.fulldata, self.metadata
|
return self.fulldata, self.metadata
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
Loading…
x
Reference in New Issue
Block a user