Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/transformers/models/llama4/configuration_llama4.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class Llama4TextConfig(PreTrainedConfig):
rope_parameters: RopeParameters | dict | None = None
no_rope_layers: list[int] | None = None
no_rope_layer_interval: int = 4
attention_chunk_size: int = 8192
attention_chunk_size: int | None = 8192
layer_types: list[str] | None = None
attn_temperature_tuning: bool = True
floor_scale: int = 8192
Expand Down
Loading