From 169e8c3d98dc2b17b79bc3746f5cea4754dd2339 Mon Sep 17 00:00:00 2001 From: Muyang Li Date: Mon, 2 Nov 2020 15:30:58 +0800 Subject: [PATCH] Fix a typo in README (#4474) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fea674bc39..33ee544802 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ trainer = pl.Trainer() trainer.fit(autoencoder, DataLoader(train), DataLoader(val)) ``` -#### And without changing a single line of code, you could run on GPU/TPUss +#### And without changing a single line of code, you could run on GPUs/TPUs ```python # 8 GPUs trainer = Trainer(max_epochs=1, gpus=8)