Prediction of Wine Grade

Slides:



Advertisements
Similar presentations
ECE 539 – Introduction to Artificial Neural Networks and Fuzzy Systems Henrique Parreiras Couto.
Advertisements

Face Recognition: A Convolutional Neural Network Approach
Sophomore Slumpware Predicting Album Sales with Artificial Neural Networks Matthew Wirtala ECE 539.
Data Mining Classification: Alternative Techniques
Scott Wiese ECE 539 Professor Hu
Alberto Trindade Tavares ECE/CS/ME Introduction to Artificial Neural Network and Fuzzy Systems.
How computers answer questions An introduction to machine learning Peter Barnum August 7, 2008.
“Use of contour signatures and classification methods to optimize the tool life in metal machining” Enrique Alegrea, Rocío Alaiz-Rodrígueza, Joaquín Barreirob.
Neural Networks Dr. Peter Phillips. Neural Networks What are Neural Networks Where can neural networks be used Examples Recognition systems (Voice, Signature,
Analysis of Classification-based Error Functions Mike Rimer Dr. Tony Martinez BYU Computer Science Dept. 18 March 2006.
Presented by Zeehasham Rasheed
Optimal Adaptation for Statistical Classifiers Xiao Li.
Distributed Representations of Sentences and Documents
On the Application of Artificial Intelligence Techniques to the Quality Improvement of Industrial Processes P. Georgilakis N. Hatziargyriou Schneider ElectricNational.
Project 1: Classification Using Neural Networks Kim, Kwonill Biointelligence laboratory Artificial Intelligence.
BY: JOSH TABOR Applying Multilayer Perceptron Artificial Neural Networks to Recognizing Piano Keystrokes.
Bayesian Networks. Male brain wiring Female brain wiring.
Hurieh Khalajzadeh Mohammad Mansouri Mohammad Teshnehlab
An Example of Course Project Face Identification.
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.
The Perceptron. Perceptron Pattern Classification One of the purposes that neural networks are used for is pattern classification. Once the neural network.
Breast Cancer Diagnosis via Neural Network Classification Jing Jiang May 10, 2000.
Evolutionary Algorithms for Finding Optimal Gene Sets in Micro array Prediction. J. M. Deutsch Presented by: Shruti Sharma.
Non-Bayes classifiers. Linear discriminants, neural networks.
Machine Learning for Spam Filtering 1 Sai Koushik Haddunoori.
An Artificial Neural Network Approach to Surface Waviness Prediction in Surface Finishing Process by Chi Ngo ECE/ME 539 Class Project.
Project 1: Classification Using Neural Networks Kim, Kwonill Biointelligence laboratory Artificial Intelligence.
Cheng-Lung Huang Mu-Chen Chen Chieh-Jen Wang
Intelligent Database Systems Lab Presenter: NENG-KAI, HONG Authors: HUAN LONG A, ZIJUN ZHANG A, ⇑, YAN SU 2014, APPLIED ENERGY Analysis of daily solar.
Musical Genre Categorization Using Support Vector Machines Shu Wang.
Miloš Kotlar 2012/115 Single Layer Perceptron Linear Classifier.
Artificial Neural Network System to Predict Golf Score on the PGA Tour ECE 539 – Fall 2003 Final Project Robert Steffes ID:
BAYESIAN LEARNING. 2 Bayesian Classifiers Bayesian classifiers are statistical classifiers, and are based on Bayes theorem They can calculate the probability.
Automatic Script Identification. Why do we need Script Identification OCRs are generally language dependent. Document layout analysis is sometimes language.
Feasibility of Using Machine Learning Algorithms to Determine Future Price Points of Stocks By: Alexander Dumont.
Classification of Breast Cancer Cells Using Artificial Neural Networks and Support Vector Machines Emmanuel Contreras Guzman.
PREDICTING SONG HOTNESS
Automatic Classification of Audio Data by Carlos H. L. Costa, Jaime D. Valle, Ro L. Koerich IEEE International Conference on Systems, Man, and Cybernetics.
Outline Problem Description Data Acquisition Method Overview
ECE 539 Project Jialin Zhang
Other Classification Models: Neural Network
A Support Vector Machine Approach to Sonar Classification
Source: Procedia Computer Science(2015)70:
Multi-Layer Perceptron On A GPU
Neural Networks Dr. Peter Phillips.
Predicting Stock Prices with Multi-Layer Perceptron
Natural Language Processing of Knee MRI Reports
Schizophrenia Classification Using
W/Z bosons classification
Self organizing networks
Bird-species Recognition Using Convolutional Neural Network
Feature Engineering Studio Special Session
ECE 471/571 - Lecture 19 Hopfield Network.
Collaborative Filtering Nearest Neighbor Approach
Neural Networks Advantages Criticism
Training a Neural Network
Object Classification through Deconvolutional Neural Networks
College Football Playoff Composition Prediction using Machine Learning
AirBnB Pricing Predictions
Aleysha Becker Ece 539, Fall 2018
Drive Time Average and Variation Estimator
Lecture 04: Multilayer Perceptron
Teaching machines to appreciate music
COSC 4335: Part2: Other Classification Techniques
Face Recognition: A Convolutional Neural Network Approach
Coronary Artery Bypass Risk Prediction Using Neural Networks
Pooja Pun, Avdesh Mishra, Simon Lailvaux, Md Tamjidul Hoque
Stock Predictions Project Presentation
Tschandl P1,2, Argenziano G3, Razmara M4, Yap J4
Presentation transcript:

Prediction of Wine Grade ECE 539: Intro to Artificial Neural Networks Matthew Kean

Wine Consumable product Various physicochemical properties that contribute to the flavor of it (i.e. ABV, pH, sugar content, etc.) Large market with significant competition to produce the best product

Goal of this Work Classification problem: determine the grade of a particular sample based only on the physicochemical properties Use a MLP to get a better classification rate than KNN If successful, the same method could be used for other consumable products

Data Collection Two different types of wine: one red and one white from a Portuguese vineyard Retrieved from UC-Ivine database (http://archive.ics.uci.edu/ml/datasets/Wine+Quality) 6000 samples total 11 features for each sample, with none missing

KNN Used a KNN classifier to determine the benchmark for a multi-layer perceptron classifier It had a peak value of 55% and an average classifying rate of 43%

Results for the MLP So far I have only been able to train MLPs with accuracies averaging 44% No advantage over the KNN yet

Other Work By reducing the number of classes, a classification rate of over 90% was achieved A different group obtained an 85% classification rate using a MLP, but they also got a slightly better classification rate using support vector machines.