Novel approach to boosting brain-to-image decoding by augmenting small fMRI datasets with synthetic data generated by TRIBE v2, a large encoding model pretrained on 1000+ hours of fMRI responses to video, audio, and language. Achieves up to 68% improvement in Top-10 image-retrieval accuracy and enables zero-shot brain-to-image decoding.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill boosting-brain-to-image-tribe-v2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Boosting Brain To Image Tribe V2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-boosting-brain-to-image-tribe-v2-ai-collection)More formats (shields.io, HTML) on the badges page.
---
skill_name: boosting-brain-to-image-tribe-v2
category: neuroscience
activation_keywords:
- brain-to-image decoding
- fMRI decoding
- TRIBE v2
- data augmentation
- neural decoding
- foundation model
- zero-shot decoding
- synthetic fMRI
created: 2026-06-07
source: arXiv:2606.06345
authors: Yohann Benchetrit, Marlène Careil, Simon Dahan, Hubert Banville, Stéphane d'Ascoli, Jean-Rémi King
---
# Boosting Brain-to-Image Decoding with TRIBE v2 Data Augmentation
## Overview
Novel approach to boosting brain-to-image decoding by augmenting small fMRI datasets with synthetic data generated by TRIBE v2, a large encoding model pretrained on 1000+ hours of fMRI responses to video, audio, and language. Achieves up to 68% improvement in Top-10 image-retrieval accuracy and enables zero-shot brain-to-image decoding.
**arXiv**: [2606.06345](https://arxiv.org/abs/2606.06345)
## Core Methodology
### 1. TRIBE v2 Foundation Model
- **Large-Scale Pretraining**: 1000+ hours of fMRI responses to video, audio, language stimuli
- **Multi-Modal Encoding**: Encodes responses to sight, sound, and text
- **Generative Capability**: Can synthesize realistic fMRI responses for novel stimuli
### 2. Data Augmentation Strategy
- **Synthetic fMRI Generation**: Create synthetic brain responses from image stimuli using TRIBE v2
- **Mixed Training**: Blend real and synthetic fMRI data for decoder training
- **Systematic Grid Search**: Evaluate optimal synthetic-to-real data ratios
### 3. Brain-to-Image Decoding Pipeline
- **Image Retrieval Task**: Given fMRI, retrieve matching image from candidate set
- **Top-K Accuracy Metric**: Measure decoder performance at different K values
- **Dataset Flexibility**: Works across 7T Natural Scenes Dataset and 3T BOLD5000
## Key Results
| Dataset | Real Data Only | With TRIBE v2 Augmentation | Improvement |
|---------|---------------|---------------------------|-------------|
| NSD (7T) | Baseline | **+68% Top-10 accuracy** | Significant boost |
| BOLD5000 (3T) | Baseline | Improved | Validated across scanners |
| Zero-Shot | Chance | **Above chance** | Synthetic-only training works |
### Performance Analysis Grid
| Synthetic Data Ratio | Decoding Performance | Optimal Use Case |
|---------------------|--------------------|--------------------|
| 0% (Pure Real) | Baseline | High data availability |
| 50% Mixed | Moderate boost | Balanced regime |
| 100% (Pure Synthetic) | Above chance | Zero-shot scenario |
## Applications
1. **fMRI-Based Image Reconstruction**: Reconstruct visual stimuli from brain activity
2. **Brain Decoding in Low-Data Regimes**: Clinical settings with limited fMRI scans
3. **Neuroscience Research**: Accelerate brain decoding studies with synthetic data
4. **Foundation Model Research**: Apply pretraining to neuroimaging domain
5. **Clinical Neuroimaging**: Personalized decoding with minimal patient data
## Implementation Guidelines
### Step 1: Load TRIBE v2 Foundation Model
```python
# Load pretrained TRIBE v2 encoding model
from tribe_v2 import TRIBEEncoder
encoder = TRIBEEncoder.load_pretrained()
# Model trained on 1000+ hours of multi-modal fMRI
```
### Step 2: Generate Synthetic fMRI Responses
```python
# Synthesize brain response for image stimulus
def generate_synthetic_fmri(encoder, image_stimulus):
"""
Generate synthetic fMRI response using TRIBE v2
"""
synthetic_response = encoder.encode(image_stimulus)
return synthetic_response # Simulated brain activation pattern
```
### Step 3: Augment Training Dataset
```python
# Create augmented dataset with synthetic data
def augment_dataset(real_fmri_images, synthetic_ratio, encoder):
"""
Mix real and synthetic fMRI data for decoder training
"""
augmented_pairs = []
# Add real fMRI-image pairs
for fmri, image in real_fmri_images:
augmented_pairs.append((fmri, image, 'real'))
# Generate synthetic fMRI for images
for image in image_pool:
synthetic_fmri = generate_synthetic_fmri(encoder, image)
augmented_pairs.append((synthetic_fmri, image, 'synthetic'))
return augmented_pairs
```
### Step 4: Train Brain-to-Image Decoder
```python
# Image retrieval decoder training
class BrainToImageDecoder:
def __init__(self, encoder_dim, image_feature_dim):
self.fmri_encoder = nn.Linear(encoder_dim, latent_dim)
self.image_encoder = VisionTransformer()
self.retrieval_head = RetrievalNetwork()
def train_on_augmented_data(self, augmented_pairs):
"""
Train decoder on mixed real/synthetic data
"""
for fmri, image, source in augmented_pairs:
fmri_embedding = self.fmri_encoder(fmri)
image_embedding = self.image_encoder(image)
loss = retrieval_loss(fmri_embedding, image_embedding)
```
## Comparative Analysis
| Approach | Data Efficiency | Zero-Shot | Multi-Scanner | Foundation Model |
|----------|----------------|-----------|---------------|------------------|
| Pure Real Data | Low | No | Scanner-specific | No |
| Manual Augmentation | Moderate | No | Limited | No |
| **TRIBE v2 (This Paper)** | **High (+68%)** | **Yes** | **Cross-scanner** | **Yes** |
## Research Insights
### Key Findings
1. **Foundation Model Transfer**: Large-scale fMRI pretraining enables effective synthetic data generation
2. **Optimal Mixing Ratio**: Synthetic-to-real proportion needs adjustment per dataset
3. **Zero-Shot Capability**: Decoders trained only on synthetic fMRI perform above chance
4. **Multi-Modal Pretraining**: Video/audio/language responses improve image decoding
### Surprising Discovery
- **Pure Synthetic Training**: Image decoders trained exclusively on TRIBE v2-generated fMRI can perform above chance in some settings
- **Cross-Domain Transfer**: Audio/language encoding improves image decoding via shared neural representations
## Technical Details
### TRIBE v2 Architecture
- **Multi-Modal Encoder**: Joint encoding of video, audio, language stimuli
- **Large-Scale Training**: 1000+ hours of fMRI responses (extensive dataset)
- **Generative Model**: Can predict fMRI responses for unseen stimuli
- **Foundation Model Approach**: Pretraining paradigm applied to neuroimaging
### Augmentation Strategy
- **Stimulus-Response Pairing**: Generate synthetic fMRI for image stimuli
- **Decoder Training**: Learn mapping from fMRI patterns to image features
- **Retrieval Framework**: Top-K image retrieval from candidate pool
### Dataset-Specific Optimization
- **NSD (7T)**: High-field fMRI, higher synthetic ratio beneficial
- **BOLD5000 (3T)**: Standard-field fMRI, different optimal ratio
- **Scanner Adaptation**: Adjust augmentation based on data quality
## Use Cases
### When to Use This Method
1. **Low-data fMRI decoding** where real scans are limited
2. **Clinical neuroscience** with minimal patient-specific data
3. **Accelerated research** reducing required scan hours
4. **Foundation model transfer** to neuroimaging domain
5. **Multi-modal decoding** leveraging video/audio/language priors
### Integration with Existing Workflows
- **Brain Decoding Pipelines**: Augment existing decoder training
- **fMRI Analysis**: Integration with standard preprocessing
- **Foundation Model Research**: Extend pretraining to neuroimaging
- **Clinical Applications**: Reduce scan burden for patients
## Future Directions
1. **Model Scaling**: Larger TRIBE variants with more pretraining data
2. **Personalized Decoding**: Subject-specific adaptation with minimal data
3. **Multi-Task Decoding**: Beyond image retrieval to reconstruction
4. **Temporal Dynamics**: Incorporate time-series fMRI responses
5. **Real-Time Decoding**: Online synthetic data generation
## Related Work
- **Brain Decoding**: fMRI-to-image reconstruction literature
- **Foundation Models**: Pretraining paradigms (BERT, GPT, CLIP)
- **Data Augmentation**: Synthetic data in machine learning
- **Multi-Modal Learning**: Joint encoding of vision/audio/text
## Key Contributions
1. **First Foundation Model for fMRI**: TRIBE v2 as neuroimaging foundation model
2. **68% Improvement**: Significant boost in brain-to-image accuracy
3. **Zero-Shot Discovery**: Synthetic-only training above chance
4. **Cross-Scanner Validation**: Works across 7T and 3T fMRI
5. **Optimal Mixing Analysis**: Systematic grid of augmentation ratios
## Limitations & Considerations
- **Synthetic Quality**: Depends on TRIBE v2 encoding accuracy
- **Scanner Variability**: Different optimal ratios for different systems
- **Stimulus Dependence**: Performance varies by image complexity
- **Pretraining Cost**: Large-scale fMRI collection needed for foundation model
## Datasets Used
1. **Natural Scenes Dataset (NSD)**: 7T fMRI, high-resolution brain responses
2. **BOLD5000**: 3T fMRI, standard clinical scanner quality
3. **TRIBE v2 Pretraining Dataset**: 1000+ hours multi-modal fMRI
## Experimental Setup
- **Top-10 Image Retrieval**: Primary evaluation metric
- **Grid Search**: Systematic evaluation of synthetic ratios
- **Cross-Validation**: Multiple training splits for robustness
- **Zero-Shot Tests**: Synthetic-only decoder validation
## References
- arXiv:2606.06345 - Full paper with detailed experiments
- TRIBE v2 Model: Multi-modal fMRI foundation model
- NSD Dataset: Natural Scenes Dataset (7T fMRI)
- BOLD5000: Large-scale image viewing fMRI dataset
- Foundation Model Literature: Pretraining paradigms
---
**Activation**: brain-to-image decoding, fMRI decoding, TRIBE v2, data augmentation, neural decoding, foundation model, zero-shot decoding, synthetic fMRI
**Source**: arXiv:2606.06345 (Submitted 4 Jun 2026)
**Authors**: Yohann Benchetrit, Marlène Careil, Simon Dahan, Hubert Banville, Stéphane d'Ascoli, Jean-Rémi KingIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!