[Notice] Migration to Native transformers Support (>= 5.9.0)

#11
by bigshanedogg - opened

We would like to respectfully share an important update regarding HyperCLOVAX-SEED-Think-14B.

The model is now natively supported in the Hugging Face transformers library as of version 5.9.0, following the merge of huggingface/transformers#44956. The model architecture, configuration, and tokenizer are now part of the official transformers distribution, and loading the model no longer requires the trust_remote_code=True flag.

What This Means

  • Recommended environment: transformers >= 5.9.0. We have verified that the checkpoint files in this repository work correctly with this version using the standard AutoModelForCausalLM.from_pretrained(...) and AutoTokenizer.from_pretrained(...) calls β€” no additional flags are required.
  • Older transformers versions: While the legacy remote-code path (via auto_map) may continue to work in some cases, its behavior is no longer guaranteed and you may encounter unexpected issues. We therefore kindly recommend upgrading to the latest release.
  • README updates: All code examples have been refreshed to remove trust_remote_code=True and to reflect the new minimum version. Please refer to the latest README for the most up-to-date usage examples.

Upgrade Command

pip install -U "transformers>=5.9.0"

Feedback

Should you encounter any unexpected behavior β€” particularly around model loading, generation, chat template handling, or tokenization β€” we would be very grateful if you could open a Discussion thread on this repository. We will do our best to investigate and respond promptly.

We sincerely thank you for your continued interest in and support of HyperCLOVA X SEED.
Your engagement and thoughtful feedback are invaluable to us, and we deeply appreciate the community's role in helping us improve the model and its surrounding tooling.

Sign up or log in to comment