Views
No views yet

1Q: "What infrastructure is visible in this aerial image?"
2A: "The image shows a highway overpass with multiple lanes..."1Input: [Aerial drone image]
2Output: "An aerial view of an urban intersection with surrounding buildings..."1Input: [Infrastructure inspection image]
2Output: "Visible cracks on the bridge surface, approximately 2 meters long..."1from transformers import AutoModel, AutoTokenizer
2from PIL import Image
3
4# Load model
5model = AutoModel.from_pretrained("AquaAge/airpha-VLM-7B", trust_remote_code=True)
6tokenizer = AutoTokenizer.from_pretrained("AquaAge/airpha-VLM-7B", trust_remote_code=True)
7
8# Load image
9image = Image.open("aerial_image.jpg")
10
11# Inference
12prompt = "Describe what you see in this aerial image."
13inputs = tokenizer(prompt, return_tensors="pt")
14outputs = model.generate(**inputs, images=image)
15response = tokenizer.decode(outputs[0])
16print(response)| Task | Metric | Score |
|---|---|---|
| Aerial VQA | Accuracy | TBD |
| Captioning | CIDEr | TBD |
| Defect Detection | F1 | TBD |
1@misc{airpha-vlm-7b-2026,
2 author = {AquaAge Inc.},
3 title = {AIRPHA-VLM-7B: Vision-Language Model for Aerial Scene Understanding},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/AquaAge/airpha-VLM-7B}}
7}