Skip to content

Commit

Permalink
Create ToDos to mark future changes in the recorder class.
Browse files Browse the repository at this point in the history
  • Loading branch information
knikolaou committed May 14, 2024
1 parent 193ad63 commit 8d54648
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion papyrus/recorders/base_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ def _write(self, data: dict):
"""
Write data to the database using np.savez
TODO: Change this method to use another type of storage.
Parameters
----------
data : dict
Expand All @@ -112,7 +114,9 @@ def _write(self, data: dict):

def load(self):
"""
Load the data from the database using np.load
Load the data from the database using np.load.
TODO: Change this method to use another type of storage.
Returns
-------
Expand Down Expand Up @@ -153,6 +157,8 @@ def _store(self, epoch: int):
This method loads and writes the data to the database in chunks.
TODO: Change this method to use another type of storage.
Parameters
----------
epoch : int
Expand Down

0 comments on commit 8d54648

Please sign in to comment.