From 904158ac4dbce046dd02be8382fdb8e52f0e691c Mon Sep 17 00:00:00 2001 From: Christopher Goh Date: Mon, 7 Oct 2019 11:03:49 +0800 Subject: [PATCH] Rephrase forward method to reduce ambiguity --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e311e68a85..d49849da22 100644 --- a/README.md +++ b/README.md @@ -423,7 +423,7 @@ Here is a quick summary of what you should take care of when migrating from `pyt ### Models always output `tuples` -The main breaking change when migrating from `pytorch-pretrained-bert` to `transformers` is that the model's forward method always outputs a `tuple` with various elements depending on the model and the configuration parameters. +The main breaking change when migrating from `pytorch-pretrained-bert` to `transformers` is that every model's forward method always outputs a `tuple` with various elements depending on the model and the configuration parameters. The exact content of the tuples for each model is detailed in the models' docstrings and the [documentation](https://huggingface.co/transformers/).