Fix a typo in README (#4474)

This commit is contained in:
Muyang Li 2020-11-02 15:30:58 +08:00 committed by GitHub
parent 6ae4c6ec85
commit 169e8c3d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)