Text Generation
Transformers
Safetensors
PyTorch
nemotron_h
nvidia
conversational
custom_code
Eval Results
dmax123 commited on
Commit
2d59de1
·
1 Parent(s): cbd3fa9

Update README.md (#67)

Browse files

- Update README.md (5da8938065e52630a053c23b8d3d87133e4d078d)

Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -231,7 +231,7 @@ The integration of foundation and fine-tuned models into AI systems requires add
231
 
232
  ### Use it with Transformers
233
 
234
- The snippet below shows how to use this model with Huggingface Transformers (tested on version 4.57.3). We recommend using [NeMo Framework 25.11.01](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/nemo/tags?version=25.11.01) to ensure all required libraries are available.
235
 
236
  Please note that the model supports up to a 1M context size, although the default context size in the Hugging Face configuration is 256k due to higher VRAM requirements.
237
 
@@ -244,7 +244,6 @@ tokenizer = AutoTokenizer.from_pretrained("nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B
244
  model = AutoModelForCausalLM.from_pretrained(
245
  "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
246
  torch_dtype=torch.bfloat16,
247
- trust_remote_code=True,
248
  device_map="auto"
249
  )
250
  ```
 
231
 
232
  ### Use it with Transformers
233
 
234
+ The model has been integrated into 🤗 Transformers since v5.3.0. We recommend using the [NeMo Framework](https://catalog.ngc.nvidia.com/orgs/nvidia/-/containers/nemo/26.06/) to ensure all required libraries are available.
235
 
236
  Please note that the model supports up to a 1M context size, although the default context size in the Hugging Face configuration is 256k due to higher VRAM requirements.
237
 
 
244
  model = AutoModelForCausalLM.from_pretrained(
245
  "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
246
  torch_dtype=torch.bfloat16,
 
247
  device_map="auto"
248
  )
249
  ```