ddh0 commited on
Commit
3aefcc2
·
verified ·
1 Parent(s): e18f459

fix max_position_embeddings 128Ki --> 256Ki

Browse files

The model card and blog post both say the model supports 256Ki tokens. The config did not reflect this. This PR changes the `max_position_embeddings` in the `config.json` from 131072 to 262144.

Files changed (1) hide show
  1. config.json +1 -1
config.json CHANGED
@@ -106,7 +106,7 @@
106
  "sliding_attention",
107
  "full_attention"
108
  ],
109
- "max_position_embeddings": 131072,
110
  "model_type": "gemma4_unified_text",
111
  "moe_intermediate_size": null,
112
  "num_attention_heads": 16,
 
106
  "sliding_attention",
107
  "full_attention"
108
  ],
109
+ "max_position_embeddings": 262144,
110
  "model_type": "gemma4_unified_text",
111
  "moe_intermediate_size": null,
112
  "num_attention_heads": 16,