Longformer finetuning on TPUs IndexError: tuple index out of range
See original GitHub issueEnvironment info
transformers
version: 3.0.2- Platform: Google Colab
- Python version: 3.6
- PyTorch version (GPU?):1.6.0+cu101
- Tensorflow version (GPU?): 2.3.0
- Using GPU in script?: No
- Using distributed or parallel set-up in script?: Yes. XLA
Who can help
Longformer/Reformer: @patrickvonplaten
Information
Model I am using (Bert, XLNet …): longformer: allenai/longformer-large-4096
The problem arises when using:
- the official example scripts: (give details below)
- my own modified scripts: (give details below)
The tasks I am working on is:
- an official GLUE/SQUaD task: (give the name)
- my own task or dataset: (give details below)
To reproduce
Steps to reproduce the behavior: My Model
class LongFormerBaseUncased(nn.Module):
def __init__(self):
super(LongFormerBaseUncased, self).__init__()
self.bert = transformers.LongformerModel.from_pretrained(
"allenai/longformer-large-4096",
gradient_checkpointing=True
)
self.bert_drop = nn.Dropout(config.dropout)
self.out = nn.Linear(1024, config.output_num_classes)
def forward(self, ids, mask):
_, o2 = self.bert(ids, attention_mask = mask)
bo = self.bert_drop(o2)
output = self.out(bo)
return output
tokenizer = transformers.LongformerTokenizer.from_pretrained(
"allenai/longformer-base-4096"
)
text = "Very Long text"
tokenized = self.tokenizer.tokenize(text)
inputs = self.tokenizer.encode_plus(
tokenized,
is_pretokenized=True,
max_length=4096,
pad_to_max_length=True,
truncation=True,
)
ids = inputs["input_ids"]
mask = inputs["attention_mask"]
ids = ids.to(device, dtype=torch.long)
mask = mask.to(device, dtype=torch.long)
targets = targets.to(device, dtype=torch.float)
#This throws the error
outputs = model(ids=ids, mask=mask)
Error
Exception in device=TPU:0: tuple index out of range
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/torch_xla/distributed/xla_multiprocessing.py", line 228, in _start_fn
fn(gindex, *args)
File "<ipython-input-14-9a008098ce7f>", line 3, in _mp_fn
a = run()
File "<ipython-input-12-9c37f47d0144>", line 156, in run
train_fn(train_data_loader, model, optimizer, device, scheduler)
File "<ipython-input-12-9c37f47d0144>", line 26, in train_fn
outputs = model(ids=ids, mask=mask)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 577, in __call__
result = self.forward(*input, **kwargs)
File "<ipython-input-9-b68f74a484cf>", line 12, in forward
_, o2 = self.bert(ids, attention_mask = mask)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 577, in __call__
result = self.forward(*input, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/transformers/modeling_longformer.py", line 1004, in forward
output_hidden_states=output_hidden_states,
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 577, in __call__
result = self.forward(*input, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/transformers/modeling_longformer.py", line 692, in forward
create_custom_forward(layer_module), hidden_states, attention_mask,
File "/usr/local/lib/python3.6/dist-packages/torch/utils/checkpoint.py", line 163, in checkpoint
return CheckpointFunction.apply(function, preserve, *args)
File "/usr/local/lib/python3.6/dist-packages/torch/utils/checkpoint.py", line 74, in forward
outputs = run_function(*args)
File "/usr/local/lib/python3.6/dist-packages/transformers/modeling_longformer.py", line 687, in custom_forward
return module(*inputs, output_attentions)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 577, in __call__
result = self.forward(*input, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/transformers/modeling_longformer.py", line 658, in forward
self_attn_outputs = self.attention(hidden_states, attention_mask, output_attentions=output_attentions,)
File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 577, in __call__
result = self.forward(*input, **kwargs)
IndexError: tuple index out of range
An exception has occurred, use %tb to see the full traceback.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
IndexError: tuple index out of range - Hugging Face Forums
When I changed the model like this, I got an error. I don't really know what I can do to improve it. IndexError...
Read more >How do I resolve "IndexError: tuple index out of range"?
I am trying to do a time series plot forecast in transformer. The input size is (None, 30). However, an error occurs here....
Read more >AI for Healthcare with Keras and Tensorflow 2.0 - EBIN.PUB
He currently works with a technology services company based out of ... Since it is range bound to model a 10-word sentence, you...
Read more >Don't Mention It!? | Kaggle
Main DataFrame for storing results - count just the words from the language model. The index column is the order they appear in...
Read more >sklearn .fit transformers , IndexError: tuple index out of range
Imo there are a couple of points to be highlighted on this example: CountVectorizer requires its input to be 1D.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@wassimseif, running longformer on pytroch-xla is tracked in this issue https://github.com/allenai/longformer/issues/101. I am aiming to make that code available soon, probably this week.
Hi. Got the same error. Any update on this issue? Thanks!