Skip to content

SunnerLi/Apple_or_Orange

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apple or Orange

This repo show the different model to classify the apple and orange.

Motivation

It's a long history to discuss the object detection and the object recognition. The neural network is usually used to complete this task. After the professor Alex Krizhevsky won the championship, the deep learning is discussed frequently. This project adopt some model to do the similar task.

Abstract

This project use Keras module to construct the neural network structures. The structures include CIFAR10, VGG16, Perceptron, small perceptron and sunnerNet.

Parameter

  • The parameters of CIFAR10 is reference the tensorflow tutorial.
  • The parameters of perceptron is tuned by myself.
  • The parameters of VGG-16 is reference from the keras example.

SunnerNet

The sunnerNet is the structure designed by myself, which is revised from the AlexNet. The sunnerNet has 4 Convolutional layers. The following layer is a FC layer and the Softmax layer. The structure is shwon below. The detail parameter can refer my code.

    # 1st
        conv1 -> relu1 -> maxpool1 -> norm1

    # 2nd
     -> conv2 -> relu2 -> maxpool2 -> norm2

    # 3rd
     -> conv3 -> relu3 -> maxpool3

    # 4th
     -> conv4 -> relu4 -> maxpool4

    # FC & output
     -> FC1 -> tanh1 -> FC2 -> softmax

Result

(Skip)

Training Data

The images are collected from Bing and google. Some images are from Fruit Image Data set(FIDS). You can also make or extend your image set. See this.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages