PierreLepagnol
commited on
Commit
•
56394a1
1
Parent(s):
4ea0141
Fix seq_length to align with the BLOOM paper
Browse filesThere is an inconsistency between the paper (https://arxiv.org/pdf/2211.05100) and the config for this model.
Page 21, Table 3 : Sequence length is 2048 not 4096.
- config.json +1 -1
config.json
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
"num_attention_heads": 16,
|
22 |
"offset_alibi": 100,
|
23 |
"pretraining_tp": 2,
|
24 |
-
"seq_length":
|
25 |
"skip_bias_add": true,
|
26 |
"skip_bias_add_qkv": false,
|
27 |
"transformers_version": "4.20.0",
|
|
|
21 |
"num_attention_heads": 16,
|
22 |
"offset_alibi": 100,
|
23 |
"pretraining_tp": 2,
|
24 |
+
"seq_length": 2048,
|
25 |
"skip_bias_add": true,
|
26 |
"skip_bias_add_qkv": false,
|
27 |
"transformers_version": "4.20.0",
|