From 49bb5b0c8189571605fb71da38169516167a1f42 Mon Sep 17 00:00:00 2001 From: Nathaniel D'Amours <88633026+NathanielDamours@users.noreply.github.com> Date: Wed, 6 Jul 2022 17:22:34 +0000 Subject: [PATCH 1/5] fix: typo initialize in app.py --- docs/source-app/code_samples/quickstart/hello_world/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-app/code_samples/quickstart/hello_world/app.py b/docs/source-app/code_samples/quickstart/hello_world/app.py index de82b5f351a5d..3c1b040104ded 100644 --- a/docs/source-app/code_samples/quickstart/hello_world/app.py +++ b/docs/source-app/code_samples/quickstart/hello_world/app.py @@ -12,5 +12,5 @@ def run(self): print("Hello World!") -# Step 3: Initalize a LightningApp with the LightningFlow you defined (in step 1) +# Step 3: Initialize a LightningApp with the LightningFlow you defined (in step 1) app = LightningApp(HelloWorld()) From d6be67db41ad2bb4ddb6badb31271eceb97e998a Mon Sep 17 00:00:00 2001 From: Nathaniel D'Amours <88633026+NathanielDamours@users.noreply.github.com> Date: Wed, 6 Jul 2022 17:24:26 +0000 Subject: [PATCH 2/5] fix: typo initialize in app_1.py --- docs/source-app/code_samples/quickstart/app/app_1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-app/code_samples/quickstart/app/app_1.py b/docs/source-app/code_samples/quickstart/app/app_1.py index 1fe011882ffbb..08102024893f8 100644 --- a/docs/source-app/code_samples/quickstart/app/app_1.py +++ b/docs/source-app/code_samples/quickstart/app/app_1.py @@ -88,5 +88,5 @@ def run(self): # Step 4: download a dataset to your local directory under `/data` download_data("https://pl-flash-data.s3.amazonaws.com/hymenoptera_data.zip", "./data") -# Initalize your Lightning app with 5 epochs +# Initialize your Lightning app with 5 epochs app = LightningApp(RootFlow(5, "./data/hymenoptera_data")) From a94d387bf5915c32c060d28b8192aa2447d5c85a Mon Sep 17 00:00:00 2001 From: Nathaniel D'Amours <88633026+NathanielDamours@users.noreply.github.com> Date: Wed, 6 Jul 2022 17:26:15 +0000 Subject: [PATCH 3/5] fix: typo initialize in checkpointing_basic.rst --- docs/source-pytorch/common/checkpointing_basic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-pytorch/common/checkpointing_basic.rst b/docs/source-pytorch/common/checkpointing_basic.rst index 6ff54c94245d2..c84c9559bdc6c 100644 --- a/docs/source-pytorch/common/checkpointing_basic.rst +++ b/docs/source-pytorch/common/checkpointing_basic.rst @@ -106,7 +106,7 @@ The LightningModule also has access to the Hyperparameters ---- -Initalize with other parameters +Initialize with other parameters =============================== If you used the *self.save_hyperparameters()* method in the init of the LightningModule, you can initialize the model with different hyperparameters. From b07382911e1a76864fcfdcfa15194be805644763 Mon Sep 17 00:00:00 2001 From: Nathaniel D'Amours <88633026+NathanielDamours@users.noreply.github.com> Date: Wed, 6 Jul 2022 17:27:38 +0000 Subject: [PATCH 4/5] fix: typo initialize in lightning_apps_intro.rst --- docs/source-app/pages/lightning_apps_intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-app/pages/lightning_apps_intro.rst b/docs/source-app/pages/lightning_apps_intro.rst index ba3c962f165a8..d326579fcba28 100644 --- a/docs/source-app/pages/lightning_apps_intro.rst +++ b/docs/source-app/pages/lightning_apps_intro.rst @@ -362,7 +362,7 @@ Implement the `configure_layout` method to connect them together: 5: Init the app object ^^^^^^^^^^^^^^^^^^^^^^ -Initalize an app object with the `TrainDeploy` component (this won't run the app yet): +Initialize an app object with the `TrainDeploy` component (this won't run the app yet): .. code:: python :emphasize-lines: 29 From b1e7dac53a075835a2891a24be9cea60574a5dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Wed, 20 Jul 2022 09:06:43 -0400 Subject: [PATCH 5/5] fix title underline --- docs/source-pytorch/common/checkpointing_basic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-pytorch/common/checkpointing_basic.rst b/docs/source-pytorch/common/checkpointing_basic.rst index c84c9559bdc6c..8a4834096c44d 100644 --- a/docs/source-pytorch/common/checkpointing_basic.rst +++ b/docs/source-pytorch/common/checkpointing_basic.rst @@ -107,7 +107,7 @@ The LightningModule also has access to the Hyperparameters ---- Initialize with other parameters -=============================== +================================ If you used the *self.save_hyperparameters()* method in the init of the LightningModule, you can initialize the model with different hyperparameters. .. code-block:: python