Skip to content

Commit

Permalink
Fix dead links to Tensorboard (#6075)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
alex-mccarthy-unity authored Mar 9, 2024
1 parent f6486fc commit b9ac3f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Background-PyTorch.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ One component of training models with PyTorch is setting the values of
certain model attributes (called _hyperparameters_). Finding the right values of
these hyperparameters can require a few iterations. Consequently, we leverage a
visualization tool called
[TensorBoard](https://www.tensorflow.org/programmers_guide/summaries_and_tensorboard).
[TensorBoard](https://www.tensorflow.org/tensorboard).
It allows the visualization of certain agent attributes (e.g. reward) throughout
training which can be helpful in both building intuitions for the different
hyperparameters and setting the optimal values for your Unity environment. We
Expand Down
2 changes: 1 addition & 1 deletion docs/Using-Tensorboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

The `mlagents-learn` command saves training statistics to a folder named
`results`, organized by the `run-id` value you assign to a training session.
Expand Down
4 changes: 4 additions & 0 deletions markdown-link-check.full.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
{
"pattern": "https://www.researchgate.net/",
"comment": "Issue with GHE certs / firewall"
},
{
"pattern": "https://www.tensorflow.org/",
"comment": "Valid links failing with errors like 'https://www.tensorflow.org/tensorboard → Status: 0 Error: Exceeded maxRedirects. Probably stuck in a redirect loop'"
}
]
}

0 comments on commit b9ac3f1

Please sign in to comment.