How to use from
llama.cppInstall from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf calcuis/phi3:# Run inference directly in the terminal:
llama-cli -hf calcuis/phi3: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 calcuis/phi3:# Run inference directly in the terminal:
./llama-cli -hf calcuis/phi3: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 calcuis/phi3:# Run inference directly in the terminal:
./build/bin/llama-cli -hf calcuis/phi3:Use Docker
docker model run hf.co/calcuis/phi3:Quick Links
GGUF quantized version of Phi-3 Model (128k-instruct mini)
project original source (base model)
Q_2 (not nice)
Q_3 (acceptable)
Q_4 family is recommanded (good for running with CPU as well)
Q_5 (good in general)
Q_6 is good also; if you want a better result; take this one instead of Q_5
Q_8 which is very good; need a reasonable size of RAM otherwise you might expect a long wait
16-bit and 32-bit are also provided here for research perspectives; since the file size (16bit) is similar to the original safetensors; once you have a GPU, go ahead with the safetensors, pretty much the same
how to run it
use any connector for interacting with gguf; i.e., gguf-connector
welcome to ai era
- Downloads last month
- 68
Hardware compatibility
Log In to add your hardware
1-bit
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
32-bit
Model tree for calcuis/phi3
Base model
microsoft/Phi-3-mini-128k-instruct
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf calcuis/phi3:# Run inference directly in the terminal: llama-cli -hf calcuis/phi3: