noether.core.schemas.trackers¶
Attributes¶
Classes¶
Base configuration for experiment trackers. All tracker configs should inherit from this class. |
|
Base configuration for experiment trackers. All tracker configs should inherit from this class. |
|
Schema for TrackioTracker configuration. |
|
Schema for TensorboardTracker configuration. |
Module Contents¶
- class noether.core.schemas.trackers.BaseTrackerConfig(/, **data)¶
Bases:
noether.core.schemas.lib._RegistryBaseBase configuration for experiment trackers. All tracker configs should inherit from this class.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- Parameters:
data (Any)
- class noether.core.schemas.trackers.WandBTrackerSchema(/, **data)¶
Bases:
BaseTrackerConfigBase configuration for experiment trackers. All tracker configs should inherit from this class.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- Parameters:
data (Any)
- class noether.core.schemas.trackers.TrackioTrackerSchema(/, **data)¶
Bases:
BaseTrackerConfigSchema for TrackioTracker configuration.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- Parameters:
data (Any)
- class noether.core.schemas.trackers.TensorboardTrackerSchema(/, **data)¶
Bases:
BaseTrackerConfigSchema for TensorboardTracker configuration.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- Parameters:
data (Any)
- noether.core.schemas.trackers.AnyTracker¶