Source code for nemo_automodel.components._transformers.utils

# Copyright (c) 2025, NVIDIA CORPORATION.  All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Any

from transformers import AutoConfig


[docs] def sliding_window_overwrite(model_name: str) -> dict[str, Any]: """Returns configuration overrides to handle sliding window settings based on model rules. Args: model_name: The HuggingFace model name or path to load configuration from Returns: dict: Dictionary with overwrite values, or empty dict if no overwrites needed """ hf_config = AutoConfig.from_pretrained(model_name, trust_remote_code=True) overwrite_dict = {} # Override sliding_window setting to address a HF mismatch relevant to use_sliding_window # TODO(@zhiyul): remove this once the bug is fixed https://github.com/huggingface/transformers/issues/38002 if hasattr(hf_config, "use_sliding_window") and hf_config.use_sliding_window == False: assert hasattr(hf_config, "sliding_window") overwrite_dict = { "sliding_window": None, } print(f"use_sliding_window=False in config - overriding sliding_window parameter to None: {overwrite_dict}") return overwrite_dict