How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf manindra18/Qwen3-8B:Q4_K_M
# Run inference directly in the terminal:
llama-cli -hf manindra18/Qwen3-8B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf manindra18/Qwen3-8B:Q4_K_M
# Run inference directly in the terminal:
llama-cli -hf manindra18/Qwen3-8B:Q4_K_M
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 manindra18/Qwen3-8B:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf manindra18/Qwen3-8B:Q4_K_M
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 manindra18/Qwen3-8B:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf manindra18/Qwen3-8B:Q4_K_M
Use Docker
docker model run hf.co/manindra18/Qwen3-8B:Q4_K_M
Quick Links

manindra18/Qwen3-8B

This model was fine-tuned from Qwen/Qwen3-8B using Tinker and tinker-cookbook.

Model details

Usage

from transformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("manindra18/Qwen3-8B")

Framework versions

  • tinker-cookbook: 0.1.0
  • transformers: 5.1.0
  • torch: 2.10.0
Downloads last month
7
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with manindra18/Qwen3-8B.

Model tree for manindra18/Qwen3-8B

Finetuned
Qwen/Qwen3-8B
Quantized
(291)
this model

Dataset used to train manindra18/Qwen3-8B