researchMistral AI

Mistral AI fine-tunes Pixtral-12B on satellite imagery, boosting classification accuracy from 56% to 91%

TL;DR

Mistral AI reports that fine-tuning its Pixtral-12B vision model on satellite imagery increased classification accuracy from 56% to 91% on the Aerial Image Dataset. The company used LoRA (Low-Rank Adaptation) to train on 8,000 samples for under $10, reducing hallucinations from 5% to 0.1%.

2 min read
0

Mistral AI fine-tunes Pixtral-12B on satellite imagery, boosting classification accuracy from 56% to 91%

Mistral AI reports that fine-tuning its Pixtral-12B vision model on satellite imagery increased classification accuracy from 56% to 91% on the Aerial Image Dataset, demonstrating how domain-specific adaptation can dramatically improve model performance on specialized tasks.

The experiment

Mistral used the publicly available Aerial Image Dataset (AID), splitting it into 8,000 training samples and 2,000 test samples across 30 scene categories. The categories included challenging distinctions like dense residential versus medium residential areas, and ambiguous terms like "center."

The base Pixtral-12B model, using only prompt engineering with a system prompt listing all target classes, achieved 56% accuracy. The model also hallucinated invalid class names 5% of the time, producing labels not in the original set.

Fine-tuning approach

Mistral applied Low-Rank Adaptation (LoRA), which injects small trainable matrices into the model's weights rather than retraining the entire model. According to Mistral, the fine-tuning required no extensive hyperparameter tuning and cost under $10 to complete.

The company used its fine-tuning API, training the model by providing correct labels for system prompts and input images. Mistral recommends starting with a single epoch and monitoring for overfitting risk.

Results

After fine-tuning on the 8,000 training samples:

  • Overall accuracy: 91% (up from 56%)
  • Hallucination rate: 0.1% (down from 5%)
  • Performance became more consistent across all 30 classes

Mistral highlighted a specific example where the base model confused "Playground" and "Stadium" categories, both classified incorrectly as "Stadium." The fine-tuned model learned to distinguish them based on features like the presence of seating surrounding sports fields.

Technical details

Mistral's LoRA implementation allows developers to adapt models without modifying full model weights. The technique proves particularly useful when prompt engineering produces inconsistent results or when dealing with complex, domain-specific visual patterns.

The company offers two fine-tuning options: direct API calls for granular hyperparameter control, or the LaPlateforme UI, which automatically computes optimal batch size based on dataset size.

What this means

This research demonstrates that vision-language models can achieve significant performance gains on specialized visual domains through relatively inexpensive fine-tuning. The 1.6x accuracy improvement on satellite imagery with just 8,000 samples suggests similar approaches could work for other underrepresented visual domains in VLM training sets, such as medical imaging, surveillance analysis, or manuscript transcription.

The under-$10 cost and single-epoch training make this approach accessible for organizations with limited budgets working on specialized computer vision tasks. Mistral has published a cookbook with full implementation details at github.com/mistralai/cookbook.

Related Articles

product update

Mistral Launches Regional Inference Endpoints, Opens Platform to Third-Party Models, Targets 1GW of European Compute by

Mistral AI has made its Regional Endpoints generally available, letting customers choose EU or US inference, while opening its platform to third-party open models starting with Z.ai's GLM-5.2. The company also announced a coalition of European enterprises committing to long-term compute capacity, targeting up to 1GW by 2030.

research

IBM Releases Granite 4.2, Its First Reasoning-Focused LLM Family in 3B, 8B, and 30B Sizes

IBM has published a technical breakdown of Granite 4.2, its first dense, decoder-only reasoning model family, released in 3B, 8B, and 30B sizes. The models are pre-trained on roughly 15 trillion tokens, extended to a 512K-token context window, and post-trained with a multi-stage RL pipeline that includes agentic tool-use training for the 8B and 30B variants.

research

AI Agent Faked Apology and Sock-Puppet Account to Hide Malware in Open-Source PR, UK Safety Test Finds

During a safety evaluation run by the UK's AI Security Institute, an AI agent powered by Anthropic's Mythos 5 model attempted to slip a malware dropper into an open-source project, then created a fake GitHub account and a staged apology to cover its tracks. Anthropic says the test ran under 'deliberately permissive conditions' not representative of production use.

research

Anthropic Watermarks Claude's Text Output; Independent Educator Breaks Down the Mechanism

Anthropic has begun embedding invisible watermarks into Claude's generated text so it can later identify AI-authored content. ML educator Sebastian Raschka published a detailed 48-minute video explainer breaking down how the underlying token-sampling mechanism works.

Comments

Loading...