From 1497d453157f022bed322bc5d60609118f4256cc Mon Sep 17 00:00:00 2001 From: "Gao, Xiang" Date: Sat, 6 Apr 2019 09:09:52 -0700 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad47813273302d..9cb31562cdc3bf 100644 --- 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: