Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Repository files navigation

VisionLangModel

A PaliGemma-inspired multimodal vision–language model built from scratch in PyTorch

PythonPyTorchLicenseKaggleGPU


No pre-trained weights. No high-level wrappers. Every component — vision encoder, language decoder, and multimodal projector — built from first principles.


Overview

This project implements a PaliGemma-style vision–language model completely from scratch using PyTorch. The model learns to generate natural language descriptions of images by jointly training a SigLIP-inspired vision encoder and a Gemma-inspired language decoder, connected by a learned linear projection.

Trained on the COCO 2014 validation set (~40k image–caption pairs) on a single NVIDIA Tesla P100.

Core contributions:

  • Custom SigLIP Vision Encoder with sinusoidal patch position embeddings
  • Grouped Query Attention (GQA) language decoder with RoPE and RMSNorm
  • GeGLU feed-forward networks in the language decoder
  • Linear multimodal projector bridging the two modalities
  • P100-specific optimisations: gradient checkpointing + bfloat16 mixed precision

Training Results

Training Loss Curve

MetricValue
Epoch 1 average loss129.19
Loss range (epoch 1)104.1 – 161.1
Loss std deviation~10.5
Batches per epoch~202,500
Effective batch size16 (accumulation steps)
HardwareNVIDIA Tesla P100 (16 GB)

The high absolute loss is expected for a randomly-initialised model learning to jointly align 196 image patches with free-form COCO captions from scratch, without any pre-training. The rolling average shows a clear downward trend across the epoch as the model acquires coarse image–text alignment.


Architecture

End-to-End PaliGemma-Style Pipeline

See the Text Alternative (ASCII) section below for the compact flow.

Image-Text Fusion — the [IMG] placeholder trick

See the Text Alternative (ASCII) section below for the sequence layout.

Vision Encoder (SigLIP-inspired)

See the Text Alternative (ASCII) section below.

Language Decoder (Gemma-style)

See the Text Alternative (ASCII) section below.

Text Alternative (ASCII)

Input Image (224×224×3)
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│
┌────────▼────────────────────────────────────────────────────────┐
│ SigLIP Vision Encoder │
│ │
│ Conv2D Patch Embedding (16×16 patches → 196 tokens) │
│ + Sinusoidal Position Embeddings │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ VisionEncoderLayer ×8 │ │
│ │ Pre-Norm LayerNorm │ │
│ │ Multi-Head Self-Attention (8 heads) │ │
│ │ + Residual │ │
│ │ Pre-Norm LayerNorm │ │
│ │ MLP: Linear → GELU → Linear │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final LayerNorm │
│ Output: (B, 196, 512) │
└─────────────────────────┬───────────────────────────────────────┘
│
┌───────────▼───────────┐
│ Multimodal Projector │
│ Linear 512 → 1024 │
│ Dropout 0.1 │
└───────────┬───────────┘
│
[BOS] [IMG]×196 <caption tokens> [EOS]
│
┌─────────────────────────▼───────────────────────────────────────┐
│ Gemma Language Decoder │
│ │
│ Token Embeddings (vocab=32k, d_model=1024) │
│ + Image patch embeddings injected at [IMG] positions │
│ │ │
│ ┌────────────────────▼──────────────────────┐ │
│ │ GemmaDecoderLayer ×12 │ │
│ │ Pre-Norm RMSNorm │ │
│ │ Grouped Query Attention │ │
│ │ Q heads: 8 KV heads: 4 head_dim: 128 │ │
│ │ RoPE positional encoding │ │
│ │ Causal mask │ │
│ │ + Residual │ │
│ │ Pre-Norm RMSNorm │ │
│ │ GeGLU FFN: gate_proj + up_proj → GELU │ │
│ │ + Residual │ │
│ └────────────────────────────────────────────┘ │
│ │ │
│ Final RMSNorm → LM Head │
│ Output: next-token logits │
└─────────────────────────────────────────────────────────────────┘

Model Configuration

Vision Encoder

HyperparameterValueNote
image_size224Input resolution
patch_size1614×14 = 196 patches
hidden_size512Encoder hidden dim
num_hidden_layers8Transformer depth
num_attention_heads8Vision attention heads
intermediate_size1536FFN width

Language Decoder

HyperparameterValueNote
hidden_size1024Decoder hidden dim
num_hidden_layers12Decoder depth
num_attention_heads8Query heads (GQA)
num_key_value_heads4KV heads (GQA)
head_dim128Per-head dimension
intermediate_size2048GeGLU inner dim
max_position_embeddings512Context window
vocab_size32,000Gemma tokenizer

Repository Structure

VisionLangModel/
│
├── src/
│ ├── visionEncoder.py # SigLIP-style Vision Transformer
│ │ PatchEmbedding, VisionAttention, VisionMLP,
│ │ VisionEncoderLayer, SigLIPVisionEncoder
│ │
│ ├── languageDecoder.py # Gemma-style Language Model
│ │ RMSNorm, RotaryEmbedding, GroupedQueryAttention,
│ │ GeGLU, GemmaDecoderLayer, GemmaLanguageModel
│ │
│ ├── multimodalFusion.py # Multimodal integration + generation
│ │ MultimodalProjector, PaliGemmaModel,
│ │ create_optimized_paligemma, optimize_for_p100
│ │
│ └── train.py # Training loop + CLI entrypoint
│ COCO download, MultimodalDataset, collate_fn,
│ gradient accumulation, mixed precision
│
├── assets/
│ └── loss_curve.png # Training loss visualisation
│
├── results/
│ └── training_log.md # Full Kaggle P100 training log & notes
│
├── .github/
│ └── workflows/
│ └── ci.yml # Lint, import checks, forward-pass smoke test
│
├── requirements.txt
├── .gitignore
└── README.md

Quickstart

Prerequisites

git clone https://github.com/atandra2000/VisionLangModel.git
cd VisionLangModel
pip install -r requirements.txt

A CUDA-capable GPU is strongly recommended. On CPU only the forward pass is feasible, not full training.

Train

The script automatically downloads COCO 2014 validation images and annotations on first run (~7 GB).

python src/train.py

Override defaults:

python src/train.py --epochs 5 --lr 3e-4 --accum-steps 8
FlagDefaultDescription
--epochs20Training epochs
--lr1e-4AdamW learning rate
--accum-steps16Gradient accumulation steps

Implementation Highlights

Grouped Query Attention (GQA)

Reduces KV-cache memory during inference by sharing key/value heads across groups of query heads. With 8 query heads and 4 KV heads, the KV cache is half the size of standard multi-head attention.

# Expand KV to match Q head count before dot-productkey_states=key_states.repeat_interleave(self.num_kv_groups, dim=1)
value_states=value_states.repeat_interleave(self.num_kv_groups, dim=1)

Rotary Position Embedding (RoPE)

Applied to query and key tensors via complex-number rotation. Unlike learned absolute positional embeddings, RoPE generalises to sequence lengths beyond those seen at training time.

defapply_rotary_pos_emb(q, k, cos, sin):
defrotate_half(x):
x1, x2=x[..., :x.shape[-1]//2], x[..., x.shape[-1]//2:]
returntorch.cat((-x2, x1), dim=-1)
return (q*cos) + (rotate_half(q) *sin), (k*cos) + (rotate_half(k) *sin)

GeGLU Feed-Forward Network

Replaces the standard ReLU FFN with a gated variant. The gate pathway learns when to suppress or amplify features, giving the network richer non-linear capacity at minimal parameter overhead.

defforward(self, x):
returnself.down_proj(F.gelu(self.gate_proj(x)) *self.up_proj(x))

Multimodal Input Fusion

Image patch embeddings (after projection) replace the [IMG] placeholder tokens in the text sequence, enabling a unified causal attention over both modalities.

forbinrange(batch_size):
positions=torch.where(input_ids[b] ==self.image_token_id)[0]
start=positions[0].item()
combined[b, start : start+num_patches] =image_features[b]

Gradient Checkpointing for P100

Recomputes activations during the backward pass rather than storing them, cutting peak VRAM usage at the cost of ~30% extra compute — essential for fitting this model on 16 GB VRAM.

def_checkpointed_forward(module):
original=module.forwarddefforward(*args, **kwargs):
returntorch.utils.checkpoint.checkpoint(original, *args, use_reentrant=True, **kwargs)
returnforward

Tech Stack

ComponentTechnology
Deep learningPyTorch 2.0
TokenizerGemma-2B (via 🤗 Transformers)
DatasetCOCO 2014 Validation (~40k pairs)
Training hardwareNVIDIA Tesla P100 (16 GB)
PlatformKaggle Notebooks
LanguagePython 3.11

License

Released under the Apache 2.0 License.


Atandra Bharati

KaggleGitHub

About

PaliGemma-inspired vision–language model from scratch — SigLIP vision encoder, GQA language decoder with RoPE & GeGLU, linear projector, trained on COCO 2014 on P100

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages