Instructions to use 0xSero/NousCoder-14B-Tools with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 0xSero/NousCoder-14B-Tools with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="0xSero/NousCoder-14B-Tools") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("0xSero/NousCoder-14B-Tools", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use 0xSero/NousCoder-14B-Tools with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "0xSero/NousCoder-14B-Tools" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "0xSero/NousCoder-14B-Tools", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/0xSero/NousCoder-14B-Tools
- SGLang
How to use 0xSero/NousCoder-14B-Tools 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 "0xSero/NousCoder-14B-Tools" \ --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": "0xSero/NousCoder-14B-Tools", "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 "0xSero/NousCoder-14B-Tools" \ --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": "0xSero/NousCoder-14B-Tools", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use 0xSero/NousCoder-14B-Tools with Docker Model Runner:
docker model run hf.co/0xSero/NousCoder-14B-Tools
Standardize model card (template rollout)
Browse files
README.md
CHANGED
|
@@ -1,14 +1,43 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
tags:
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
|
|
|
| 6 |
> [!TIP]
|
| 7 |
-
> Support this work
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
|
|
@@ -203,24 +232,16 @@ Carbon emissions can be estimated using the [Machine Learning Impact calculator]
|
|
| 203 |
|
| 204 |
[More Information Needed]
|
| 205 |
|
| 206 |
-
##
|
| 207 |
-
|
| 208 |
-
If this work is useful, support Sybil Solutions here: [https://donate.sybilsolutions.ai](https://donate.sybilsolutions.ai)
|
| 209 |
-
|
| 210 |
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
|
|
|
| 217 |
|
| 218 |
## Sponsors
|
| 219 |
-
|
| 220 |
-
Thank you for the kind sponsors, wouldn't be possible without them:
|
| 221 |
-
|
| 222 |
-
- Nvidia
|
| 223 |
-
- TNG Technology
|
| 224 |
-
- Lambda
|
| 225 |
-
- Prime Intellect
|
| 226 |
-
- HotAisle
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- nouscoder
|
| 5 |
+
- tools
|
| 6 |
+
base_model:
|
| 7 |
+
- NousResearch/Hermes-3-Llama-3.1-8B
|
| 8 |
+
license: mit
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
base_model_relation: finetune
|
| 11 |
---
|
| 12 |
+
|
| 13 |
> [!TIP]
|
| 14 |
+
> **[Support this work →](https://donate.sybilsolutions.ai)** · [X](https://x.com/0xsero) · [GitHub](https://github.com/0xsero) · [REAP paper](https://arxiv.org/abs/2510.13999) · [Cerebras REAP](https://huggingface.co/collections/cerebras/cerebras-reap)
|
| 15 |
+
|
| 16 |
+
# NousCoder-14B-Tools
|
| 17 |
+
|
| 18 |
+
Tools fine-tune of [NousResearch/Hermes-3-Llama-3.1-8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B).
|
| 19 |
+
|
| 20 |
+
## At a glance
|
| 21 |
+
|
| 22 |
+
| | |
|
| 23 |
+
|---|---|
|
| 24 |
+
| Base model | [NousResearch/Hermes-3-Llama-3.1-8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B) |
|
| 25 |
+
| Format | Tools |
|
| 26 |
+
| Total params | **14B** |
|
| 27 |
+
| Active / token | — |
|
| 28 |
+
| Experts / layer | — |
|
| 29 |
+
| Layers | — |
|
| 30 |
+
| Hidden size | — |
|
| 31 |
+
| Context | — |
|
| 32 |
+
| On-disk size | 1 GB |
|
| 33 |
|
| 34 |
+
## Which variant should I pick?
|
| 35 |
+
|
| 36 |
+
| Variant | Format | Link |
|
| 37 |
+
|---|---|---|
|
| 38 |
+
| `NousCoder-14B-SFT` | SFT | [link](https://huggingface.co/0xSero/NousCoder-14B-SFT) |
|
| 39 |
+
| `NousCoder-14B-SFT-Tools` | SFT | [link](https://huggingface.co/0xSero/NousCoder-14B-SFT-Tools) |
|
| 40 |
+
| `NousCoder-14B-Tools` **(this)** | Tools | [link](https://huggingface.co/0xSero/NousCoder-14B-Tools) |
|
| 41 |
|
| 42 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 43 |
|
|
|
|
| 232 |
|
| 233 |
[More Information Needed]
|
| 234 |
|
| 235 |
+
## License & citation
|
| 236 |
+
License inherited from the base model.
|
|
|
|
|
|
|
| 237 |
|
| 238 |
+
```bibtex
|
| 239 |
+
@misc{lasby2025reap,
|
| 240 |
+
title = {REAP the Experts: Why Pruning Prevails for One-Shot MoE Compression},
|
| 241 |
+
author = {Mike Lasby and Ivan Lazarevich and Nish Sinnadurai and Sean Lie and Yani Ioannou and Vithursan Thangarasa},
|
| 242 |
+
year = {2025}, eprint = {2510.13999}, archivePrefix = {arXiv}
|
| 243 |
+
}
|
| 244 |
+
```
|
| 245 |
|
| 246 |
## Sponsors
|
| 247 |
+
Made possible by **NVIDIA · TNG Technology · Lambda · Prime Intellect · Hot Aisle**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|