Instructions to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="aimeri/spoomples-qwen3-14b-v0.2-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("aimeri/spoomples-qwen3-14b-v0.2-GGUF") model = AutoModelForMultimodalLM.from_pretrained("aimeri/spoomples-qwen3-14b-v0.2-GGUF") - llama-cpp-python
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="aimeri/spoomples-qwen3-14b-v0.2-GGUF", filename="spoomplesmaxx-base-qwen3-14b.Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF: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 aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF: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 aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aimeri/spoomples-qwen3-14b-v0.2-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aimeri/spoomples-qwen3-14b-v0.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
- SGLang
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF 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 "aimeri/spoomples-qwen3-14b-v0.2-GGUF" \ --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": "aimeri/spoomples-qwen3-14b-v0.2-GGUF", "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 "aimeri/spoomples-qwen3-14b-v0.2-GGUF" \ --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": "aimeri/spoomples-qwen3-14b-v0.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with Ollama:
ollama run hf.co/aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
- Unsloth Studio
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF 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 aimeri/spoomples-qwen3-14b-v0.2-GGUF 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 aimeri/spoomples-qwen3-14b-v0.2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for aimeri/spoomples-qwen3-14b-v0.2-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with Docker Model Runner:
docker model run hf.co/aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
- Lemonade
How to use aimeri/spoomples-qwen3-14b-v0.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aimeri/spoomples-qwen3-14b-v0.2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.spoomples-qwen3-14b-v0.2-GGUF-Q4_K_M
List all available models
lemonade list
Run and chat with the model
lemonade run user.spoomples-qwen3-14b-v0.2-GGUF-List all available models
lemonade listspoomples-qwen3-14b-v0.2-GGUF : GGUF
This model was finetuned and converted to GGUF format using Unsloth.
Example usage:
- For text only LLMs:
./llama.cpp/llama-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF --jinja - For multimodal models:
./llama.cpp/llama-mtmd-cli -hf aimeri/spoomples-qwen3-14b-v0.2-GGUF --jinja
Available Model files:
spoomplesmaxx-base-qwen3-14b.Q5_K_M.ggufspoomplesmaxx-base-qwen3-14b.Q8_0.ggufspoomplesmaxx-base-qwen3-14b.Q4_K_M.gguf
SpoomplesMaxx โ Qwen3 14B SFT
A 14B language model built on Qwen3-14B through a multi-stage training pipeline: Continued Pre-Training (CPT) โ Supervised Fine-Tuning (SFT). This is the SFT checkpoint. DPO alignment has not yet been applied.
What is this?
SpoomplesMaxx is an experiment in training a persona-consistent model from scratch rather than fine-tuning an existing instruct model. The goal is full control over voice, format, and behavior by building up from a base model.
The CPT stage (spoomplesmaxx-base-qwen3-14b) injected domain knowledge from character cards, literary prose, and specialized text. This SFT stage teaches instruction-following and conversation using a custom chat format.
Chat Format (DanChat)
The model uses a custom token format:
<|system|>system prompt<|endoftext|>
<|user|>user message<|endoftext|>
<|assistant|>response<|endoftext|>
<|system|>โ System/roleplay instructions<|user|>/<|assistant|>โ Conversation turns<|endoftext|>โ Segment terminator
Training Data
The SFT mix is a weighted blend of several categories:
| Category | Focus | ~Weight |
|---|---|---|
| Roleplay & Creative Writing | Character RP, adventure, scenario-based dialogue | 28% |
| NSFW | Explicit roleplay and creative content | 22% |
| Tasks & Instructions | Tool use, function calling, general assistant tasks | 17% |
| Reasoning & Logic | Math, logic, theory of mind, physical reasoning | 16% |
| Persona Voice | Olivia persona reinforcement | 12% |
| Specialized Knowledge | Survival, operations, tactical scenarios | 5% |
Olivia
The model includes training data transformed into the voice of Olivia, a reference persona: a 31-year-old Brazilian zoologist turned ML hobbyist. She's warm but direct, uses grounded analogies, and occasionally slips into Portuguese when frustrated.
Olivia is a proof of concept for persona consistency โ demonstrating that voice can be trained in rather than prompted for. You don't have to use the Olivia persona; the model responds to whatever system prompt you provide.
Intended Use
- Roleplay and character-driven conversation
- Creative and narrative writing
- Reasoning and problem-solving tasks
- Instruction following and tool use - but expect significant degradation when compared to models optimized for this task
Limitations
- This is an SFT checkpoint without preference alignment (DPO). Outputs may not always match user expectations for tone or safety.
- The model was trained with a specific data mix and custom format. Results with other chat templates may vary.
- No formal benchmarks have been run. Evaluate on your own use cases.
Details
- Architecture: Qwen3-14B (14B dense)
- Base model: aimeri/spoomplesmaxx-base-qwen3-14b (CPT checkpoint)
- Context: Up to 128K tokens (inherited from Qwen3 but trained on a max of 32K tokens)
- Developer: aimeri
- Downloads last month
- 6
4-bit
5-bit
8-bit
Model tree for aimeri/spoomples-qwen3-14b-v0.2-GGUF
Base model
Qwen/Qwen3-14B-Base
Pull the model
# Download Lemonade from https://lemonade-server.ai/lemonade pull aimeri/spoomples-qwen3-14b-v0.2-GGUF: