Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 747 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 747 Bytes

Too boo or not to boo -- that is the question

Small project to explore some ML algorithms for classification.

Task at hand: from certain (made-up) features (bone_length, rotting_flesh, hair_length, has_soul, color) I want to determine the type of the creature (Goblin, Ghost, Ghoul).

Classic Classifier

Random forests, Naive Bayes, SVM all deliver around 70% accuracy. A grid search for SVM delivered an accuracy of aroud 77%. Thus, these classifiers don't perform very well on the data set.

Building a neural network

I use tensorflow to build a simple neural network with 1 hidden layer. So far still very basic (hwo to find best values for neurons, epochs, batch_size...?)

Gives an accuracy around 60%, so pretty bad.