Text Generation
GGUF
PyTorch
English
llm
transformer
causal-language-model
decoder-only
rope
rmsnorm
swiglu
Instructions to use AvijitPaul/SwitLM 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 AvijitPaul/SwitLM 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 AvijitPaul/SwitLM # Run inference directly in the terminal: llama cli -hf AvijitPaul/SwitLM
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AvijitPaul/SwitLM # Run inference directly in the terminal: llama cli -hf AvijitPaul/SwitLM
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 AvijitPaul/SwitLM # Run inference directly in the terminal: ./llama-cli -hf AvijitPaul/SwitLM
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 AvijitPaul/SwitLM # Run inference directly in the terminal: ./build/bin/llama-cli -hf AvijitPaul/SwitLM
Use Docker
docker model run hf.co/AvijitPaul/SwitLM
- LM Studio
- Jan
- vLLM
How to use AvijitPaul/SwitLM with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AvijitPaul/SwitLM" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AvijitPaul/SwitLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/AvijitPaul/SwitLM
- Ollama
How to use AvijitPaul/SwitLM with Ollama:
ollama run hf.co/AvijitPaul/SwitLM
- Unsloth Studio
How to use AvijitPaul/SwitLM 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 AvijitPaul/SwitLM 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 AvijitPaul/SwitLM to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AvijitPaul/SwitLM to start chatting
- Docker Model Runner
How to use AvijitPaul/SwitLM with Docker Model Runner:
docker model run hf.co/AvijitPaul/SwitLM
- Lemonade
How to use AvijitPaul/SwitLM with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AvijitPaul/SwitLM
Run and chat with the model
lemonade run user.SwitLM-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
File size: 11,231 Bytes
953ea5e 6988bd7 953ea5e 6988bd7 953ea5e 6988bd7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | ---
language:
- en
license: apache-2.0
pipeline_tag: text-generation
library_name: gguf
tags:
- llm
- transformer
- causal-language-model
- gguf
- pytorch
- text-generation
- decoder-only
- rope
- rmsnorm
- swiglu
---
# SwitLM
<p align="center">
**A Lightweight Decoder-Only Transformer Language Model Built from Scratch**
* RoPE β’ RMSNorm β’ SwiGLU β’ GGUF*
</p>
---
## Overview
**SwitLM** is a family of lightweight decoder-only Transformer language model implemented entirely from scratch using **PyTorch**. The project was created to explore every stage of modern LLM development, including architecture design, training, checkpointing, and conversion to the **GGUF** format for efficient inference.
Unlike models built on existing Hugging Face architectures, this implementation includes custom implementations of:
- Transformer Blocks
- Multi-Head Self Attention
- Rotary Position Embeddings (RoPE)
- RMSNorm
- SwiGLU Feed Forward Networks
- Causal Language Modeling
- GGUF Export Pipeline
The model is intended primarily for **research, experimentation, and educational purposes**.
---
# Features
- β
Decoder-only Transformer
- β
Rotary Position Embeddings (RoPE)
- β
RMSNorm Normalization
- β
SwiGLU Feed Forward Network
- β
Weight Tied Embeddings
- β
GPT-2 Tokenizer
- β
Mixed Precision Training
- β
Gradient Accumulation
- β
Exported in GGUF Format
---
# Model Architecture
```mermaid
flowchart TD
A[Input Text]
B[GPT-2 Tokenizer]
C[Token Embeddings]
A --> B
B --> C
subgraph Transformer["12 Γ Transformer Decoder Blocks"]
D1[RMSNorm]
D2[Multi-Head Self Attention]
D3[Rotary Position Embeddings]
D4[Residual Connection]
D5[RMSNorm]
D6[SwiGLU Feed Forward]
D7[Residual Connection]
D1 --> D2
D2 --> D3
D3 --> D4
D4 --> D5
D5 --> D6
D6 --> D7
end
C --> Transformer
Transformer --> E[Final RMSNorm]
E --> F[Language Modeling Head]
F --> G[Softmax]
G --> H[Next Token Prediction]
```
# Model Architecture
```
SwitLM
Decoder-Only Transformer Architecture
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Input Text β
βββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
GPT-2 Byte Pair Tokenizer
β
βΌ
Token & Embedding Layer
β
βΌ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Transformer Decoder Block Γ 12 β
β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β RMSNorm β β
β ββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββ β
β βΌ β
β Multi-Head Self Attention (12 Heads) β
β β β
β Rotary Position Embeddings (RoPE) β
β β β
β Residual Connection (+) β
β β β
β ββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββββββ β
β β RMSNorm β β
β ββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββ β
β βΌ β
β SwiGLU Feed Forward Network β
β β β
β Residual Connection (+) β
β β β
βββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
Final RMSNorm
β
βΌ
Language Modeling Head
(Weight Tied Output)
β
βΌ
Softmax Next Token Prediction
```
---
## Decoder Block
```
ββββββββββββββββββββββββββββ
β Input (x) β
ββββββββββββββ¬ββββββββββββββ
β
βΌ
RMSNorm
β
βΌ
Multi-Head Self Attention
+ Rotary Position
Embeddings
β
βΌ
Residual Add (+)
β
βΌ
RMSNorm
β
βΌ
SwiGLU Feed Forward
β
βΌ
Residual Add (+)
β
βΌ
Output
```
---
## Architecture Summary
| Component | Specification |
|-----------|---------------|
| Architecture | Decoder-only Transformer |
| Hidden Size | 768 |
| Transformer Layers | 12 |
| Attention Heads | 12 |
| Feed Forward Network | SwiGLU (3072 Hidden Units) |
| Position Encoding | Rotary Position Embeddings (RoPE) |
| Normalization | RMSNorm |
| Context Length | 2048 Tokens |
| Tokenizer | GPT-2 BPE |
| Weight Tying | Enabled |
| Output | GGUF |
# Model Specifications
| Property | Value |
|-----------|--------|
| Architecture | Decoder-only Transformer |
| Parameters | ~100M |
| Hidden Size | 768 |
| Transformer Layers | 12 |
| Attention Heads | 12 |
| Feed Forward Size | 3072 |
| Context Length | 2048 Tokens |
| Positional Encoding | Rotary Position Embeddings (RoPE) |
| Normalization | RMSNorm |
| Activation | SwiGLU |
| Weight Tying | Yes |
| Tokenizer | GPT-2 |
| Output Format | GGUF |
---
# Training Configuration
The model was trained entirely in **PyTorch** using a custom training pipeline.
### Optimizer
- AdamW
### Hyperparameters
| Parameter | Value |
|-----------|--------|
| Learning Rate | 3e-4 |
| Weight Decay | 0.01 |
| Betas | (0.9, 0.95) |
| Learning Rate Scheduler | Linear Warmup + Linear Decay |
| Mixed Precision | Enabled |
| Gradient Accumulation | Enabled |
| Gradient Clipping | 1.0 |
---
# Training Datasets
The model was trained sequentially on multiple publicly available datasets.
| Dataset | Description |
|----------|-------------|
| WikiText | General language modeling |
| TinyStories | Story generation |
| AG News | News articles |
| IMDb Reviews | Long-form text |
All datasets were tokenized using the GPT-2 tokenizer.
---
# Tokenizer
The model uses the **GPT-2 Byte Pair Encoding (BPE)** tokenizer.
- GPT-2 Vocabulary
- Byte Pair Encoding
- EOS token used as padding token
---
# Design Choices
## Rotary Position Embeddings (RoPE)
Instead of learned positional embeddings, SwitLM uses Rotary Position Embeddings to improve positional awareness and enable better handling of longer contexts.
---
## RMSNorm
RMSNorm replaces LayerNorm to reduce computational overhead while maintaining stable training dynamics.
---
## SwiGLU Feed Forward Network
The standard GELU feed-forward network has been replaced with SwiGLU, improving model expressiveness and training efficiency.
---
## Weight Tying
The input embedding matrix is shared with the output language modeling head, reducing parameter count and improving generalization.
---
# Repository Contents
```
SmallLLM-100M.gguf
README.md
LICENSE
```
---
# Running the Model
The model is provided in **GGUF** format and is compatible with several inference engines.
Supported runtimes include:
- llama.cpp
- LM Studio
- KoboldCpp
- GPT4All
- Jan
- Ollama (after conversion if required)
Example:
```bash
./llama-cli \
-m SmallLLM-100M.gguf \
-p "The future of artificial intelligence is"
```
---
# Intended Use
This model is suitable for:
- Educational purposes
- Transformer architecture research
- Learning how LLMs work
- Fine-tuning experiments
- Small-scale text generation
- GGUF inference experiments
---
# Limitations
It is a relatively small language model compared to modern large language models.
Users should expect:
- Limited reasoning capability
- Limited factual knowledge
- Reduced instruction-following performance
- Hallucinations
- Lower performance on complex tasks
This model should **not** be used for:
- Medical advice
- Legal advice
- Financial decisions
- Safety-critical applications
---
# Hardware
The training pipeline was designed for consumer GPUs.
Primary development hardware:
- NVIDIA RTX 3070 (8 GB VRAM)
Inference can be performed on either CPU or GPU depending on the inference backend.
---
# Citation
If you use this model in your research, please cite:
```bibtex
@misc{SwitLM,
title={SwitLM-100M},
author={Avijit Paul},
year={2026},
publisher={Hugging Face},
url={https://huggingface.co/AvijitPaul/SwitLM}
}
```
---
# License
This project is released under the **Apache 2.0 License**.
|