Giter Site home page Giter Site logo

yugioh-one-shot-learning's Introduction

Deep learning Yugioh card classifier

One shot learning (image recogntion) on 10,856 unique Yugioh cards.

This deep learning classifier was made in order to make a Yugioh duel disk (you can find more information about it below):

Yugioh Duel Disk powered by this deep learning model: https://www.reddit.com/r/yugioh/comments/idagc9/i_made_a_functional_duel_disk_powered_by_ai/


Check out either these links for more details about implementation:

This is a program that uses deep learning to recognize different cards from among all 10,856 cards in the game. From a dataset

Got inspiration to try this out after seeing when Konami made:

https://ygorganization.com/konami-staff-develop-powerful-image-recognition-technology/

I wanted to try to replicate as close to Konami’s results as much as possible, but tried a different approach to the problem.


Here are some results of it:

GitHub Logo

Real life Yugioh card photos recognized by AI (with or without sleeves)


Method

Here, I will explain some of the methods I used.

Traditional machine learning / deep learning methods would not do so well with a massive amount of cards with each one having one or a few art designs, so I ended up using a method known as one-shot learning. One-shot learning is basically just a method to compare two different cards together and calculate how similar they are. One would feed two images (target image and a comparison image) into the same network and calculate the distance between the output feature maps to get a simularity score.

The architecture that was used is resnet101 that used triplet loss function to capture features from the card images and use positive / negative anchors to move simular cards closer along with moving different cards further from each other. Blur pooling was also used in order to help make the network more shift-invariant.

The ORB algorithm is used as a ranking system to deal with "borderline" predictions where the correct card not predicted as rank 0 (1st place), but got relatively close. The number of ORB points are then counted between two compared images and resulting number is used in a weighted formula with the one-shot learning similarity score to get a final score.

One-shot learning generates the first wave of rankings (to work despite lighting / contrast conditions), then ORB is then used to resolve any borderline cases before outputing its final prediction.

Process

Sample comparison (rank 0 is the most confident prediction):

The closer the dissimilarity is to 0, the more similar an image is with another

GitHub Logo

Comparing similarity of input image with database of cards. Left is input image while right are card arts from database.

GitHub Logo

Even if input image (left) was under very dark conditions, Dark Magician still gets recognized.

GitHub Logo

Blue Eyes White Dragon gets recognized even with different lighting conditions


The AI / machine learning model was tested on real photos of cards (cards with and without sleeves)

GitHub Logo

Left card has card sleeve, right one is without

These types of images are what I ultimately want my AI classifer to be successful on: having a camera point down on your card and be able to recognize it.


However, since buying over 10,000 cards and taking pictures of them wasn’t a realistic scenario for me, so I tried the next best thing, which was to test it on an online database of Yugioh cards and artificially add challenging modifications to it. Modifications included changing brightness, contrast, and shear to simulate Yugioh cards under different lighting / photo quality scenarios in real life.

Here is some of the (right is the modified simulated image and the right the original art):

GitHub Logo Batch of different images under different contrast / lighting conditions. Left of each pair is input image, right is the card art from database

Results

And here are the results of testing on this different dataset:

GitHub Logo

The AI classifier managed to achieve around 99% accuracy on all the cards in the game of Yugioh.

This was meant to be a quick project, so I am happy with progress that was made. I may try to see if I can gather more Yugioh cards and try to improve the system.

Dataset

The card dataset was retrieved from an API. The full size version of the cards were used:

https://db.ygoprodeck.com/api-guide/

You can also download the dataset and trained model here as well: https://drive.google.com/drive/folders/1JZCt7hHf4NYgEp2XiE1SpNboAbgBxwDY?usp=sharing

How to run

You can run this script to start the training process. You can edit parameters and path locations within the script.

	python3 train.py

You can also run this script to preform predictions. You can edit parameters and path locations within the script.

	python3 predict.py

After training, you will have to create a dictionary of feature map activations on the entire card dataset. You can do this by running dictCreate.py, dictTest.py and dictUnify.py in that order (be sure to confirm the path locations within each script).

Current improvements to be made

The dataset used for training were official card art images used from ygoprodeck (dataset A) and not real life photos of cards in the wild / pictures of cards taken by a camera (dataset B).

The 99% accuracy results were from training and testing on dataset A while the trained model also was tested on a handful of cards on dataset B. However we don't have a lot of data for dataset B to preform actual training on it or even mass-evaluation. This repo proves that our model is capable of learning Yugioh cards through dataset A and has potential on succeeding with dataset B, which is the more realistic and natural set of images we are aiming to succeed on. Setting up a data collection infrastructure to mass-collect image samples for dataset B would greatly advance this project and help confirm the strength of the model.

Also, this program does not have a proper object detector and just uses simple image processing methods (4 point transformation) to get the bounding box of the card and align it. Using a proper object detector like YOLO would be ideal, which would also aid in being able to detect multiple cards in the demo.

yugioh-one-shot-learning's People

Contributors

vanstorm9 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.