This repository contains YOLOv8-based object detection models trained to recognize Aya Maruyama, a character from BanG Dream! Girls Band Party!, along with the dataset used for training.
The model is trained to detect Aya Maruyama in various scenarios, including official card illustrations, anime screenshots, and fan artworks.
1from ultralytics import YOLO
2
3# Load the model
4model = YOLO('best.pt')
5
6# Perform prediction
7results = model.predict(
8 source='image.jpg',
9 conf=0.5,
10 save=True
11)
This project is available under MIT License, with respect to BanG Dream!'s copyright and terms of use.
Thanks to Bushiroad and Craft Egg for creating BanG Dream! and the character Aya Maruyama(with Amita).