Text Generation
Transformers
Safetensors
nemotron-nas
image-feature-extraction
llama-factory
lora-merged
bf16
conversational
custom_code
Instructions to use SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16
- SGLang
How to use SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16 with Docker Model Runner:
docker model run hf.co/SiddharthaChekuri/Nemotron-Super-49B-AIE-v11-5500-merged-bf16
- Xet hash:
- 0f470e4d9c5b950d1a312392b97330ebb49f6c47ec4c66b93062030023d6d3ef
- Size of remote file:
- 4.66 GB
- SHA256:
- 40bca2e8e6f0b3919d0e95d589404ecb62c41461167578d927be8c18886caeed
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.