This repository contains a specially trained YOLO model designed for the epic moment UI detection task in the mobile legend (MLBB) video game. The model was trained using a public dataset without including personal information. The pre-trained model is YOLOv8m using a 6 Core 12 thread CPU device and NVIDIA RTX 3090 24GB GDDR6X.
1from ultralytics import YOLO
2
3# Load the model
4model = YOLO("best.pt")
5
6# Perform inference on an image
7results = model("path/to/your/image.jpg")
8
9# Display or save results
10results.show() # Show predictions
11results.save("output/") # Save predictions to output folder
The model outputs bounding boxes, class labels, and confidence scores for each detected object.
You can interact with this model through a hosted Gradio app:
Gradio Demo (if available).
This model is licensed under the
MIT License. Feel free to use it for personal or commercial purposes with attribution.