valhalla commited on
Commit
55dd9ce
1 Parent(s): 5093e24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -1 +1,44 @@
1
- This is a **temporary** repo containing a converted HF checkpoint from the original Google checkpoint [here](https://console.cloud.google.com/storage/browser/t5-data/pretrained_models/t5x/longt5/tglobal_base).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language: en
4
+ ---
5
+
6
+ # LongT5 (transient-global attention, base-sized model)
7
+
8
+ LongT5 model pre-trained on English language. The model was introduced in the paper [LongT5: Efficient Text-To-Text Transformer for Long Sequences](https://arxiv.org/pdf/2112.07916.pdf) by Guo et al. and first released in [the LongT5 repository](https://github.com/google-research/longt5). All the model architecture and configuration can be found in [Flaxformer repository](https://github.com/google/flaxformer) which uses another Google research project repository [T5x](https://github.com/google-research/t5x).
9
+
10
+ Disclaimer: The team releasing LongT5 did not write a model card for this model so this model card has been written by the Hugging Face team.
11
+
12
+ ## Model description
13
+ LongT5 model is an encoder-decoder transformer pre-trained in a text-to-text denoising generative setting ([Pegasus-like generation pre-training](https://arxiv.org/pdf/1912.08777.pdf)). LongT5 model is an extension of [T5 model](https://arxiv.org/pdf/1910.10683.pdf), and it enables using one of the two different efficient attention mechanisms - (1) Local attention, or (2) Transient-Global attention. The usage of attention sparsity patterns allows the model to efficiently handle input sequence.
14
+
15
+ LongT5 is particularly effective when fine-tuned for text generation (summarization, question answering) which requires handling long input sequences (up to 16,384 tokens).
16
+
17
+ ## Intended uses & limitations
18
+
19
+ The model is mostly meant to be fine-tuned on a supervised dataset. See the [model hub](https://huggingface.co/models?search=longt5) to look for fine-tuned versions on a task that interests you.
20
+
21
+ ### How to use
22
+
23
+ ```python
24
+ from transformers import AutoTokenizer, LongT5Model
25
+
26
+ tokenizer = AutoTokenizer.from_pretrained("google/longt5-tglobal-base")
27
+ model = LongT5Model.from_pretrained("google/longt5-tglobal-base")
28
+
29
+ inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
30
+ outputs = model(**inputs)
31
+
32
+ last_hidden_states = outputs.last_hidden_state
33
+ ```
34
+
35
+ ### BibTeX entry and citation info
36
+
37
+ ```bibtex
38
+ @article{guo2021longt5,
39
+ title={LongT5: Efficient Text-To-Text Transformer for Long Sequences},
40
+ author={Guo, Mandy and Ainslie, Joshua and Uthus, David and Ontanon, Santiago and Ni, Jianmo and Sung, Yun-Hsuan and Yang, Yinfei},
41
+ journal={arXiv preprint arXiv:2112.07916},
42
+ year={2021}
43
+ }
44
+ ```