Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dead links to Tensorboard #6075

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'"
}
]
}
Loading