Instructions to use Undi95/Nous-Hermes-13B-Code with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Undi95/Nous-Hermes-13B-Code with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Undi95/Nous-Hermes-13B-Code")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Undi95/Nous-Hermes-13B-Code") model = AutoModelForCausalLM.from_pretrained("Undi95/Nous-Hermes-13B-Code") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Undi95/Nous-Hermes-13B-Code with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Undi95/Nous-Hermes-13B-Code" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Undi95/Nous-Hermes-13B-Code", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Undi95/Nous-Hermes-13B-Code
- SGLang
How to use Undi95/Nous-Hermes-13B-Code 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 "Undi95/Nous-Hermes-13B-Code" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Undi95/Nous-Hermes-13B-Code", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "Undi95/Nous-Hermes-13B-Code" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Undi95/Nous-Hermes-13B-Code", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Undi95/Nous-Hermes-13B-Code with Docker Model Runner:
docker model run hf.co/Undi95/Nous-Hermes-13B-Code
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Undi95/Nous-Hermes-13B-Code")
model = AutoModelForCausalLM.from_pretrained("Undi95/Nous-Hermes-13B-Code")Quick Links
(0.70) NousResearch/Nous-Hermes-Llama2-13b & (0.30) jondurbin/airoboros-lmoe-13b-2.1/adapters/code
Nous-Hermes-Llama2-13b merged with a LoRA at 0.30 weight.
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 51.98 |
| ARC (25-shot) | 61.18 |
| HellaSwag (10-shot) | 83.21 |
| MMLU (5-shot) | 55.13 |
| TruthfulQA (0-shot) | 50.56 |
| Winogrande (5-shot) | 75.14 |
| GSM8K (5-shot) | 10.39 |
| DROP (3-shot) | 28.28 |
- Downloads last month
- 855
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Undi95/Nous-Hermes-13B-Code")