Skip to content

Commit 27e16cd

Browse files
alanhdufacebook-github-bot
authored andcommitted
Fix the PyTorch Profiler link in staticdocs (#820)
Summary: Pull Request resolved: #820 The extra `/` causes a 404 error if you actually click on the link Reviewed By: diego-urgell Differential Revision: D56848751 fbshipit-source-id: 7de31d2d80b40d65ee9fd7251aae4a4b1982f1fb
1 parent 44a7426 commit 27e16cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

torchtnt/framework/callbacks/dcp_saver.py

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

6060
class DistributedCheckpointSaver(BaseCheckpointer):
6161
"""
62-
A callback which periodically saves the application state during training using `Distributed Checkpoint <https://pytorch.org/docs/stable/distributed.checkpoint.html/>`_.
62+
A callback which periodically saves the application state during training using `Distributed Checkpoint <https://pytorch.org/docs/stable/distributed.checkpoint.html>`_.
6363
6464
This callback supplements the application state provided by :class:`torchtnt.unit.AppStateMixin`
6565
with the train progress, and train dataloader (if applicable).

torchtnt/framework/callbacks/pytorch_profiler.py

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

1616
class PyTorchProfiler(Callback):
1717
"""
18-
A callback which profiles user code using `PyTorch Profiler <https://pytorch.org/docs/stable/profiler.html/>`_.
18+
A callback which profiles user code using `PyTorch Profiler <https://pytorch.org/docs/stable/profiler.html>`_.
1919
2020
Args:
2121
profiler: a torch.profiler.profile context manager which will be used

0 commit comments

Comments
 (0)