patrickvonplaten
commited on
Commit
•
b8089eb
1
Parent(s):
3a00ffb
Change BOS token from 0 to 2 as BOS token is equal to EOS for OPT. See: https://github.com/huggingface/transformers/issues/17431 (#1)
Browse files- Change BOS token from 0 to 2 as BOS token is equal to EOS for OPT. See: https://github.com/huggingface/transformers/issues/17431 (85fd8eb3cb91e1b10a48aa5d2295e41bcbb5b520)
- config.json +1 -1
config.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
"OPTForCausalLM"
|
6 |
],
|
7 |
"attention_dropout": 0.0,
|
8 |
-
"bos_token_id":
|
9 |
"hidden_size": 4096,
|
10 |
"dropout": 0.1,
|
11 |
"eos_token_id": 2,
|
|
|
5 |
"OPTForCausalLM"
|
6 |
],
|
7 |
"attention_dropout": 0.0,
|
8 |
+
"bos_token_id": 2,
|
9 |
"hidden_size": 4096,
|
10 |
"dropout": 0.1,
|
11 |
"eos_token_id": 2,
|