đ Model Card for T5 11B
The T5 11B model reframes NLP tasks into a unified text - to - text format, enabling it to handle various tasks like machine translation, summarization, etc. with a single model structure.
đ Quick Start
Before transformers
v3.5.0, due to its immense size, t5-11b
required some special treatment.
If you're using transformers <= v3.4.0
, t5-11b
should be loaded with flag use_cdn
set to False
as follows:
t5 = transformers.T5ForConditionalGeneration.from_pretrained('t5-11b', use_cdn = False)
Secondly, a single GPU will most likely not have enough memory to even load the model into memory as the weights alone amount to over 40 GB.
- Model parallelism has to be used here to overcome this problem as is explained in this PR.
- DeepSpeed's ZeRO - Offload is another approach as explained in this post.
See the Hugging Face T5 docs and a Colab Notebook created by the model developers for more context.
⨠Features
- Unified Text - to - Text Format: The text - to - text framework allows using the same model, loss function, and hyperparameters on any NLP task, including machine translation, document summarization, question answering, and classification tasks (e.g., sentiment analysis). It can even be applied to regression tasks by training it to predict the string representation of a number.
- Multilingual Support: Supports English, French, Romanian, and German.
đĻ Installation
No specific installation steps are provided in the original document.
đģ Usage Examples
No code examples are provided in the original document.
đ Documentation
Model Details
Model Description
The developers of the Text - To - Text Transfer Transformer (T5) write:
With T5, we propose reframing all NLP tasks into a unified text - to - text format where the input and output are always text strings, in contrast to BERT - style models that can only output either a class label or a span of the input. Our text - to - text framework allows us to use the same model, loss function, and hyperparameters on any NLP task.
T5 - 11B is the checkpoint with 11 billion parameters.
- Developed by: Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, Peter J. Liu. See associated paper and GitHub repo
- Model type: Language model
- Language(s) (NLP): English, French, Romanian, German
- License: Apache 2.0
- Related Models: All T5 Checkpoints
- Resources for more information:
Uses
Direct Use and Downstream Use
The developers write in a blog post that the model:
Our text - to - text framework allows us to use the same model, loss function, and hyperparameters on any NLP task, including machine translation, document summarization, question answering, and classification tasks (e.g., sentiment analysis). We can even apply T5 to regression tasks by training it to predict the string representation of a number instead of the number itself.
See the blog post and research paper for further details.
Training Details
Training Data
The model is pre - trained on the Colossal Clean Crawled Corpus (C4), which was developed and released in the context of the same research paper as T5.
The model was pre - trained on a on a multi - task mixture of unsupervised (1.) and supervised tasks (2.).
Thereby, the following datasets were being used for (1.) and (2.):
- Datasets used for Unsupervised denoising objective:
- Datasets used for Supervised text - to - text language modeling objective
- Sentence acceptability judgment
- Sentiment analysis
- Paraphrasing/sentence similarity
- Natural language inference
- Sentence completion
- Word sense disambiguation
- Question answering
Training Procedure
In their abstract, the model developers write:
In this paper, we explore the landscape of transfer learning techniques for NLP by introducing a unified framework that converts every language problem into a text - to - text format. Our systematic study compares pre - training objectives, architectures, unlabeled datasets, transfer approaches, and other factors on dozens of language understanding tasks.
The framework introduced, the T5 framework, involves a training procedure that brings together the approaches studied in the paper. See the research paper for further details.
Evaluation
Testing Data, Factors & Metrics
The developers evaluated the model on 24 tasks, see the research paper for full details.
Results
For full results for T5 - 11B, see the research paper, Table 14.
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: Google Cloud TPU Pods
- Hours used: More information needed
- Cloud Provider: GCP
- Compute Region: More information needed
- Carbon Emitted: More information needed
Citation
BibTeX:
@article{2020t5,
author = {Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu},
title = {Exploring the Limits of Transfer Learning with a Unified Text - to - Text Transformer},
journal = {Journal of Machine Learning Research},
year = {2020},
volume = {21},
number = {140},
pages = {1 - 67},
url = {http://jmlr.org/papers/v21/20-074.html}
}
APA:
- Raffel, C., Shazeer, N., Roberts, A., Lee, K., Narang, S., Matena, M., ... & Liu, P. J. (2020). Exploring the limits of transfer learning with a unified text - to - text transformer. J. Mach. Learn. Res., 21(140), 1 - 67.
Model Card Authors
This model card was written by the team at Hugging Face.
đ§ Technical Details
The text - to - text framework of T5 reframes all NLP tasks into a unified format, allowing the use of the same model, loss function, and hyperparameters across various tasks. The model was pre - trained on a multi - task mixture of unsupervised and supervised tasks using specific datasets as described in the Training Details section.
đ License
The model is licensed under the Apache 2.0 license.