Remove Trainer from README.md (#18980)

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
This commit is contained in:
Gao, Xiang 2019-04-06 09:09:52 -07:00 committed by Facebook Github Bot
parent 13f03a42d2
commit 1497d45315

View File

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