Troubleshooting Unsupported Models#
Sometimes a model listed on the Hugging Face Hub may not work with NeMo AutoModel. If you encounter any such model, please open a GitHub issue with the model ID and any stack trace you see.
Common Issues#
Issue |
Example Error |
Solution |
|---|---|---|
Model has explicitly disabled training in its definition code |
— |
Request support via a GitHub issue. We can add the model through our custom registry. |
Model requires a newer |
|
Upgrade |
Model upper-bounds |
— |
Open a GitHub issue. |
Unsupported checkpoint format |
|
Open a GitHub issue or request the model publisher to share a SafeTensors checkpoint. |
These cases typically stem from upstream packaging or dependency constraints. You would encounter the same issues when using transformers directly, as AutoModel mirrors the familiar load and fine-tune semantics.
Steps to Try#
Upgrade NeMo AutoModel to a release that supports the required
transformersversion. See Installation.Enable remote code — if the model uses custom code, set
trust_remote_code: truein yourmodel:config. See Hugging Face API Compatibility.Open a GitHub issue with the model ID and error so we can prioritize support or add a registry-backed implementation.