Skip to content

oliverdenton/wine-classification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Supervised Learning Wine Classification

Using supervised learning and a Bayesian classifier to determine the type of grape used in a given wine. A leave-one-out approach was taken to test and train the model. This is where:

  • The first sample from the data set is used for testing
  • The model is trained using all the remaining N - 1 samples from the data set
  • This is repeated using the second sameple and so forth until all N samples have been tested

In the end, we will have trained N different classifiers. This allows us use sufficient data to test and train the classifier and estimate its parameters more accurately. As opposed to splitting the data set in half, as seen in code omitted from classifier.py.

The Data Set

The dataset used can be found at https://archive.ics.uci.edu/ml/datasets/wine and contains 178 samples each with 13 measurements.

About

Using supervised learning and a Bayesian classifier to determine the type of grape used in a given wine.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages