Skip to content

Commit b9ac3f1

Browse files
Fix dead links to Tensorboard (#6075)
Ignore spurious dead links to tensorflow.org pages, since we're seeing an infinite redirect for some reason that doesn't reproduce in the browser or with `curl`.
1 parent f6486fc commit b9ac3f1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/Background-PyTorch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ One component of training models with PyTorch is setting the values of
2424
certain model attributes (called _hyperparameters_). Finding the right values of
2525
these hyperparameters can require a few iterations. Consequently, we leverage a
2626
visualization tool called
27-
[TensorBoard](https://www.tensorflow.org/programmers_guide/summaries_and_tensorboard).
27+
[TensorBoard](https://www.tensorflow.org/tensorboard).
2828
It allows the visualization of certain agent attributes (e.g. reward) throughout
2929
training which can be helpful in both building intuitions for the different
3030
hyperparameters and setting the optimal values for your Unity environment. We

docs/Using-Tensorboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The ML-Agents Toolkit saves statistics during learning session that you can view
44
with a TensorFlow utility named,
5-
[TensorBoard](https://www.tensorflow.org/programmers_guide/summaries_and_tensorboard).
5+
[TensorBoard](https://www.tensorflow.org/tensorboard).
66

77
The `mlagents-learn` command saves training statistics to a folder named
88
`results`, organized by the `run-id` value you assign to a training session.

markdown-link-check.full.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
{
2424
"pattern": "https://www.researchgate.net/",
2525
"comment": "Issue with GHE certs / firewall"
26+
},
27+
{
28+
"pattern": "https://www.tensorflow.org/",
29+
"comment": "Valid links failing with errors like 'https://www.tensorflow.org/tensorboard → Status: 0 Error: Exceeded maxRedirects. Probably stuck in a redirect loop'"
2630
}
2731
]
2832
}

0 commit comments

Comments
 (0)