atomutek / Food-Recipe-CNN

DeepChef: Classification of Cooking Dishes with Machine Learning πŸ‡ πŸͺ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool




Deep Learning food image recognition system for cooking recipe retrieval

Overview

Maturaarbeit 2018: This work makes usage of deep convolutional neural networks with Keras to classify images into 230 food categories and to output a matching recipe. The dataset contains >400'000 food images and >300'000 recipes from chefkoch.de.

Hardly any other area affects human well-being to a similar extent as nutrition. Every day countless of food pictures are published by users on social networks; from the first home-made cake to the top Michelin dish, the joy of the world is shared with you in case a dish is successful. It is a fact that no matter how different you may be from each other, good food is appreciated by everyone. Advances in the classification or object recognition of individual cooking ingredients are sparse. The problem is that there are almost no public edited records available.

The code (Jupyter notebooks) is provided with numerous comments in German. The process looks like this:

1│── Data preparation
β”‚ └── Clearing data
β”‚ └── Data augmentation

2│── Data Analyse und Visulation, Daten splitten (Train, Valid, Test)

3│── Versuche mit ersten einfachen ML Modellen
β”‚ └── Nearest Neighbor classifier (kNN)
β”‚ └── k-Means Clustering
β”‚ └── Support Vector Machine

4│── Transfer Learning: Training von pre-trained CNN (Convolutional Neural Network)
β”‚ └── AlexNet, VGG, ResNet, GoogLeNet

5│── Training von eigenem CNN
β”‚ └── Optimization

6│── Ergebnisse visualisieren

7└── Erstellen einer Android Web Applikation (still open)

Abstract

This work deals with the problem of automated recognition of a photographed cooking dish and the subsequent output of the appropriate recipe. The distinction between the difficulty of the chosen problem and previous supervised classification problems is that there are large overlaps in food dishes, as dishes of different categories may look very similar only in terms of image information. The task is subdivided into smaller areas according to the motto divide and conquer: According to the current state, the largest German-language dataset of more than 300'000 recipes will be presented, with a newly developed method, according to the author's knowledge, presented by the combination of object recognition or cooking court recognition using Convolutional Neural Networks (short CNN) and the search of the nearest neighbor of the input image (Next-Neighbor Classification) in a record of over 400,000 images. This combination helps to find the correct recipe more likely, as the top-5 categories of the CNN are compared to the next-neighbor category.

DeepChef



The result is the product DeepChef. The web application (coming soon) expects a meal picture as input. As a result, you get the associated recipes.

About

DeepChef: Classification of Cooking Dishes with Machine Learning πŸ‡ πŸͺ


Languages

Language:Jupyter Notebook 85.4%Language:HTML 14.5%Language:Python 0.0%Language:CSS 0.0%Language:JavaScript 0.0%