Small edits (#886)

This commit is contained in:
pollfly
2024-07-24 10:49:10 +03:00
committed by GitHub
parent 1a070e015c
commit e08cb72fac
9 changed files with 9 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ title: PyTorch Ignite ClearMLLogger
---
The `ignite` repository contains the [mnist_with_clearml_logger.py](https://github.com/pytorch/ignite/blob/master/examples/mnist/mnist_with_clearml_logger.py)
example script that uses [ignite](https://github.com/pytorch/ignite) and integrates **ClearMLLogger** and its [helper handlers](https://pytorch.org/ignite/generated/ignite.contrib.handlers.clearml_logger.html).
example script that uses [ignite](https://github.com/pytorch/ignite) and integrates **ClearMLLogger** and its [helper handlers](https://pytorch.org/ignite/v0.5.0.post2/generated/ignite.handlers.clearml_logger.html).
PyTorch Ignite supports a `ClearMLLogger` handler to log metrics, text, model / optimizer parameters, plots, and model
checkpoints during training and validation.

View File

@@ -196,7 +196,7 @@ object, setting the following optimization parameters:
## Running as a Service
The optimization can run as a service, if the `run_as_service` argument is set to `true`. For more information about
To run the optimization as a service, set the `run_as_service` argument to `true`. For more information about
running as a service, see [Services Mode](../../../clearml_agent/clearml_agent_services_mode.md).
```python
@@ -210,7 +210,7 @@ if args['run_as_service']:
## Optimize
The optimizer is ready. Set the report period and [start](../../../references/sdk/hpo_optimization_hyperparameteroptimizer.md#start)
it, providing the callback method to report the best performance.
it, providing the callback method to report the best performance:
```python
# report every 12 seconds, this is way too often, but we are testing here J