Instructions to use 0xSero/NousCoder-14B-SFT-Tools with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 0xSero/NousCoder-14B-SFT-Tools with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="0xSero/NousCoder-14B-SFT-Tools")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("0xSero/NousCoder-14B-SFT-Tools", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use 0xSero/NousCoder-14B-SFT-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-SFT-Tools" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "0xSero/NousCoder-14B-SFT-Tools", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/0xSero/NousCoder-14B-SFT-Tools
- SGLang
How to use 0xSero/NousCoder-14B-SFT-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-SFT-Tools" \ --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": "0xSero/NousCoder-14B-SFT-Tools", "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 "0xSero/NousCoder-14B-SFT-Tools" \ --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": "0xSero/NousCoder-14B-SFT-Tools", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use 0xSero/NousCoder-14B-SFT-Tools with Docker Model Runner:
docker model run hf.co/0xSero/NousCoder-14B-SFT-Tools
| base_model: | |
| - NousResearch/Hermes-3-Llama-3.1-8B | |
| license: mit | |
| pipeline_tag: text-generation | |
| base_model_relation: finetune | |
| library_name: transformers | |
| tags: | |
| - nouscoder | |
| - sft | |
| > [!TIP] | |
| > **[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) | |
| # NousCoder-14B-SFT-Tools | |
| SFT fine-tune of [NousResearch/Hermes-3-Llama-3.1-8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B). | |
| ## At a glance | |
| | | | | |
| |---|---| | |
| | Base model | [NousResearch/Hermes-3-Llama-3.1-8B](https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B) | | |
| | Format | SFT | | |
| | Total params | **14B** | | |
| | Active / token | — | | |
| | Experts / layer | — | | |
| | Layers | — | | |
| | Hidden size | — | | |
| | Context | — | | |
| | On-disk size | 1 GB | | |
| ## Which variant should I pick? | |
| | Variant | Format | Link | | |
| |---|---|---| | |
| | `NousCoder-14B-SFT` | SFT | [link](https://huggingface.co/0xSero/NousCoder-14B-SFT) | | |
| | `NousCoder-14B-SFT-Tools` **(this)** | SFT | [link](https://huggingface.co/0xSero/NousCoder-14B-SFT-Tools) | | |
| | `NousCoder-14B-Tools` | Tools | [link](https://huggingface.co/0xSero/NousCoder-14B-Tools) | | |
| ## License & citation | |
| License inherited from the base model. | |
| ```bibtex | |
| @misc{lasby2025reap, | |
| title = {REAP the Experts: Why Pruning Prevails for One-Shot MoE Compression}, | |
| author = {Mike Lasby and Ivan Lazarevich and Nish Sinnadurai and Sean Lie and Yani Ioannou and Vithursan Thangarasa}, | |
| year = {2025}, eprint = {2510.13999}, archivePrefix = {arXiv} | |
| } | |
| ``` | |
| ## Sponsors | |
| Made possible by **NVIDIA · TNG Technology · Lambda · Prime Intellect · Hot Aisle**. | |