Instructions to use divahno/cx-SmolLM2-360M-Q8_0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use divahno/cx-SmolLM2-360M-Q8_0 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0 # Run inference directly in the terminal: llama cli -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0 # Run inference directly in the terminal: llama cli -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0
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 divahno/cx-SmolLM2-360M-Q8_0:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0
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 divahno/cx-SmolLM2-360M-Q8_0:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf divahno/cx-SmolLM2-360M-Q8_0:Q8_0
Use Docker
docker model run hf.co/divahno/cx-SmolLM2-360M-Q8_0:Q8_0
- LM Studio
- Jan
- vLLM
How to use divahno/cx-SmolLM2-360M-Q8_0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "divahno/cx-SmolLM2-360M-Q8_0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "divahno/cx-SmolLM2-360M-Q8_0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/divahno/cx-SmolLM2-360M-Q8_0:Q8_0
- Ollama
How to use divahno/cx-SmolLM2-360M-Q8_0 with Ollama:
ollama run hf.co/divahno/cx-SmolLM2-360M-Q8_0:Q8_0
- Unsloth Studio
How to use divahno/cx-SmolLM2-360M-Q8_0 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 divahno/cx-SmolLM2-360M-Q8_0 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 divahno/cx-SmolLM2-360M-Q8_0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for divahno/cx-SmolLM2-360M-Q8_0 to start chatting
- Docker Model Runner
How to use divahno/cx-SmolLM2-360M-Q8_0 with Docker Model Runner:
docker model run hf.co/divahno/cx-SmolLM2-360M-Q8_0:Q8_0
- Lemonade
How to use divahno/cx-SmolLM2-360M-Q8_0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull divahno/cx-SmolLM2-360M-Q8_0:Q8_0
Run and chat with the model
lemonade run user.cx-SmolLM2-360M-Q8_0-Q8_0
List all available models
lemonade list
- Atomic Chat
CX SmolLM2-360M Q8_0 GGUF
Fine-tuned SmolLM2-360M-Instruct for CX (Customer Experience) analytics insights โ part of the Action-XM AI Guide system.
Model Details
| Property | Value |
|---|---|
| Base model | HuggingFaceTB/SmolLM2-360M-Instruct |
| Architecture | LlamaForCausalLM |
| Parameters | 360M |
| Quantization | Q8_0 (GGUF) |
| File size | 369 MB |
| Context length | 8192 tokens |
| Training framework | MLX-LM (Apple Silicon) |
Training
- Method: LoRA (r=16, alpha=32, targets: q/k/v/o projections)
- Dataset: 9,828 synthetic CX analytics examples (ChatML format)
- Iterations: 1,000
- Learning rate: 2e-5
- Batch size: 2
- LoRA layers: 16 (of 32)
- Peak memory: 3.2 GB
- Hardware: Apple Silicon (MLX)
Training Data
Synthetic CX insight pairs generated via Claude Sonnet 4.6, covering:
- Funnel analysis and drop-off diagnosis
- Rage click / dead click interpretation
- Session replay pattern analysis
- Core Web Vitals optimization
- Scroll depth and engagement insights
- Heatmap and click pattern analysis
- Quick-back / bounce diagnosis
- Segment comparison and cohort analysis
Quality-gated: each example passed JSON structure, length, hallucination, and actionability checks.
Usage
llama.cpp
llama-cli -m cx-SmolLM2-360M-Q8_0.gguf -n 256 --temp 0.7 --chat-template chatml
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama(model_path="cx-SmolLM2-360M-Q8_0.gguf", n_ctx=2048)
response = llm.create_chat_completion(messages=[
{"role": "system", "content": "You are a CX analytics assistant."},
{"role": "user", "content": "Cart abandonment is 71%. Average payment page duration is 12s. Insights?"},
])
print(response["choices"][0]["message"]["content"])
Performance
On Apple Silicon (M1 Pro):
- Prompt processing: ~579 tokens/sec
- Generation: ~164 tokens/sec
License
Apache 2.0 (same as base model)
- Downloads last month
- 12
Hardware compatibility
Log In to add your hardware
8-bit
Model tree for divahno/cx-SmolLM2-360M-Q8_0
Base model
HuggingFaceTB/SmolLM2-360M Quantized
HuggingFaceTB/SmolLM2-360M-Instruct