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 kalomaze/MiniSymp2:Q6_K# Run inference directly in the terminal:
llama-cli -hf kalomaze/MiniSymp2:Q6_KUse 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 kalomaze/MiniSymp2:Q6_K# Run inference directly in the terminal:
./llama-cli -hf kalomaze/MiniSymp2:Q6_KBuild 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 kalomaze/MiniSymp2:Q6_K# Run inference directly in the terminal:
./build/bin/llama-cli -hf kalomaze/MiniSymp2:Q6_KUse Docker
docker model run hf.co/kalomaze/MiniSymp2:Q6_KQuick Links
MiniSymp2 is A retrain of my MiniSymposium model attempt except with some more data and better practices.
- added EOS tokens where they belong
- made the prompt formats more diverse in the data so you could experiment / play with prompt format in context
- added some new examples
- measured loss curve to make sure I wasn't overfitting
- used 8-bit lora instead of 4-bit qlora
- Downloads last month
- 25
Hardware compatibility
Log In to add your hardware
6-bit
8-bit
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf kalomaze/MiniSymp2:Q6_K# Run inference directly in the terminal: llama-cli -hf kalomaze/MiniSymp2:Q6_K