Yang, Luyu.  Postal service for sorting mails by the postal code written on the envelop  Bank system for processing checks by reading the amount of.

Slides:



Advertisements
Similar presentations
Applications of one-class classification
Advertisements

Face Recognition: A Convolutional Neural Network Approach
Detecting Faces in Images: A Survey
Computer Vision Lecture 18: Object Recognition II
Tiled Convolutional Neural Networks TICA Speedup Results on the CIFAR-10 dataset Motivation Pretraining with Topographic ICA References [1] Y. LeCun, L.
Thesis title: “Studies in Pattern Classification – Biological Modeling, Uncertainty Reasoning, and Statistical Learning” 3 parts: (1)Handwritten Digit.
CS771 Machine Learning : Tools, Techniques & Application Gaurav Krishna Y Harshit Maheshwari Pulkit Jain Sayantan Marik
RBF Neural Networks x x1 Examples inside circles 1 and 2 are of class +, examples outside both circles are of class – What NN does.
Pattern Recognition Topic 1: Principle Component Analysis Shapiro chap
Pattern Recognition. Introduction. Definitions.. Recognition process. Recognition process relates input signal to the stored concepts about the object.
Supervised Learning Networks. Linear perceptron networks Multi-layer perceptrons Mixture of experts Decision-based neural networks Hierarchical neural.
INSTANCE-BASE LEARNING
K-means Based Unsupervised Feature Learning for Image Recognition Ling Zheng.
Autoencoders Mostafa Heidarpour
Handwritten Thai Character Recognition Using Fourier Descriptors and Robust C-Prototype Olarik Surinta Supot Nitsuwat.
CS Instance Based Learning1 Instance Based Learning.
Radial-Basis Function Networks
Face Recognition Using Neural Networks Presented By: Hadis Mohseni Leila Taghavi Atefeh Mirsafian.
Image Recognition and Processing Using Artificial Neural Network Md. Iqbal Quraishi, J Pal Choudhury and Mallika De, IEEE.
ENN: Extended Nearest Neighbor Method for Pattern Recognition
1 Template-Based Classification Method for Chinese Character Recognition Presenter: Tienwei Tsai Department of Informaiton Management, Chihlee Institute.
CSSE463: Image Recognition Day 21 Upcoming schedule: Upcoming schedule: Exam covers material through SVMs Exam covers material through SVMs.
Saichon Jaiyen, Chidchanok Lursinsap, Suphakant Phimoltares IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 21, NO. 3, MARCH Paper study-
An Example of Course Project Face Identification.
 The most intelligent device - “Human Brain”.  The machine that revolutionized the whole world – “computer”.  Inefficiencies of the computer has lead.
Explorations in Neural Networks Tianhui Cai Period 3.
Radial Basis Function Networks:
COMPARISON OF IMAGE ANALYSIS FOR THAI HANDWRITTEN CHARACTER RECOGNITION Olarik Surinta, chatklaw Jareanpon Department of Management Information System.
Lecture notes for Stat 231: Pattern Recognition and Machine Learning 1. Stat 231. A.L. Yuille. Fall 2004 Practical Issues with SVM. Handwritten Digits:
Handwritten Recognition with Neural Network Chatklaw Jareanpon, Olarik Surinta Mahasarakham University.
Handwritten Hindi Numerals Recognition Kritika Singh Akarshan Sarkar Mentor- Prof. Amitabha Mukerjee.
Chapter 4: Pattern Recognition. Classification is a process that assigns a label to an object according to some representation of the object’s properties.
Handwritten digit recognition
A NOVEL METHOD FOR COLOR FACE RECOGNITION USING KNN CLASSIFIER
COMPUTER GRAPHICS. Can refer to the number of pixels in a bitmapped image Can refer to the number of pixels in a bitmapped image The amount of space it.
Analysis of Classification Algorithms In Handwritten Digit Recognition Logan Helms Jon Daniele.
Fast Query-Optimized Kernel Machine Classification Via Incremental Approximate Nearest Support Vectors by Dennis DeCoste and Dominic Mazzoni International.
Hand-written character recognition
LBP & More Slides from Dr. Shahera Hossain. Pixel Neighborhood-based Feature The most important for texture analysis is to describe the spatial behavior.
CS 188: Artificial Intelligence Learning II: Linear Classification and Neural Networks Instructors: Stuart Russell and Pat Virtue University of California,
Neural networks (2) Reminder Avoiding overfitting Deep neural network Brief summary of supervised learning methods.
1 Convolutional neural networks Abin - Roozgard. 2  Introduction  Drawbacks of previous neural networks  Convolutional neural networks  LeNet 5 
1 A Statistical Matching Method in Wavelet Domain for Handwritten Character Recognition Presented by Te-Wei Chiang July, 2005.
Optical Character Recognition
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Handwritten Digit Recognition Using Stacked Autoencoders
Neural Network Architecture Session 2
CSC321: Neural Networks Lecture 22 Learning features one layer at a time Geoffrey Hinton.
Radial Basis Function G.Anuradha.
References [1] - Y. LeCun, L. Bottou, Y. Bengio and P. Haffner, Gradient-Based Learning Applied to Document Recognition, Proceedings of the IEEE, 86(11): ,
Classification of Hand-Written Digits Using Scattering Convolutional Network Dongmian Zou Advisor: Professor Radu Balan.
Digit Recognition using SVMS
Final Year Project Presentation --- Magic Paint Face
Non-linear classifiers Neural networks
Neural Networks: Improving Performance in X-ray Lithography Applications ECE 539 Ryan T. Hogg May 10, 2000.
Handwritten Digits Recognition
Outline Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner, “Gradient-based learning applied to document recognition,” Proceedings of the IEEE, vol. 86, no.
شبکه عصبی تنظیم: بهروز نصرالهی-فریده امدادی استاد محترم: سرکار خانم کریمی دانشگاه آزاد اسلامی واحد شهرری.
Introduction to Deep Learning with Keras
Neuro-Computing Lecture 4 Radial Basis Function Network
network of simple neuron-like computing elements
Convolutional neural networks Abin - Roozgard.
On Convolutional Neural Network
Zip Codes and Neural Networks: Machine Learning for
CSSE463: Image Recognition Day 18
Using Manifold Structure for Partially Labeled Classification
Face Recognition: A Convolutional Neural Network Approach
CAMCOS Report Day December 9th, 2015 San Jose State University
Presentation transcript:

Yang, Luyu

 Postal service for sorting mails by the postal code written on the envelop  Bank system for processing checks by reading the amount of money using computers

 Design artificial neural network for handwritten digits recognition  Develop proposed network using training samples in MNIST database  Achieve good testing result

Assume each pixel in the digit image is either black or white, which contains 1 bit information. To convert the binary sequence into decimal system {0, 0.1, …,0.9}, the number of elements should be at least log 10 (2 784 ), approximately Let the higher precision in MATLAB compensate for the gray edge of stroke. Therefore, 237 neurons are used in the hidden layer to store patterns of training samples.

In the original 784 pixels, even two samples which are very close under Euclidean norm may represent different digits. So quasi nearest neighbor classifier operates at the output of the hidden layer, where the key features are supposed to be more pronounced.

ClassifierTesting Error MLP + Quasi Nearest Neighbor1.75% K-nearest neighbors using Euclidean norm 1 5.0% Principle component analysis 1 3.3% Radial basis network 1 3.6% Support vector machine using Gaussian kernel 1 1.4% 2-layer MLP of 300 units 1 4.7% 3-layer MLP of units % 3-layer MLP of units % 1.Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner, "Gradient-based learning applied to document recognition," Proceedings of the IEEE, vol. 86, no. 11, pp , Nov