Instructions to use neuralcrew/neutrino-instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use neuralcrew/neutrino-instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="neuralcrew/neutrino-instruct") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import Neutrino model = Neutrino.from_pretrained("neuralcrew/neutrino-instruct", dtype="auto") - llama-cpp-python
How to use neuralcrew/neutrino-instruct with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="neuralcrew/neutrino-instruct", filename="neutrino-instruct.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use neuralcrew/neutrino-instruct with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf neuralcrew/neutrino-instruct # Run inference directly in the terminal: llama-cli -hf neuralcrew/neutrino-instruct
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf neuralcrew/neutrino-instruct # Run inference directly in the terminal: llama-cli -hf neuralcrew/neutrino-instruct
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf neuralcrew/neutrino-instruct # Run inference directly in the terminal: ./llama-cli -hf neuralcrew/neutrino-instruct
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf neuralcrew/neutrino-instruct # Run inference directly in the terminal: ./build/bin/llama-cli -hf neuralcrew/neutrino-instruct
Use Docker
docker model run hf.co/neuralcrew/neutrino-instruct
- LM Studio
- Jan
- vLLM
How to use neuralcrew/neutrino-instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "neuralcrew/neutrino-instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "neuralcrew/neutrino-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/neuralcrew/neutrino-instruct
- SGLang
How to use neuralcrew/neutrino-instruct 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 "neuralcrew/neutrino-instruct" \ --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": "neuralcrew/neutrino-instruct", "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 "neuralcrew/neutrino-instruct" \ --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": "neuralcrew/neutrino-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use neuralcrew/neutrino-instruct with Ollama:
ollama run hf.co/neuralcrew/neutrino-instruct
- Unsloth Studio new
How to use neuralcrew/neutrino-instruct with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for neuralcrew/neutrino-instruct to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for neuralcrew/neutrino-instruct to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for neuralcrew/neutrino-instruct to start chatting
- Docker Model Runner
How to use neuralcrew/neutrino-instruct with Docker Model Runner:
docker model run hf.co/neuralcrew/neutrino-instruct
- Lemonade
How to use neuralcrew/neutrino-instruct with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull neuralcrew/neutrino-instruct
Run and chat with the model
lemonade run user.neutrino-instruct-{{QUANT_TAG}}List all available models
lemonade list
🧠 Neutrino-Instruct (7B)
Neutrino-Instruct is a 7B parameter instruction-tuned LLM developed by Fardeen NB.
It is designed for conversational AI, multi-step reasoning, and instruction-following tasks, fine-tuned to maintain coherent and contextual dialogue across multiple turns.
✨ Model Details
- Model Name: Neutrino-Instruct
- Developer: Fardeen NB
- License: Apache-2.0
- Language(s): English
- Format: GGUF (optimized for
llama.cppandOllama) - Base Model: Neutrino
- Version: 2.0
- Task: Text Generation (chat, Q&A, instruction-following)
🚀 Quick Start
Run with llama.cpp
# Clone and build llama.cpp
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp && make
# Run a single prompt
./main -m ./neutrino-instruct.gguf -p "Hello, who are you?"
# Run in interactive mode
./main -m ./neutrino-instruct.gguf -i -p "Let's chat."
# Control output length
./main -m ./neutrino-instruct.gguf -n 256 -p "Write a poem about stars."
# Change creativity (temperature)
./main -m ./neutrino-instruct.gguf --temp 0.7 -p "Explain quantum computing simply."
# Enable GPU acceleration (if compiled with CUDA/Metal)
./main -m ./neutrino-instruct.gguf --gpu-layers 50 -p "Summarize this article."
Run with Ollama
ollama run fardeen0424/neutrino
Run in Python (llama-cpp-python)
from llama_cpp import Llama
# Load the Neutrino-Instruct model
llm = Llama(model_path="./neutrino-instruct.gguf")
# Run inference
response = llm("Who are you?")
print(response["choices"][0]["text"])
# Stream output tokens
for token in llm("Tell me a story about Neutrino:", stream=True):
print(token["choices"][0]["text"], end="", flush=True)
📊 System Requirements
CPU-only: 32–64GB RAM recommended (runs on modern laptops, slower inference).
GPU acceleration:
- 4GB VRAM → 4-bit quantized (Q4) models
- 8GB VRAM → 5-bit/8-bit models
- 12GB+ VRAM → FP16 full precision
🧩 Potential Use Cases
- Conversational AI assistants
- Research prototypes
- Instruction-following agents
- Chatbots with identity-awareness
⚠️ Out of Scope: Use in critical decision-making, legal, or medical contexts.
🛠️ Development Notes
- Model uploaded in GGUF format for portability & performance.
- Compatible with llama.cpp, Ollama, and llama-cpp-python.
- Supports quantization levels (Q4, Q5, Q8) for deployment on resource-constrained devices.
📖 Citation
If you use Neutrino in your research or projects, please cite:
@misc{fardeennb2025neutrino,
title = {Neutrino-Instruct: A 7B Instruction-Tuned Conversational Model},
author = {Fardeen NB},
year = {2025},
howpublished = {Hugging Face},
url = {https://huggingface.co/neuralcrew/neutrino-instruct}
}
- Downloads last month
- 4,849
We're not able to determine the quantization variants.
Model tree for neuralcrew/neutrino-instruct
Unable to build the model tree, the base model loops to the model itself. Learn more.