Metadata-Version: 2.4
Name: laco-logging
Version: 1.0.0
Summary: Unified experiment logging (W&B, MLflow, TensorBoard) for laco.
Author-email: Kurt Stolle <kurt@khws.io>
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: laco>=1.0.0
Provides-Extra: wandb
Requires-Dist: wandb>=0.19; extra == "wandb"
Provides-Extra: mlflow
Requires-Dist: mlflow>=2.0; extra == "mlflow"
Provides-Extra: tensorboard
Requires-Dist: tensorboard>=2.0; extra == "tensorboard"
Provides-Extra: all
Requires-Dist: wandb>=0.19; extra == "all"
Requires-Dist: mlflow>=2.0; extra == "all"
Requires-Dist: tensorboard>=2.0; extra == "all"

# Laco-Logging

Unified experiment logging (W&B, MLflow, TensorBoard) for laco.

Part of the [laco](https://github.com/khwstolle/laco) project — see the [root README](../../README.md) for an overview.

## Installation

```bash
pip install laco-logging[all]
```

## Extras

| Extra | Installs |
|---|---|
| `laco-logging[wandb]` | W&B backend |
| `laco-logging[mlflow]` | MLflow backend |
| `laco-logging[tensorboard]` | TensorBoard backend |
| `laco-logging[all]` | All backends |

## Features

`log_config()`, `run()`, submodules `wandb`, `mlflow`, `tensorboard`

## Usage

See [`docs/index.md`](docs/index.md) for the full guide.
