Instructions to use SmallAICreator/TinyGPT-XXL 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 SmallAICreator/TinyGPT-XXL 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 SmallAICreator/TinyGPT-XXL # Run inference directly in the terminal: llama cli -hf SmallAICreator/TinyGPT-XXL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SmallAICreator/TinyGPT-XXL # Run inference directly in the terminal: llama cli -hf SmallAICreator/TinyGPT-XXL
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 SmallAICreator/TinyGPT-XXL # Run inference directly in the terminal: ./llama-cli -hf SmallAICreator/TinyGPT-XXL
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 SmallAICreator/TinyGPT-XXL # Run inference directly in the terminal: ./build/bin/llama-cli -hf SmallAICreator/TinyGPT-XXL
Use Docker
docker model run hf.co/SmallAICreator/TinyGPT-XXL
- LM Studio
- Jan
- Ollama
How to use SmallAICreator/TinyGPT-XXL with Ollama:
ollama run hf.co/SmallAICreator/TinyGPT-XXL
- Unsloth Studio
How to use SmallAICreator/TinyGPT-XXL 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 SmallAICreator/TinyGPT-XXL 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 SmallAICreator/TinyGPT-XXL to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SmallAICreator/TinyGPT-XXL to start chatting
- Docker Model Runner
How to use SmallAICreator/TinyGPT-XXL with Docker Model Runner:
docker model run hf.co/SmallAICreator/TinyGPT-XXL
- Lemonade
How to use SmallAICreator/TinyGPT-XXL with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SmallAICreator/TinyGPT-XXL
Run and chat with the model
lemonade run user.TinyGPT-XXL-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
TinyGPT-XXL is a 215M-parameter language model trained from scratch, released as an 8-bit quantized GGUF (260MB) for on-device inference.
Pretraining used 4.7 billion tokens โ roughly 22 tokens per parameter, slightly past Chinchilla-optimal โ drawn from FineWeb-Edu with a 15% CodeParrot mix. Supervised fine-tuning combined SmolTalk, OpenHermes, and a small identity dataset.
It runs at ~40โ51 tokens/sec on-device and handles short-form explanation, conversational turns, and simple Python well, producing correctly-structured functions on well-specified prompts.
Requires the trained system prompt. The model uses a custom chat template with the system string baked in:
<|system|>You are TinyGPT-Large, a helpful AI assistant created by UltraLabs.<|end|><|user|>{prompt}<|end|><|assistant|>
Identity drifts without it. Stop words are and <|end|>.
Known limitations: Python is the only programming language it should be expected to handle. Logic errors are common in generated code even when syntax and structure are correct. Factual definitions can be vague or circular, and open-ended prompts without a clear target tend to produce repetition.
Evaluate it as a small model โ the goal here is capability-per-parameter, not absolute capability.
- Downloads last month
- 26
We're not able to determine the quantization variants.