diff --git a/beginner_source/profiler.py b/beginner_source/profiler.py index b395edbaca..0b69009720 100644 --- a/beginner_source/profiler.py +++ b/beginner_source/profiler.py @@ -2,7 +2,7 @@ Profiling your PyTorch Module ----------------------------- -**Author:** `Suraj Subramanian `_ +**Author:** `Suraj Subramanian `_ PyTorch includes a profiler API that is useful to identify the time and memory costs of various PyTorch operations in your code. Profiler can be @@ -316,6 +316,6 @@ def forward(self, input, mask): # We have seen how Profiler can be used to investigate time and memory bottlenecks in PyTorch models. # Read more about Profiler here: # -# - `Profiler Usage Recipe `__ +# - `Profiler Usage Recipe `__ # - `Profiling RPC-Based Workloads `__ # - `Profiler API Docs `__