Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitgr7 authored Mar 29, 2022
1 parent 9f63704 commit 16da186
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/extensions/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Plugins

.. include:: ../links.rst

Plugins allow custom integrations to the internals of the Trainer such as a custom precision, checkpointing or
Plugins allow custom integrations to the internals of the Trainer such as custom precision, checkpointing or
cluster environment implementation.

Under the hood, the Lightning Trainer is using plugins in the training routine, added automatically
Expand All @@ -23,7 +23,7 @@ There are three types of Plugins in Lightning with different responsibilities:
Precision Plugins
*****************

We provide precision plugins for the users so that they can benefit from numerical representations with lower precision than
We provide precision plugins for you so that they can benefit from numerical representations with lower precision than
32-bit floating-point or higher precision, such as 64-bit floating-point.

.. code-block:: python
Expand Down Expand Up @@ -63,7 +63,7 @@ CheckpointIO Plugins
********************

As part of our commitment to extensibility, we have abstracted Lightning's checkpointing logic into the :class:`~pytorch_lightning.plugins.io.CheckpointIO` plugin.
With this, users have the ability to customize the checkpointing logic to match the needs of their infrastructure.
With this, you have the ability to customize the checkpointing logic to match the needs of their infrastructure.

Below is a list of built-in plugins for checkpointing.

Expand All @@ -88,7 +88,7 @@ You could learn more about custom checkpointing with Lightning :ref:`here <custo
Cluster Environments
********************

Users can define the interface of their own cluster environment based on the requirements of their infrastructure.
You can define the interface of their own cluster environment based on the requirements of their infrastructure.

.. currentmodule:: pytorch_lightning.plugins.environments

Expand Down

0 comments on commit 16da186

Please sign in to comment.