spacy-loggers


Namespacy-loggers JSON
Version 1.0.5 PyPI version JSON
download
home_pagehttps://github.com/explosion/spacy-loggers
SummaryLogging utilities for SpaCy
upload_time2023-09-11 12:26:52
maintainer
docs_urlNone
authorExplosion
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>

# spacy-loggers: Logging utilities for spaCy

[![PyPi Version](https://img.shields.io/pypi/v/spacy-loggers.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/spacy-loggers)

Starting with spaCy v3.2, alternate loggers are moved into a separate package
so that they can be added and updated independently from the core spaCy
library.

`spacy-loggers` currently provides loggers for:

- [Weights & Biases](https://www.wandb.com)
- [MLflow](https://www.mlflow.org/)
- [ClearML](https://www.clear.ml/)
- [PyTorch](https://pytorch.org/)
- [CuPy](https://github.com/cupy/cupy)

`spacy-loggers` also provides additional utility loggers to facilitate interoperation
between individual loggers.

If you'd like to add a new logger or logging option, please submit a PR to this
repo!

## Setup and installation

`spacy-loggers` should be installed automatically with spaCy v3.2+, so you
usually don't need to install it separately. You can install it with `pip` or
from the conda channel `conda-forge`:

```bash
pip install spacy-loggers
```

```bash
conda install -c conda-forge spacy-loggers
```

# Loggers

## WandbLogger

### Installation

This logger requires `wandb` to be installed and configured:

```bash
pip install wandb
wandb login
```

### Usage

`spacy.WandbLogger.v5` is a logger that sends the results of each training step
to the dashboard of the [Weights & Biases](https://www.wandb.com/) tool. To use
this logger, Weights & Biases should be installed, and you should be logged in.
The logger will send the full config file to W&B, as well as various system
information such as memory utilization, network traffic, disk IO, GPU
statistics, etc. This will also include information such as your hostname and
operating system, as well as the location of your Python executable.

`spacy.WandbLogger.v4` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).
However, starting with `spacy.WandbLogger.v5`, console logging must be activated
through the use of the [ChainLogger](#chainlogger). This allows the user to configure
the console logger's parameters according to their preferences.

**Note** that by default, the full (interpolated)
[training config](https://spacy.io/usage/training#config) is sent over to the
W&B dashboard. If you prefer to **exclude certain information** such as path
names, you can list those fields in "dot notation" in the
`remove_config_values` parameter. These fields will then be removed from the
config before uploading, but will otherwise remain in the config file stored
on your local system.

### Example config

```ini
[training.logger]
@loggers = "spacy.WandbLogger.v5"
project_name = "monitor_spacy_training"
remove_config_values = ["paths.train", "paths.dev", "corpora.train.path", "corpora.dev.path"]
log_dataset_dir = "corpus"
model_log_interval = 1000
```

| Name                   | Type                  | Description                                                                                                                                                                                                                      |
| ---------------------- | --------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `project_name`         | `str`                 | The name of the project in the Weights & Biases interface. The project will be created automatically if it doesn't exist yet.                                                                                                    |
| `remove_config_values` | `List[str]`           | A list of values to exclude from the config before it is uploaded to W&B (default: `[]`).                                                                                                                                        |
| `model_log_interval`   | `Optional[int]`       | Steps to wait between logging model checkpoints to the W&B dasboard (default: `None`). Added in `spacy.WandbLogger.v2`.                                                                                                          |
| `log_dataset_dir`      | `Optional[str]`       | Directory containing the dataset to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v2`.                                                                                                |
| `entity`               | `Optional[str]`       | An entity is a username or team name where you're sending runs. If you don't specify an entity, the run will be sent to your default entity, which is usually your username (default: `None`). Added in `spacy.WandbLogger.v3`.  |
| `run_name`             | `Optional[str]`       | The name of the run. If you don't specify a run name, the name will be created by the `wandb` library (default: `None`). Added in `spacy.WandbLogger.v3`.                                                                        |
| `log_best_dir`         | `Optional[str]`       | Directory containing the best trained model as saved by spaCy (by default in `training/model-best`), to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v4`.                            |
| `log_latest_dir`       | `Optional[str]`       | Directory containing the latest trained model as saved by spaCy (by default in `training/model-latest`), to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v4`.                        |
| `log_custom_stats`     | `Optional[List[str]]` | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.WandbLogger.v5`. |

## MLflowLogger

### Installation

This logger requires `mlflow` to be installed and configured:

```bash
pip install mlflow
```

### Usage

`spacy.MLflowLogger.v2` is a logger that tracks the results of each training step
using the [MLflow](https://www.mlflow.org/) tool. To use
this logger, MLflow should be installed. At the beginning of each model training
operation, the logger will initialize a new MLflow run and set it as the active
run under which metrics and parameters wil be logged. The logger will then log
the entire config file as parameters of the active run. After each training step,
the following actions are performed:

- The final score is logged under the metric `score`.
- Individual component scores are logged under their default names.
- Loss values of different components are logged with the `loss_` prefix.
- If the final score is higher than the previous best score (for the current run),
  the model artifact is additionally uploaded to MLflow. This action is only performed
  if the `output_path` argument is provided during the training pipeline initialization phase.

By default, the tracking API writes data into files in a local `./mlruns` directory.

`spacy.MLflowLogger.v1` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).
However, starting with `spacy.MLflowLogger.v2`, console logging must be activated
through the use of the [ChainLogger](#chainlogger). This allows the user to configure
the console logger's parameters according to their preferences.

**Note** that by default, the full (interpolated)
[training config](https://spacy.io/usage/training#config) is sent over to
MLflow. If you prefer to **exclude certain information** such as path
names, you can list those fields in "dot notation" in the
`remove_config_values` parameter. These fields will then be removed from the
config before uploading, but will otherwise remain in the config file stored
on your local system.

### Example config

```ini
[training.logger]
@loggers = "spacy.MLflowLogger.v2"
experiment_id = "1"
run_name = "with_fast_alignments"
nested = False
remove_config_values = ["paths.train", "paths.dev", "corpora.train.path", "corpora.dev.path"]
```

| Name                   | Type                       | Description                                                                                                                                                                                                                       |
| ---------------------- | -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `run_id`               | `Optional[str]`            | Unique ID of an existing MLflow run to which parameters and metrics are logged. Can be omitted if `experiment_id` and `run_id` are provided (default: `None`).                                                                    |
| `experiment_id`        | `Optional[str]`            | ID of an existing experiment under which to create the current run. Only applicable when `run_id` is `None` (default: `None`).                                                                                                    |
| `run_name`             | `Optional[str]`            | Name of new run. Only applicable when `run_id` is `None` (default: `None`).                                                                                                                                                       |
| `nested`               | `bool`                     | Controls whether run is nested in parent run. `True` creates a nested run (default: `False`).                                                                                                                                     |
| `tags`                 | `Optional[Dict[str, Any]]` | A dictionary of string keys and values to set as tags on the run. If a run is being resumed, these tags are set on the resumed run. If a new run is being created, these tags are set on the new run (default: `None`).           |
| `remove_config_values` | `List[str]`                | A list of values to exclude from the config before it is uploaded to MLflow (default: `[]`).                                                                                                                                      |
| `log_custom_stats`     | `Optional[List[str]]`      | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.MLflowLogger.v2`. |

## ClearMLLogger

### Installation

This logger requires `clearml` to be installed and configured:

```bash
pip install clearml
clearml-init
```

### Usage

`spacy.ClearMLLogger.v2` is a logger that tracks the results of each training step
using the [ClearML](https://www.clear.ml/) tool. To use
this logger, ClearML should be installed and you should have initialized (using the command above).
The logger will send all the gathered information to your ClearML server, either [the hosted free tier](https://app.clear.ml)
or the open source [self-hosted server](https://github.com/allegroai/clearml-server). This logger captures the following information, all of which is visible in the ClearML web UI:

- The full spaCy config file contents.
- Code information such as git repository, commit ID and uncommitted changes.
- Full console output.
- Miscellaneous info such as time, python version and hardware information.
- Output scalars:
  - The final score is logged under the scalar `score`.
  - Individual component scores are grouped together on one scalar plot (filterable using the web UI).
  - Loss values of different components are logged with the `loss_` prefix.

In addition to the above, the following artifacts can also be optionally captured:

- Best model directory (zipped).
- Latest model directory (zipped).
- Dataset used to train.
  - Versioned using ClearML Data and linked to under Configuration -> User Properties on the web UI.

`spacy.ClearMLLogger.v1` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).
However, starting with `spacy.ClearMLLogger.v2`, console logging must be activated
through the use of the [ChainLogger](#chainlogger). This allows the user to configure
the console logger's parameters according to their preferences.

**Note** that by default, the full (interpolated)
[training config](https://spacy.io/usage/training#config) is sent over to
ClearML. If you prefer to **exclude certain information** such as path
names, you can list those fields in "dot notation" in the
`remove_config_values` parameter. These fields will then be removed from the
config before uploading, but will otherwise remain in the config file stored
on your local system.

### Example config

```ini
[training.logger]
@loggers = "spacy.ClearMLLogger.v2"
project_name = "Hello ClearML!"
task_name = "My spaCy Task"
model_log_interval = 1000
log_best_dir = training/model-best
log_latest_dir = training/model-last
log_dataset_dir = corpus
remove_config_values = ["paths.train", "paths.dev", "corpora.train.path", "corpora.dev.path"]
```

| Name                   | Type                  | Description                                                                                                                                                                                                                        |
| ---------------------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `project_name`         | `str`                 | The name of the project in the ClearML interface. The project will be created automatically if it doesn't exist yet.                                                                                                               |
| `task_name`            | `str`                 | The name of the ClearML task. A task is an experiment that lives inside a project. Can be non-unique.                                                                                                                              |
| `remove_config_values` | `List[str]`           | A list of values to exclude from the config before it is uploaded to ClearML (default: `[]`).                                                                                                                                      |
| `model_log_interval`   | `Optional[int]`       | Steps to wait between logging model checkpoints to the ClearML dasboard (default: `None`). Will have no effect without also setting `log_best_dir` or `log_latest_dir`.                                                            |
| `log_dataset_dir`      | `Optional[str]`       | Directory containing the dataset to be logged and versioned as a [ClearML Dataset](https://clear.ml/docs/latest/docs/clearml_data/clearml_data/) (default: `None`).                                                                |
| `log_best_dir`         | `Optional[str]`       | Directory containing the best trained model as saved by spaCy (by default in `training/model-best`), to be logged and versioned as a ClearML artifact (default: `None`)                                                            |
| `log_latest_dir`       | `Optional[str]`       | Directory containing the latest trained model as saved by spaCy (by default in `training/model-last`), to be logged and versioned as a ClearML artifact (default: `None`)                                                          |
| `log_custom_stats`     | `Optional[List[str]]` | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.ClearMLLogger.v2`. |

## PyTorchLogger

### Installation

This logger requires `torch` to be installed:

```bash
pip install torch
```

### Usage

`spacy.PyTorchLogger.v1` is different from the other loggers above in that it does not act as a bridge between spaCy and
an external framework. Instead, it is used to query PyTorch-specific metrics and make them available to other loggers.
Therefore, it's primarily intended to be used with [ChainLogger](#chainlogger).

Whenever a logging checkpoint is reached, it queries statistics from the PyTorch backend and stores them in
the dictionary passed to it. Downstream loggers can thereafter lookup the statistics and log them to their
preferred framework.

The following PyTorch statistics are currently supported:

- [CUDA memory statistics](https://pytorch.org/docs/stable/generated/torch.cuda.memory_stats.html#torch.cuda.memory_stats)

### Example config

```ini
[training.logger]
@loggers = "spacy.ChainLogger.v1"
logger1 = {"@loggers": "spacy.PyTorchLogger.v1", "prefix": "pytorch", "device": "0", "cuda_mem_metric": "current"}
# Alternatively, you can use any other logger that provides the `log_custom_stats` parameter.
logger2 = {"@loggers": "spacy.LookupLogger.v1", "patterns": ["pytorch"]}
```

| Name              | Type  | Description                                                                                                                                                     |
| ----------------- | ----- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `prefix`          | `str` | All metric names are prefixed with this string using dot notation, e.g: `<prefix>.<metric>` (default: `pytorch`).                                               |
| `device`          | `int` | The identifier of the CUDA device (default: `0`).                                                                                                               |
| `cuda_mem_pool`   | `str` | One of the memory pool values specified in the PyTorch docs: `all`, `large_pool`, `small_pool` (default: `all`).                                                |
| `cuda_mem_metric` | `str` | One of the memory metric values specified in the PyTorch docs: `current`, `peak`, `allocated`, `freed`. To log all metrics, use `all` instead (default: `all`). |

## CupyLogger

### Installation

This logger requires `cupy` to be installed:

```bash
pip install cupy
```

### Usage

Similar to `PyTorchLogger`, `spacy.CupyLogger.v1` does not act as a bridge between spaCy and an external framework
but rather is used with the [ChainLogger](#chainlogger) to facilitate the flow of metrics to other loggers.
The `CupyLogger` queries statistics from the CuPy backend and stores them in the info dictionary passed to it. Downstream
loggers can thereafter lookup the statistics and log them to their preferred framework.

The following CuPy statistics are currently supported:

- [CUDA memory pool statistics](https://docs.cupy.dev/en/stable/user_guide/memory.html)

### Example config

```ini
[training.logger]
@loggers = "spacy.ChainLogger.v1"
logger1 = {"@loggers": "spacy.CupyLogger.v1", "prefix": "cupy"}
# Alternatively, you can use any other logger that provides the `log_custom_stats` parameter.
logger2 = {"@loggers": "spacy.LookupLogger.v1", "patterns": ["cupy"]}
```

| Name     | Type  | Description                                                                                                      |
| -------- | ----- | ---------------------------------------------------------------------------------------------------------------- |
| `prefix` | `str` | All metric names are prefixed with this string using dot notation, e.g: `<prefix>.<metric>` (default: `"cupy"`). |

# Utility Loggers

## ChainLogger

### Usage

This logger can be used to daisy-chain multiple loggers and execute them in-order. Loggers that are executed earlier in the chain
can pass information to those that come later by adding it to the dictionary that is passed to them.

Currently, up to 10 loggers can be chained together.

### Example config

```ini
[training.logger]
@loggers = "spacy.ChainLogger.v1"
logger1 = {"@loggers": "spacy.PyTorchLogger.v1"}
logger2 = {"@loggers": "spacy.ConsoleLogger.v1", "progress_bar": "true"}
```

| Name       | Type                 | Description                                        |
| ---------- | -------------------- | -------------------------------------------------- |
| `logger1`  | `Optional[Callable]` | The first logger in the chain (default: `None`).   |
| `logger2`  | `Optional[Callable]` | The second logger in the chain (default: `None`).  |
| `logger3`  | `Optional[Callable]` | The third logger in the chain (default: `None`).   |
| `logger4`  | `Optional[Callable]` | The fourth logger in the chain (default: `None`).  |
| `logger5`  | `Optional[Callable]` | The fifth logger in the chain (default: `None`).   |
| `logger6`  | `Optional[Callable]` | The sixth logger in the chain (default: `None`).   |
| `logger7`  | `Optional[Callable]` | The seventh logger in the chain (default: `None`). |
| `logger8`  | `Optional[Callable]` | The eighth logger in the chain (default: `None`).  |
| `logger9`  | `Optional[Callable]` | The ninth logger in the chain (default: `None`).   |
| `logger10` | `Optional[Callable]` | The tenth logger in the chain (default: `None`).   |

## LookupLogger

### Usage

This logger can be used to lookup statistics in the info dictionary and print them to `stdout`. It is primarily
intended to be used as a tool when developing new loggers.

### Example config

```ini
[training.logger]
@loggers = "spacy.ChainLogger.v1"
logger1 = {"@loggers": "spacy.PyTorchLogger.v1", "prefix": "pytorch"}
logger2 = {"@loggers": "spacy.LookupLogger.v1", "patterns": ["^[pP]ytorch"]}
```

| Name       | Type        | Description                                                                                          |
| ---------- | ----------- | ---------------------------------------------------------------------------------------------------- |
| `patterns` | `List[str]` | A list of regular expressions. If a statistic's name matches one of these, it's printed to `stdout`. |

## Bug reports and other issues

Please use [spaCy's issue tracker](https://github.com/explosion/spaCy/issues) to report a bug, or open a new thread on the
[discussion board](https://github.com/explosion/spaCy/discussions)
for any other issue.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/explosion/spacy-loggers",
    "name": "spacy-loggers",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Explosion",
    "author_email": "contact@explosion.ai",
    "download_url": "https://files.pythonhosted.org/packages/67/3d/926db774c9c98acf66cb4ed7faf6c377746f3e00b84b700d0868b95d0712/spacy-loggers-1.0.5.tar.gz",
    "platform": null,
    "description": "<a href=\"https://explosion.ai\"><img src=\"https://explosion.ai/assets/img/logo.svg\" width=\"125\" height=\"125\" align=\"right\" /></a>\n\n# spacy-loggers: Logging utilities for spaCy\n\n[![PyPi Version](https://img.shields.io/pypi/v/spacy-loggers.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/spacy-loggers)\n\nStarting with spaCy v3.2, alternate loggers are moved into a separate package\nso that they can be added and updated independently from the core spaCy\nlibrary.\n\n`spacy-loggers` currently provides loggers for:\n\n- [Weights & Biases](https://www.wandb.com)\n- [MLflow](https://www.mlflow.org/)\n- [ClearML](https://www.clear.ml/)\n- [PyTorch](https://pytorch.org/)\n- [CuPy](https://github.com/cupy/cupy)\n\n`spacy-loggers` also provides additional utility loggers to facilitate interoperation\nbetween individual loggers.\n\nIf you'd like to add a new logger or logging option, please submit a PR to this\nrepo!\n\n## Setup and installation\n\n`spacy-loggers` should be installed automatically with spaCy v3.2+, so you\nusually don't need to install it separately. You can install it with `pip` or\nfrom the conda channel `conda-forge`:\n\n```bash\npip install spacy-loggers\n```\n\n```bash\nconda install -c conda-forge spacy-loggers\n```\n\n# Loggers\n\n## WandbLogger\n\n### Installation\n\nThis logger requires `wandb` to be installed and configured:\n\n```bash\npip install wandb\nwandb login\n```\n\n### Usage\n\n`spacy.WandbLogger.v5` is a logger that sends the results of each training step\nto the dashboard of the [Weights & Biases](https://www.wandb.com/) tool. To use\nthis logger, Weights & Biases should be installed, and you should be logged in.\nThe logger will send the full config file to W&B, as well as various system\ninformation such as memory utilization, network traffic, disk IO, GPU\nstatistics, etc. This will also include information such as your hostname and\noperating system, as well as the location of your Python executable.\n\n`spacy.WandbLogger.v4` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).\nHowever, starting with `spacy.WandbLogger.v5`, console logging must be activated\nthrough the use of the [ChainLogger](#chainlogger). This allows the user to configure\nthe console logger's parameters according to their preferences.\n\n**Note** that by default, the full (interpolated)\n[training config](https://spacy.io/usage/training#config) is sent over to the\nW&B dashboard. If you prefer to **exclude certain information** such as path\nnames, you can list those fields in \"dot notation\" in the\n`remove_config_values` parameter. These fields will then be removed from the\nconfig before uploading, but will otherwise remain in the config file stored\non your local system.\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.WandbLogger.v5\"\nproject_name = \"monitor_spacy_training\"\nremove_config_values = [\"paths.train\", \"paths.dev\", \"corpora.train.path\", \"corpora.dev.path\"]\nlog_dataset_dir = \"corpus\"\nmodel_log_interval = 1000\n```\n\n| Name                   | Type                  | Description                                                                                                                                                                                                                      |\n| ---------------------- | --------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `project_name`         | `str`                 | The name of the project in the Weights & Biases interface. The project will be created automatically if it doesn't exist yet.                                                                                                    |\n| `remove_config_values` | `List[str]`           | A list of values to exclude from the config before it is uploaded to W&B (default: `[]`).                                                                                                                                        |\n| `model_log_interval`   | `Optional[int]`       | Steps to wait between logging model checkpoints to the W&B dasboard (default: `None`). Added in `spacy.WandbLogger.v2`.                                                                                                          |\n| `log_dataset_dir`      | `Optional[str]`       | Directory containing the dataset to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v2`.                                                                                                |\n| `entity`               | `Optional[str]`       | An entity is a username or team name where you're sending runs. If you don't specify an entity, the run will be sent to your default entity, which is usually your username (default: `None`). Added in `spacy.WandbLogger.v3`.  |\n| `run_name`             | `Optional[str]`       | The name of the run. If you don't specify a run name, the name will be created by the `wandb` library (default: `None`). Added in `spacy.WandbLogger.v3`.                                                                        |\n| `log_best_dir`         | `Optional[str]`       | Directory containing the best trained model as saved by spaCy (by default in `training/model-best`), to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v4`.                            |\n| `log_latest_dir`       | `Optional[str]`       | Directory containing the latest trained model as saved by spaCy (by default in `training/model-latest`), to be logged and versioned as a W&B artifact (default: `None`). Added in `spacy.WandbLogger.v4`.                        |\n| `log_custom_stats`     | `Optional[List[str]]` | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.WandbLogger.v5`. |\n\n## MLflowLogger\n\n### Installation\n\nThis logger requires `mlflow` to be installed and configured:\n\n```bash\npip install mlflow\n```\n\n### Usage\n\n`spacy.MLflowLogger.v2` is a logger that tracks the results of each training step\nusing the [MLflow](https://www.mlflow.org/) tool. To use\nthis logger, MLflow should be installed. At the beginning of each model training\noperation, the logger will initialize a new MLflow run and set it as the active\nrun under which metrics and parameters wil be logged. The logger will then log\nthe entire config file as parameters of the active run. After each training step,\nthe following actions are performed:\n\n- The final score is logged under the metric `score`.\n- Individual component scores are logged under their default names.\n- Loss values of different components are logged with the `loss_` prefix.\n- If the final score is higher than the previous best score (for the current run),\n  the model artifact is additionally uploaded to MLflow. This action is only performed\n  if the `output_path` argument is provided during the training pipeline initialization phase.\n\nBy default, the tracking API writes data into files in a local `./mlruns` directory.\n\n`spacy.MLflowLogger.v1` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).\nHowever, starting with `spacy.MLflowLogger.v2`, console logging must be activated\nthrough the use of the [ChainLogger](#chainlogger). This allows the user to configure\nthe console logger's parameters according to their preferences.\n\n**Note** that by default, the full (interpolated)\n[training config](https://spacy.io/usage/training#config) is sent over to\nMLflow. If you prefer to **exclude certain information** such as path\nnames, you can list those fields in \"dot notation\" in the\n`remove_config_values` parameter. These fields will then be removed from the\nconfig before uploading, but will otherwise remain in the config file stored\non your local system.\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.MLflowLogger.v2\"\nexperiment_id = \"1\"\nrun_name = \"with_fast_alignments\"\nnested = False\nremove_config_values = [\"paths.train\", \"paths.dev\", \"corpora.train.path\", \"corpora.dev.path\"]\n```\n\n| Name                   | Type                       | Description                                                                                                                                                                                                                       |\n| ---------------------- | -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `run_id`               | `Optional[str]`            | Unique ID of an existing MLflow run to which parameters and metrics are logged. Can be omitted if `experiment_id` and `run_id` are provided (default: `None`).                                                                    |\n| `experiment_id`        | `Optional[str]`            | ID of an existing experiment under which to create the current run. Only applicable when `run_id` is `None` (default: `None`).                                                                                                    |\n| `run_name`             | `Optional[str]`            | Name of new run. Only applicable when `run_id` is `None` (default: `None`).                                                                                                                                                       |\n| `nested`               | `bool`                     | Controls whether run is nested in parent run. `True` creates a nested run (default: `False`).                                                                                                                                     |\n| `tags`                 | `Optional[Dict[str, Any]]` | A dictionary of string keys and values to set as tags on the run. If a run is being resumed, these tags are set on the resumed run. If a new run is being created, these tags are set on the new run (default: `None`).           |\n| `remove_config_values` | `List[str]`                | A list of values to exclude from the config before it is uploaded to MLflow (default: `[]`).                                                                                                                                      |\n| `log_custom_stats`     | `Optional[List[str]]`      | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.MLflowLogger.v2`. |\n\n## ClearMLLogger\n\n### Installation\n\nThis logger requires `clearml` to be installed and configured:\n\n```bash\npip install clearml\nclearml-init\n```\n\n### Usage\n\n`spacy.ClearMLLogger.v2` is a logger that tracks the results of each training step\nusing the [ClearML](https://www.clear.ml/) tool. To use\nthis logger, ClearML should be installed and you should have initialized (using the command above).\nThe logger will send all the gathered information to your ClearML server, either [the hosted free tier](https://app.clear.ml)\nor the open source [self-hosted server](https://github.com/allegroai/clearml-server). This logger captures the following information, all of which is visible in the ClearML web UI:\n\n- The full spaCy config file contents.\n- Code information such as git repository, commit ID and uncommitted changes.\n- Full console output.\n- Miscellaneous info such as time, python version and hardware information.\n- Output scalars:\n  - The final score is logged under the scalar `score`.\n  - Individual component scores are grouped together on one scalar plot (filterable using the web UI).\n  - Loss values of different components are logged with the `loss_` prefix.\n\nIn addition to the above, the following artifacts can also be optionally captured:\n\n- Best model directory (zipped).\n- Latest model directory (zipped).\n- Dataset used to train.\n  - Versioned using ClearML Data and linked to under Configuration -> User Properties on the web UI.\n\n`spacy.ClearMLLogger.v1` and below automatically call the [default console logger](https://spacy.io/api/top-level#ConsoleLogger).\nHowever, starting with `spacy.ClearMLLogger.v2`, console logging must be activated\nthrough the use of the [ChainLogger](#chainlogger). This allows the user to configure\nthe console logger's parameters according to their preferences.\n\n**Note** that by default, the full (interpolated)\n[training config](https://spacy.io/usage/training#config) is sent over to\nClearML. If you prefer to **exclude certain information** such as path\nnames, you can list those fields in \"dot notation\" in the\n`remove_config_values` parameter. These fields will then be removed from the\nconfig before uploading, but will otherwise remain in the config file stored\non your local system.\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.ClearMLLogger.v2\"\nproject_name = \"Hello ClearML!\"\ntask_name = \"My spaCy Task\"\nmodel_log_interval = 1000\nlog_best_dir = training/model-best\nlog_latest_dir = training/model-last\nlog_dataset_dir = corpus\nremove_config_values = [\"paths.train\", \"paths.dev\", \"corpora.train.path\", \"corpora.dev.path\"]\n```\n\n| Name                   | Type                  | Description                                                                                                                                                                                                                        |\n| ---------------------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `project_name`         | `str`                 | The name of the project in the ClearML interface. The project will be created automatically if it doesn't exist yet.                                                                                                               |\n| `task_name`            | `str`                 | The name of the ClearML task. A task is an experiment that lives inside a project. Can be non-unique.                                                                                                                              |\n| `remove_config_values` | `List[str]`           | A list of values to exclude from the config before it is uploaded to ClearML (default: `[]`).                                                                                                                                      |\n| `model_log_interval`   | `Optional[int]`       | Steps to wait between logging model checkpoints to the ClearML dasboard (default: `None`). Will have no effect without also setting `log_best_dir` or `log_latest_dir`.                                                            |\n| `log_dataset_dir`      | `Optional[str]`       | Directory containing the dataset to be logged and versioned as a [ClearML Dataset](https://clear.ml/docs/latest/docs/clearml_data/clearml_data/) (default: `None`).                                                                |\n| `log_best_dir`         | `Optional[str]`       | Directory containing the best trained model as saved by spaCy (by default in `training/model-best`), to be logged and versioned as a ClearML artifact (default: `None`)                                                            |\n| `log_latest_dir`       | `Optional[str]`       | Directory containing the latest trained model as saved by spaCy (by default in `training/model-last`), to be logged and versioned as a ClearML artifact (default: `None`)                                                          |\n| `log_custom_stats`     | `Optional[List[str]]` | A list of regular expressions that will be applied to the info dictionary passed to the logger (default: `None`). Statistics and metrics that match these regexps will be automatically logged. Added in `spacy.ClearMLLogger.v2`. |\n\n## PyTorchLogger\n\n### Installation\n\nThis logger requires `torch` to be installed:\n\n```bash\npip install torch\n```\n\n### Usage\n\n`spacy.PyTorchLogger.v1` is different from the other loggers above in that it does not act as a bridge between spaCy and\nan external framework. Instead, it is used to query PyTorch-specific metrics and make them available to other loggers.\nTherefore, it's primarily intended to be used with [ChainLogger](#chainlogger).\n\nWhenever a logging checkpoint is reached, it queries statistics from the PyTorch backend and stores them in\nthe dictionary passed to it. Downstream loggers can thereafter lookup the statistics and log them to their\npreferred framework.\n\nThe following PyTorch statistics are currently supported:\n\n- [CUDA memory statistics](https://pytorch.org/docs/stable/generated/torch.cuda.memory_stats.html#torch.cuda.memory_stats)\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.ChainLogger.v1\"\nlogger1 = {\"@loggers\": \"spacy.PyTorchLogger.v1\", \"prefix\": \"pytorch\", \"device\": \"0\", \"cuda_mem_metric\": \"current\"}\n# Alternatively, you can use any other logger that provides the `log_custom_stats` parameter.\nlogger2 = {\"@loggers\": \"spacy.LookupLogger.v1\", \"patterns\": [\"pytorch\"]}\n```\n\n| Name              | Type  | Description                                                                                                                                                     |\n| ----------------- | ----- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `prefix`          | `str` | All metric names are prefixed with this string using dot notation, e.g: `<prefix>.<metric>` (default: `pytorch`).                                               |\n| `device`          | `int` | The identifier of the CUDA device (default: `0`).                                                                                                               |\n| `cuda_mem_pool`   | `str` | One of the memory pool values specified in the PyTorch docs: `all`, `large_pool`, `small_pool` (default: `all`).                                                |\n| `cuda_mem_metric` | `str` | One of the memory metric values specified in the PyTorch docs: `current`, `peak`, `allocated`, `freed`. To log all metrics, use `all` instead (default: `all`). |\n\n## CupyLogger\n\n### Installation\n\nThis logger requires `cupy` to be installed:\n\n```bash\npip install cupy\n```\n\n### Usage\n\nSimilar to `PyTorchLogger`, `spacy.CupyLogger.v1` does not act as a bridge between spaCy and an external framework\nbut rather is used with the [ChainLogger](#chainlogger) to facilitate the flow of metrics to other loggers.\nThe `CupyLogger` queries statistics from the CuPy backend and stores them in the info dictionary passed to it. Downstream\nloggers can thereafter lookup the statistics and log them to their preferred framework.\n\nThe following CuPy statistics are currently supported:\n\n- [CUDA memory pool statistics](https://docs.cupy.dev/en/stable/user_guide/memory.html)\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.ChainLogger.v1\"\nlogger1 = {\"@loggers\": \"spacy.CupyLogger.v1\", \"prefix\": \"cupy\"}\n# Alternatively, you can use any other logger that provides the `log_custom_stats` parameter.\nlogger2 = {\"@loggers\": \"spacy.LookupLogger.v1\", \"patterns\": [\"cupy\"]}\n```\n\n| Name     | Type  | Description                                                                                                      |\n| -------- | ----- | ---------------------------------------------------------------------------------------------------------------- |\n| `prefix` | `str` | All metric names are prefixed with this string using dot notation, e.g: `<prefix>.<metric>` (default: `\"cupy\"`). |\n\n# Utility Loggers\n\n## ChainLogger\n\n### Usage\n\nThis logger can be used to daisy-chain multiple loggers and execute them in-order. Loggers that are executed earlier in the chain\ncan pass information to those that come later by adding it to the dictionary that is passed to them.\n\nCurrently, up to 10 loggers can be chained together.\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.ChainLogger.v1\"\nlogger1 = {\"@loggers\": \"spacy.PyTorchLogger.v1\"}\nlogger2 = {\"@loggers\": \"spacy.ConsoleLogger.v1\", \"progress_bar\": \"true\"}\n```\n\n| Name       | Type                 | Description                                        |\n| ---------- | -------------------- | -------------------------------------------------- |\n| `logger1`  | `Optional[Callable]` | The first logger in the chain (default: `None`).   |\n| `logger2`  | `Optional[Callable]` | The second logger in the chain (default: `None`).  |\n| `logger3`  | `Optional[Callable]` | The third logger in the chain (default: `None`).   |\n| `logger4`  | `Optional[Callable]` | The fourth logger in the chain (default: `None`).  |\n| `logger5`  | `Optional[Callable]` | The fifth logger in the chain (default: `None`).   |\n| `logger6`  | `Optional[Callable]` | The sixth logger in the chain (default: `None`).   |\n| `logger7`  | `Optional[Callable]` | The seventh logger in the chain (default: `None`). |\n| `logger8`  | `Optional[Callable]` | The eighth logger in the chain (default: `None`).  |\n| `logger9`  | `Optional[Callable]` | The ninth logger in the chain (default: `None`).   |\n| `logger10` | `Optional[Callable]` | The tenth logger in the chain (default: `None`).   |\n\n## LookupLogger\n\n### Usage\n\nThis logger can be used to lookup statistics in the info dictionary and print them to `stdout`. It is primarily\nintended to be used as a tool when developing new loggers.\n\n### Example config\n\n```ini\n[training.logger]\n@loggers = \"spacy.ChainLogger.v1\"\nlogger1 = {\"@loggers\": \"spacy.PyTorchLogger.v1\", \"prefix\": \"pytorch\"}\nlogger2 = {\"@loggers\": \"spacy.LookupLogger.v1\", \"patterns\": [\"^[pP]ytorch\"]}\n```\n\n| Name       | Type        | Description                                                                                          |\n| ---------- | ----------- | ---------------------------------------------------------------------------------------------------- |\n| `patterns` | `List[str]` | A list of regular expressions. If a statistic's name matches one of these, it's printed to `stdout`. |\n\n## Bug reports and other issues\n\nPlease use [spaCy's issue tracker](https://github.com/explosion/spaCy/issues) to report a bug, or open a new thread on the\n[discussion board](https://github.com/explosion/spaCy/discussions)\nfor any other issue.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Logging utilities for SpaCy",
    "version": "1.0.5",
    "project_urls": {
        "Homepage": "https://github.com/explosion/spacy-loggers"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3378d1a1a026ef3af911159398c939b1509d5c36fe524c7b644f34a5146c4e16",
                "md5": "0ca5edccbac6d0a308fcc82ebee35d2b",
                "sha256": "196284c9c446cc0cdb944005384270d775fdeaf4f494d8e269466cfa497ef645"
            },
            "downloads": -1,
            "filename": "spacy_loggers-1.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0ca5edccbac6d0a308fcc82ebee35d2b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 22343,
            "upload_time": "2023-09-11T12:26:50",
            "upload_time_iso_8601": "2023-09-11T12:26:50.586554Z",
            "url": "https://files.pythonhosted.org/packages/33/78/d1a1a026ef3af911159398c939b1509d5c36fe524c7b644f34a5146c4e16/spacy_loggers-1.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "673d926db774c9c98acf66cb4ed7faf6c377746f3e00b84b700d0868b95d0712",
                "md5": "dcfbd5e836b9cf3a7352cd9c67b2da52",
                "sha256": "d60b0bdbf915a60e516cc2e653baeff946f0cfc461b452d11a4d5458c6fe5f24"
            },
            "downloads": -1,
            "filename": "spacy-loggers-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "dcfbd5e836b9cf3a7352cd9c67b2da52",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 20811,
            "upload_time": "2023-09-11T12:26:52",
            "upload_time_iso_8601": "2023-09-11T12:26:52.323465Z",
            "url": "https://files.pythonhosted.org/packages/67/3d/926db774c9c98acf66cb4ed7faf6c377746f3e00b84b700d0868b95d0712/spacy-loggers-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-11 12:26:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "explosion",
    "github_project": "spacy-loggers",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "spacy-loggers"
}
        
Elapsed time: 0.10910s