From 4d87fd238ef06906b08b90196ad736a9c7ad2854 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Tue, 31 Aug 2021 11:09:29 +0300 Subject: [PATCH] Fix broken links (#55) --- docs/guides/frameworks/pytorch/pytorch_mnist.md | 2 +- docs/guides/frameworks/tensorboardx/tensorboardx.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/frameworks/pytorch/pytorch_mnist.md b/docs/guides/frameworks/pytorch/pytorch_mnist.md index d2dc9353..91a4968e 100644 --- a/docs/guides/frameworks/pytorch/pytorch_mnist.md +++ b/docs/guides/frameworks/pytorch/pytorch_mnist.md @@ -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. 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. * Uses **ClearML** automatic logging. * Calls the [Logger.report_scalar](../../../references/sdk/logger.md#report_scalar) method to demonstrate explicit reporting, diff --git a/docs/guides/frameworks/tensorboardx/tensorboardx.md b/docs/guides/frameworks/tensorboardx/tensorboardx.md index 679196b4..47b24b27 100644 --- a/docs/guides/frameworks/tensorboardx/tensorboardx.md +++ b/docs/guides/frameworks/tensorboardx/tensorboardx.md @@ -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. 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: * Scalars during training * Scalars and debug samples during testing