neuraltrain.utils.WandbLoggerConfig

pydantic model neuraltrain.utils.WandbLoggerConfig[source][source]

Pydantic configuration for torch-lightning’s wandb logger. See https://lightning.ai/docs/pytorch/stable/extensions/generated/lightning.pytorch.loggers.WandbLogger.html. If you want to resume a run, you can use the id field to specify the run id, either in the config or in the build method.

Fields:
field name: str | None = None[source]
field group: str [Required][source]
field entity: str | None = None[source]
field project: str | None = None[source]
field offline: bool = False[source]
field host: str | None = None[source]
field id: str | None = None[source]
field dir: Path | None = None[source]
field anonymous: bool | None = None[source]
field log_model: str | bool = False[source]
field experiment: tp.Any | None = None[source]
field prefix: str = ''[source]
field resume: tp.Literal['allow', 'never', 'must'] = 'allow'[source]
build(save_dir: str | Path, xp_config: dict | BaseModel | None = None, run_id: str | None = None) Any[source][source]