From c77e66ef61c80f742dc7fb67c8aa6e0f78185175 Mon Sep 17 00:00:00 2001 From: Eric Storm Date: Tue, 5 Oct 2021 21:39:17 -0400 Subject: [PATCH] Fix typo in learn2learn example --- .../learn2learn/image_classification_imagenette_mini.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flash_examples/integrations/learn2learn/image_classification_imagenette_mini.py b/flash_examples/integrations/learn2learn/image_classification_imagenette_mini.py index 38bd6c2e7e..af6b51feb8 100644 --- a/flash_examples/integrations/learn2learn/image_classification_imagenette_mini.py +++ b/flash_examples/integrations/learn2learn/image_classification_imagenette_mini.py @@ -96,7 +96,7 @@ trainer = flash.Trainer( max_epochs=200, gpus=2, - acceletator="ddp_shared", + accelerator="ddp_shared", precision=16, ) trainer.finetune(model, datamodule=datamodule, strategy="no_freeze")