Remove Trainer from README.md (#18980)
authorGao, Xiang <qasdfgtyuiop@gmail.com>
Sat, 6 Apr 2019 16:09:52 +0000 (09:09 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Sat, 6 Apr 2019 16:12:50 +0000 (09:12 -0700)
Summary:
Trainer has been removed long time ago
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18980

Differential Revision: D14819855

Pulled By: ezyang

fbshipit-source-id: f62020e688ebf6663416aec7435bf1f531607941

README.md

index ad47813..9cb3156 100644 (file)
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ At a granular level, PyTorch is a library that consists of the following compone
 | **torch.autograd** | a tape-based automatic differentiation library that supports all differentiable Tensor operations in torch |
 | **torch.nn** | a neural networks library deeply integrated with autograd designed for maximum flexibility |
 | **torch.multiprocessing** | Python multiprocessing, but with magical memory sharing of torch Tensors across processes. Useful for data loading and Hogwild training |
-| **torch.utils** | DataLoader, Trainer and other utility functions for convenience |
+| **torch.utils** | DataLoader and other utility functions for convenience |
 
 Usually one uses PyTorch either as: