GithubHelp home page GithubHelp logo

mrvnthss / deep-learning-with-dobble Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 336 MB

A deep learning project based on the card game Dobble, implemented in PyTorch.

License: GNU General Public License v3.0

Jupyter Notebook 100.00%
deep-learning deep-neural-networks dobble-card-game convolutional-neural-networks dobble-algorithm projective-planes pytorch python resnet

deep-learning-with-dobble's Introduction

Deep Learning with Dobble

Open in Colab Jupyter Python PyTorch GitHub License

Welcome to Deep Learning with Dobble! This repository contains the results of a graded project that formed part of the Deep Learning seminar taught at Justus Liebig University Giessen in Spring 2023.

Note: The official project deadline was July 23, 2023. I have continued to work on this repository after the project was officially submitted. If you wish to browse the repository at the project deadline, click here.

Table of Contents

The Card Game Dobble

Dobble is a popular card game that challenges players to spot matching symbols between pairs of cards. While there are different modes of play, the basic idea of the game remains the same: Every two cards in a deck of playing cards have exactly one symbol in common, and players must identify that unique symbol as quickly as possible. A classic Dobble deck consists of 55 playing cards, with 8 different symbols placed on each card. The constraint that any two cards share one and only one symbol gives rise to a rich mathematical structure known as finite projective planes. There are several well-written articles on the web about this topic, some of which I have listed in the References section of this README.

card-game-dobble

A set of Dobble cards. © Brettspiel Empfehlungen. Used with permission.

The goal of this project when Nina (a fellow student) and I started working on it was twofold:

  1. Implement an algorithm that can generate custom Dobble decks based on a set of open-source emojis that serve as symbols on the cards.
  2. Set up a deep learning pipeline to train, validate, and test arbitrary model architectures with the goal of teaching those models to play Dobble.

In this README, I will walk you through the indidvidual steps we took to achieve these goals. If you're interested in running the Jupyter notebooks on your local machine, check out the Getting Started section.

Generating Dobble Decks

In order to create our own Dobble decks, we would need to go through the following steps:

  1. Find open source emojis to use as symbols on the playing cards.

  2. Develop an algorithm that takes an arbitrary number of emojis and places them on a white disk on top of a transparent background to resemble a single playing card. In doing so, we need to make sure that no two emojis overlap. Ideally, the way we place the emojis on the white disk will resemble the way the symbols are arranged on actual Dobble playing cards.

  3. Develop an algorithm that determines which emojis to place on which card to satisfy the constraint that every two playing cards have exactly one emoji in common.

The emojis used for this project are taken from OpenMoji - the open-source emoji and icon project. Here are the reasons for choosing OpenMoji:

  • The emojis are open source and published under the Creative Commons Share Alike License 4.0.

  • There are over 4,000 emojis to choose from!

  • All emojis follow a common styleguide. Most importantly, all emojis use the same primary and secondary colors. This is crucial for resembling the original Dobble playing cards, as the symbols on those cards also use only a finite set of colors (i.e., a single shade of green, a single shade of yellow, and so on).

Here are the emojis we have chosen to resemble the original Dobble symbols as close as possible:

classic-dobble-emojis

The emojis from OpenMoji used to create our own deck of Dobble playing cards.

Next, we had to implement a logic that would place the selected emojis on our virtual playing cards in such a way that ...

  • the available space on each card would be utilized as much as possible,

  • no two emojis would overlap,

  • the arrangement of emojis on our virtual playing cards would resemble the appearance of actual Dobble cards.

To solve this task, we used results from the mathematical theory of circle packing. Circle packing involves arranging circles in a confined space so that they touch but don't overlap, aiming to fit as many circles as possible. The data we used for this project were taken from Prof. Dr.-Ing. Eckehard Specht's website packomania.com. A few selected circle packings for different numbers of circles are visualized below.

packings-illustration

Different types of circle packings for different numbers of circles.

Although all the square images of the emojis are the same size (in pixels), the emojis within them take up different amounts of space. In addition, some emojis extend far into the corners of the images, while others do not. To account for this, we have implemented a simple algorithm that automatically resizes each emoji to take up as much space as possible without extending outside the incircle of the square image. Below you can find an emoji that extended too far into the top right-hand corner, and consequently was downsized to correct for this.

downsized-emoji

Emojis that extend into the corners are automatically downsized.

The ice emoji, on the other hand, does not use nearly all of the space available in the square image, so it is automatically enlarged.

downsized-emoji

Emojis that are too small are automatically enlarged.

Below you can see the full set of emojis, automatically resized to take up as much space as possible without extending outside the incircle of the square image.

resized-classic-dobble-emojis

Resized emojis.

With the emojis and their placement on the individual cards all figured out, we needed to implement an algorithm that would ultimately tell us which emoji to place on which card to create a valid deck of Dobble playing cards. Essentially, this comes down to computing the so-called incidence matrix of a finite projective plane of order $p^k$ for a prime number $p$. To read up on how this is done, I highly recommend this article by Micky Dore. Below is the full set of $57$ playing cards used in this project.

classic-dobble-deck

The full set of playing cards used in this project.

A Deep Learning Pipeline

At this point in the project, we were essentially able to create our own dataset to use for training purposes. The full dataset, created using our imitation of the classic Dobble deck, consisted of $(57 * 56) / 2 = 1596$ pairs of cards, which we divided into a training set, a validation set, and a test set (using a $70 / 15 / 15$ split). Thus, our training set essentially consisted of $1117$ pairs of images of playing cards. However, we did not feed these image pairs directly into the network. Instead, in order to increase the variability of our training set, we ...

  • applied image augmentation techniques to both images of the individual playing cards,
  • randomly positioned the two cards in two of the four quadrants of a randomly colored square background,
  • and applied additional image augmentation techniques to this combined image of the two playing cards against a colored background.

The image augmentation techniques we chose were intended to mimic the conditions a human being would face when playing the game (e.g., varying lighting conditions, different viewing angles, etc.).

image-augmentation

Using image augmentation to increase the variability of our dataset.

All of this was implemented in our custom DobbleDataset dataset class. Finally, we had the data we needed to train our models. All that remained was to set up a deep learning pipeline. To do this, we coded our own training, validation, and testing routines. We made sure to regularly save checkpoints during training, and we performed a simple sanity check before starting the training routines by overfitting models on a single batch of training data. This allowed us to get rid of any major bugs in advance. Additionally, we implemented the REX learning rate scheduler based on the LRScheduler class available in torch.optim.lr_scheduler. The decy factor used in this schedule is illustrated below.

rex-schedule

The REX learning rate schedule.

Comparing ResNet Models

To cap things off, we compared the performance of ResNet models of different depths. In hindsight, this was not very enlightening, as the smallest ResNet model already solved the task with perfect accuracy (evaluated on a test set the network had never seen before). The results we observed are also not surprising: the larger models required more epochs of training to produce meaningful results, because more parameters had to be fine-tuned to solve the task. In fact, 300 epochs of training was not enough to achieve (near) perfect accuracy for the two largest ResNet models.

resnet-comparison

Training results for ResNet models of different depths.

Getting Started

Follow these steps to clone the repository and run the project on your local machine.

Prerequisites

  • Python 3.11 or 3.12 installed on your machine.
  • Operating system: Unix/macOS

Clone the Repository

  1. Open a terminal or command prompt on your local machine.

  2. Clone the repository using git:

git clone https://github.com/mrvnthss/deep-learning-with-dobble
cd deep-learning-with-dobble

Set up a Virtual Environment (Optional but Recommended)

Before you begin, make sure that pip is installed on your system. pip is a package manager for Python, and it's usually included by default when you install Python. To ensure that pip is installed, run the following commands:

python3 -m pip install --user --upgrade pip
python3 -m pip --version

Setting up a virtual environment helps isolate project dependencies. If you don't have virtualenv installed, you can install it using:

python3 -m pip install --user virtualenv

Create and activate a virtual environment:

python3 -m venv .venv
source .venv/bin/activate

Install Dependencies

All the dependencies that are required to execute the notebooks in this repository are listed in the requirements.txt file. Installing these is a breeze. Simply issue the following command after you have set up your virtual environment:

pip install -r requirements.txt

Start JupyterLab

To start JupyterLab, simply run the following command inside your activated virtual environment:

juypter lab

That's it, you're good to go! Simply open one of the notebooks. The deep-learning-with-dobble.ipynb notebook contains most of the project, so I'd recommend exploring that one first!

Languages and Tools

jupyter   python   pytorch   numpy   opencv   pandas

References

Acknowledgments

The emojis used in this project are designed by OpenMoji - the open-source emoji and icon project. License: CC BY-SA 4.0

The data on circle packings used in this project are made available by Prof. Dr.-Ing. Eckehard Specht on his website packomania.com.

License

This project is open source and available under the GNU General Public License v3.0 (GPLv3). The GPLv3 is a copyleft license that allows for the free distribution, modification, and use of this software, ensuring that all derivatives of this work are also available under the same license. Here’s a summary of the license’s main points:

  • Freedom to Use: You are free to use this software for any purpose, including commercial applications, in accordance with the license terms.

  • Freedom to Modify: You can modify the source code of this software, allowing you to tailor it to your needs or improve upon it. Your modifications must also be licensed under GPLv3.

  • Freedom to Share: You can distribute this software freely, whether in its original form or with your modifications, as long as you also make the source code available under the same license terms.

  • Share Alike: If you distribute modified versions of this software, you must also do so under the GPLv3, ensuring that all derivatives remain free and open source under the same terms.

  • Attribution and Notices: When distributing or modifying the project's software, you must retain all copyright notices and author attributions found in the original work, as well as provide notices that you have modified the work. This ensures transparency and respects the original creators' contributions.

  • No Additional Restrictions: You may not impose any further restrictions on the recipients' exercise of the rights granted under the license. This includes not using legal terms or technological measures that legally restrict others from doing anything the license permits.

For more detailed information, please review the full LICENSE text. By using, distributing, or contributing to this project, you agree to abide by the terms of the GNU GPLv3.

deep-learning-with-dobble's People

Contributors

mrvnthss avatar

Stargazers

 avatar

Watchers

 avatar  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.