ShadowB/Manga109-panel-balloon-text-yolov26-segmentation
YOLO26s Manga Panel, Text, and Balloon Segmentation
This is a YOLO26s segmentation model for manga page layout analysis. It detects and segments three region types needed by manga OCR and translation pipelines:
- panels / frames,
- text regions,
- speech or narration balloons.
The model is intended for manga document-understanding workflows where page regions must be located before OCR, reading-order reconstruction, translation, inpainting, or human review.
Model Details
Model Description
This model is an Ultralytics-compatible YOLO26s instance segmentation model trained on Manga109-derived segmentation data. It predicts bounding boxes, class IDs, confidence scores, and pixel masks for manga page regions.
- Developed by: ShadowB / Abdelhadi Marjane
- Model type: Image segmentation / instance segmentation
- Architecture: YOLO26s segmentation model (
yolo26s-seg.yaml) - Base checkpoint:
yolo26s-seg.pt - Library: Ultralytics
- Task: Manga region instance segmentation
- Primary domain: Manga/comic page images
- Languages: Japanese manga pages. The model detects page regions visually; it does not read or translate text.
- License: MIT for this model repository. Dataset licenses and access rules may differ.
- Number of classes: 3
- Parameters: 11,436,269
- Stride: 8, 16, 32
- Checkpoint size: about 23.4 MB for
best.pt - Training date recorded in checkpoint: 2026-04-29
- Ultralytics version recorded in checkpoint: 8.4.43
- This model is part of github:sadowb/CuratorML a translation workspace that uses it for region detection.
Label Schema
The labels are stored in the model checkpoint and match the expected YOLO dataset names mapping:
Notes:
- Background is not an explicit class.
textis the visual text region, not the OCR transcription.balloonis the container region around dialogue or narration text.frameis the panel/layout region, not necessarily a semantic scene label.- Keep this class order unchanged in
data.yaml, inference code, and downstream post-processing.
Recommended dataset config:
names:
0: frame
1: text
2: balloonUses
Direct Use
Use this model to segment manga page regions from a page image. Direct outputs can be used to locate:
- panels/frames,
- text regions,
- speech or narration balloons.
Downstream Use
This model is designed to be one component in a larger manga translation or document-understanding system. A typical downstream flow is:
- segment panels, balloons, and text regions,
- associate text regions with balloons and panels,
- run OCR on text regions,
- reconstruct reading order,
- translate text with surrounding visual/layout context,
- inpaint or clean original text,
- render translated text back into the page.
Example structured output expected by a downstream pipeline:
{
"page": "example_page.jpg",
"regions": [
{
"id": 1,
"class_id": 0,
"label": "frame",
"confidence": 0.94,
"bbox": [x1, y1, x2, y2],
"mask": "..."
},
{
"id": 2,
"class_id": 2,
"label": "balloon",
"confidence": 0.91,
"bbox": [x1, y1, x2, y2],
"mask": "..."
},
{
"id": 3,
"class_id": 1,
"label": "text",
"confidence": 0.89,
"bbox": [x1, y1, x2, y2],
"mask": "..."
}
]
}Out-of-Scope Use
This model should not be treated as:
- an OCR model,
- a translation model,
- a reading-order model by itself,
- a general natural-image segmentation model,
- a legal/copyright analysis tool,
- a safety-critical segmentation system,
- a perfect layout parser for every comic style.
It only segments visible page regions. It does not understand text content, speaker identity, story context, or translation quality.
How to Get Started with the Model
Install dependencies:
pip install ultralytics pillow opencv-pythonRun inference:
from ultralytics import YOLO
# Replace with your local path or the Hugging Face model ID after upload.
model = YOLO("best.pt")
results = model.predict(
source="example_manga_page.jpg",
imgsz=1280,
conf=0.25,
iou=0.7,
retina_masks=True,
)
class_names = {
0: "frame",
1: "text",
2: "balloon",
}
for result in results:
if result.boxes is None:
print("No regions detected.")
continue
for i, box in enumerate(result.boxes):
class_id = int(box.cls[0])
confidence = float(box.conf[0])
bbox = box.xyxy[0].tolist()
label = class_names.get(class_id, str(class_id))
print({
"index": i,
"class_id": class_id,
"label": label,
"confidence": confidence,
"bbox": bbox,
})
# Saves an annotated image with boxes/masks.
result.save(filename="segmented_output.jpg")For high-quality mask extraction in a manga translation pipeline, use retina_masks=True during inference so masks are returned at higher resolution.
Training Details
Training Data
This model uses a merged Manga109-derived segmentation dataset with three region classes: frame, text, and balloon.
Dataset Composition
The provided split audit records a book-level split across 109 manga groups:
The book-level split is important because random page-level splits can overestimate performance by leaking manga-specific style, art, and layout patterns between train and validation data.
Preprocessing
The training data was normalized into a YOLO-compatible segmentation layout with the following class mapping:
0: frame
1: text
2: balloonKnown preprocessing goals:
- merge Manga109-derived annotations into a common three-class schema,
- preserve separate panel/frame, text-region, and balloon masks,
- use a book-level split to better evaluate generalization across manga titles,
- train in an Ultralytics segmentation format compatible with
yolo segment train.
Training Procedure
The model was trained on Kaggle with Ultralytics YOLO26s segmentation. The training script builds a book-level train/validation/test split, maps the labels to three classes (frame, text, balloon), and keeps overlap_mask=False because manga regions can sit inside each other.
Training used yolo26s-seg.pt as the starting checkpoint, image size 1280, batch size 8 across two GPUs, and MuSGD. The run completed 41 epochs and took 11h 13m overall. The checkpoint stores an Ultralytics training time value of 11.0054 hours, which reflects the active training budget rather than the full notebook runtime.
Training Hyperparameters
Model Size
Evaluation
Testing Data, Factors & Metrics
The available metrics are from the validation run recorded in best.pt, results.csv, and the validation artifacts in this repository.
- Validation split: book-level validation split
- Validation groups/books: 12
- Validation images: 1,468
- Test split available in audit: 14 groups/books, 1,488 images
- Metrics reported: box precision, box recall, box mAP, mask precision, mask recall, mask mAP
- Artifact source:
/validationResultsOfMangaModel/results.csvand checkpointtrain_metrics
Recommended factors for further evaluation:
- unseen manga titles/books,
- dense vs sparse pages,
- bordered vs borderless panels,
- large vs small balloons,
- small or dense text,
- heavy screentone regions,
- low-resolution or compressed pages,
- overlapping text/balloon/frame regions.
Results
The following values come from the best.pt checkpoint train_metrics field:
The final row in results.csv, epoch 41, records very similar overall metrics:
Per-Class Results
The local artifacts provided here include overall metrics, PR/F1/P/R curves, labels visualization, and confusion matrices. A per-class numeric mAP table was not present in results.csv.
To add per-class metrics, run a validation command that prints or exports per-class results, then update this table:
Suggested command when the dataset is available:
yolo segment val \
model=best.pt \
data=/path/to/data.yaml \
imgsz=1280 \
split=val \
plots=TrueEvaluation Artifacts
If the files are uploaded with this model repository, the following artifacts document the run:
Curves and Visual Results
Training curves:

Labels:

Confusion matrix:

Normalized confusion matrix:

Mask PR curve:

Box PR curve:

Summary
The model achieves strong validation performance on the book-level validation split, with mask mAP@0.5 of 0.97013 and mask mAP@0.5:0.95 of 0.84573. The model is suitable as a practical manga layout segmentation component, especially for pipelines that need panel, text, and balloon masks before OCR or translation.
For production use, visual inspection is still recommended because manga segmentation quality depends heavily on small text, dense screentones, borderless panels, overlapping regions, and unusual page layouts.
Bias, Risks, and Limitations
This model is specialized for Manga109-style manga pages. It may not generalize well to:
- Western comics,
- colored comics,
- vertical webtoons,
- very low-resolution scans,
- pages with unusual layouts,
- handwritten or highly stylized text,
- heavily compressed images,
- non-manga documents,
- very small text or very thin panel borders.
Known technical limitations:
textmasks can be sensitive to small font size, dense screentones, and low contrast.balloonmasks may be imperfect for irregular balloons, overlapping balloons, or narration boxes.framepredictions can confuse panel borders with artwork lines on complex pages.- Validation metrics may not fully capture mask-boundary quality needed for inpainting or redrawing.
- Even book-level splits may not cover every real-world manga style.
Recommendations
Users should:
- visually inspect masks before using them in a production translation pipeline,
- evaluate on their own manga pages before deployment,
- prefer book/title-level splits for new evaluations,
- tune confidence and IoU thresholds for their use case,
- use
retina_masks=Truewhen precise masks are needed, - combine this model with OCR, reading-order logic, and human review.
Environmental Impact
Carbon emissions were not measured for this run.
- Hardware Type: multi-GPU Kaggle environment recorded as
device=0,1; exact GPU type not recorded in the checkpoint - Hours used: about 11.0 hours
- Cloud Provider: Kaggle
- Compute Region: Not recorded
- Carbon Emitted: Not measured
Carbon emissions can be estimated using the Machine Learning Impact calculator: https://mlco2.github.io/impact
Technical Specifications
Model Architecture and Objective
This is a YOLO26s segmentation model with a YOLO-style detection backbone/head and segmentation mask output. The training objective optimizes object detection and instance segmentation losses to predict:
- bounding boxes,
- class probabilities,
- instance segmentation masks.
The checkpoint records:
nc: 3
scale: s
yaml_file: yolo26s-seg.yaml
head: Segment26
stride: 8, 16, 32Compute Infrastructure
Hardware
- Training environment: Kaggle
- Device setting:
0,1 - Exact GPU model: TPU
Software
- Python: TODO: add exact version if known
- PyTorch: TODO: add exact training version if known
- Ultralytics: 8.4.43 recorded in checkpoint
Data and License Notes
The model repository is licensed under MIT. This does not override the licenses, access restrictions, attribution requirements, or redistribution rules of the datasets used to train/evaluate the model.
Users are responsible for checking and following the terms for:
MS92/MangaSegmentationShadowB/Manga109_RegionLevelTextSegmentation
Important notes:
- Dataset redistribution may be restricted.
- MangaSegmentation has its own license/citation requirements.
- The MIT license applies to this model card/model repository content, not necessarily to the original manga images or dataset annotations.
Citation
If you use this model, cite the relevant datasets and papers.
MangaSegmentation
@inproceedings{xie2025advancing,
title={Advancing Manga Analysis: Comprehensive Segmentation Annotations for the Manga109 Dataset},
author={Minshan Xie and Jian Lin and Hanyuan Liu and Chengze Li and Tien-Tsin Wong},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
year={2025}
}Manga109
@article{aizawa2020building,
title={Building a Manga Dataset "Manga109" with Annotations for Multimedia Applications},
author={Aizawa, Kiyoharu and Fujimoto, Azuma and Otsubo, Atsushi and Ogawa, Toru and Matsui, Yusuke and Tsubota, Koki and Ikuta, Hikaru},
journal={IEEE MultiMedia},
year={2020}
}This Model
@misc{shadowb_yolo26s_manga_region_segmentation,
title={YOLO26s Manga Panel, Text, and Balloon Segmentation},
author={Abdelhadi marjane},
year={2026},
publisher={Hugging Face},
howpublished={ShadowB/Manga109-panel-Balloon-text-yoloV26-segmentation}}
}Glossary
- Frame / Panel: A visual manga page region containing a scene or layout unit.
- Text region: The visible text area, usually passed to OCR.
- Balloon: A speech bubble, thought bubble, narration bubble, or similar text container.
- Instance segmentation: A task that detects individual objects and predicts a separate mask for each object instance.
- mAP: Mean Average Precision, a standard detection/segmentation metric.
- Book-level split: A split where entire manga titles/books are held out, reducing leakage between train and validation data.
More Information
- Hugging Face model card documentation: https://huggingface.co/docs/hub/model-cards
- Hugging Face annotated model card guide: https://huggingface.co/docs/hub/model-card-annotated
- Manga109 project: https://manga109.github.io/manga109-project-website
Model Card Authors
Abdelhadi Marjane
Model Card Contact
Abdelhadi Marjane CuratorML is the translation workspace this model was trained for. Issues and PRs are open.
