System Info
In transfomers library, the default value of attn_temperature_tuning in Llama4TextConfig, is 4.
|
attn_temperature_tuning (`int`, *optional*, defaults to 4): TODO |
However, I think this value should be boolean because it is used as a condition flag in the forward pass.
|
if self.attn_temperature_tuning and not self.use_rope: |
Moreover, in the official implementation, that value is boolean, which is defaulted to False. (Offical Config File)
Who can help?
@ArthurZucker
Information
Tasks
Reproduction
Any Llama4TextConfig instances.
Expected behavior
The default value of config.attn_temperature_tuning should be True or False depending on input sequence length.