neurai.manager package#
Submodules#
- class neurai.manager.ide_manager.ProgressData(value, desc)#
Bases:
object
when __register_progress_callback, the event will be passed.
- class neurai.manager.rng_manager.RngManager(rng=None, name='')#
Bases:
object
The base class for RngManager.
- Parameters:
rng (PRNGKey,) – the PRNGKey, by default default_rng.
name (str, optional) – the module name, by default None.
- class neurai.manager.var_manager.Variable(vm, collection, name)#
Bases:
object
A Variable object allows mutable access to a variable in a VariableDict.
Variables are identified by a collection (e.g., “batch_stats”) and a name (e.g., “moving_mean”). The value property gives access to the variable’s content.