noether.core.trackers.wandb_tracker¶
Attributes¶
Classes¶
Base configuration for experiment trackers. All tracker configs should inherit from this class. |
|
Weights and Biases tracker. |
Module Contents¶
- noether.core.trackers.wandb_tracker.WANDB_IMPORT_ERROR = None¶
- class noether.core.trackers.wandb_tracker.WandBTrackerSchema(/, **data)¶
Bases:
noether.core.trackers.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.trackers.wandb_tracker.WandBTracker(tracker_config, **kwargs)¶
Bases:
noether.core.trackers.BaseTrackerWeights and Biases tracker.
Example config:
- kind: noether.core.trackers.WandBTracker mode: online entity: my_entity project: my_project
- Parameters:
tracker_config (WandBTrackerSchema) – Configuration for the WandBTracker. See
WandBTrackerSchemafor available options including mode, entity, and project.**kwargs – Additional keyword arguments passed to the parent class.
- MODES = ['disabled', 'online', 'offline']¶
- mode¶
- entity¶
- project¶
- tags¶