ยทOngoingยท
20
Sign in or sign up to participate

CIFAR-10 Image Classification

Try out your hand at building a multi-class image classification model for the CIFAR-10 dataset!

Overview

Computer vision is an exciting domain within machine learning that sees a range of interesting applications. This educational challenge aims to introduce you to convolutional neural networks (CNNs) through a multi-class image classification challenge based on the CIFAR-10 dataset.

This is a great opportunity to learn about some core ideas in computer vision using PyTorch.

Getting started ๐Ÿ’ก

To get started, take a look at our tutorial notebook:

https://github.com/DoxaAI/educational-challenges/blob/main/cifar-10/getting-started.ipynb

A simple convolutional neural network is provided to help you get started:

ConvMaxPoolConvMaxPoolFlatten3@32x328@30x308@15x1516@13x1316@6x61x641x10

If you have any questions, feel free to ask them in the DOXA AI community Discord server.

The data ๐Ÿ’พ

The CIFAR-10 dataset was originally collected by Alex Krizhevsky, Vinod Nair and Geoffrey Hinton at the University of Toronto. It consists of 60,000 32ร—32 colour RGB images in total (split across a 50,000-image training dataset and a 10,000-image test dataset), split across ten classes outlined below.

CIFAR-10 dataset

Evaluation ๐Ÿ“

Your submissions are ranked according to their accuracy in this competition.