Fix broken links (#55)

This commit is contained in:
pollfly 2021-08-31 11:09:29 +03:00 committed by GitHub
parent 4d096f6086
commit 4d87fd238e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ The [pytorch_mnist.py](https://github.com/allegroai/clearml/blob/master/examples
demonstrates the integration of **ClearML** into code that uses PyTorch. demonstrates the integration of **ClearML** into code that uses PyTorch.
The example script does the following: The example script does the following:
* Trains a simple deep neural network on the PyTorch built-in [MNIST](https://pytorch.org/docs/stable/torchvision/datasets.html#mnist) * Trains a simple deep neural network on the PyTorch built-in [MNIST](https://pytorch.org/vision/stable/datasets.html#mnist)
dataset. dataset.
* Uses **ClearML** automatic logging. * Uses **ClearML** automatic logging.
* Calls the [Logger.report_scalar](../../../references/sdk/logger.md#report_scalar) method to demonstrate explicit reporting, * Calls the [Logger.report_scalar](../../../references/sdk/logger.md#report_scalar) method to demonstrate explicit reporting,

View File

@ -6,7 +6,7 @@ The [pytorch_tensorboardX.py](https://github.com/allegroai/clearml/blob/master/e
example demonstrates the integration of **ClearML** into code that uses PyTorch and TensorBoardX. example demonstrates the integration of **ClearML** into code that uses PyTorch and TensorBoardX.
The script does the following: The script does the following:
1. Trains a simple deep neural network on the PyTorch built-in [MNIST](https://pytorch.org/docs/stable/torchvision/datasets.html#mnist) dataset. 1. Trains a simple deep neural network on the PyTorch built-in [MNIST](https://pytorch.org/vision/stable/datasets.html#mnist) dataset.
1. Creates a TensorBoardX `SummaryWriter` object to log: 1. Creates a TensorBoardX `SummaryWriter` object to log:
* Scalars during training * Scalars during training
* Scalars and debug samples during testing * Scalars and debug samples during testing