potamides commited on
Commit
cd577f1
1 Parent(s): e35db05

fix pad_token_id

Browse files

ID of pad token was set to -1 in the model which can lead to indexing errors.

Files changed (1) hide show
  1. config.json +1 -1
config.json CHANGED
@@ -135,7 +135,7 @@
135
  "output_attentions": false,
136
  "output_hidden_states": false,
137
  "output_scores": false,
138
- "pad_token_id": -1,
139
  "prefix": null,
140
  "problem_type": null,
141
  "pruned_heads": {},
 
135
  "output_attentions": false,
136
  "output_hidden_states": false,
137
  "output_scores": false,
138
+ "pad_token_id": 32000,
139
  "prefix": null,
140
  "problem_type": null,
141
  "pruned_heads": {},