memorax.loggers.FileLogger#

class memorax.loggers.FileLogger[source]#

Bases: BaseLogger[FileLoggerState]

FileLogger(algorithm: str, environment: str, directory: str = ‘logs’)

algorithm: str#
environment: str#
directory: str = 'logs'#
init(cfg)[source]#
Return type:

FileLoggerState

Parameters:

cfg (dict)

log(state, data, step)[source]#
Return type:

FileLoggerState

Parameters:
  • state (FileLoggerState)

  • data (Any)

  • step (int)

emit(state)[source]#
Return type:

FileLoggerState

Parameters:

state (FileLoggerState)

finish(state)[source]#
Return type:

None

Parameters:

state (FileLoggerState)

classmethod __class_getitem__(params)#

Parameterizes a generic class.

At least, parameterizing a generic class is the main thing this method does. For example, for some generic class Foo, this is called when we do Foo[int] - there, with cls=Foo and params=int.

However, note that this method is also called when defining generic classes in the first place with class Foo(Generic[T]): ….

__init__(algorithm, environment, directory='logs')#
Parameters:
  • algorithm (str)

  • environment (str)

  • directory (str)

Return type:

None

replace(**updates)#

Returns a new object replacing the specified fields with new values.