Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save f-rumblefish/551d050f5bacd6452b55513facd4dea5 to your computer and use it in GitHub Desktop.
Save f-rumblefish/551d050f5bacd6452b55513facd4dea5 to your computer and use it in GitHub Desktop.
MLP (3 layers, 32 neurons, 30 epochs) ...
accuracy = 0.9986 time = 14.8910531305
[[3378 0 0]
[ 0 3407 0]
[ 13 1 3201]]
Naive Bayes ...
accuracy = 0.9874 time = 1.30055759897
[[3252 0 126]
[ 0 3407 0]
[ 0 0 3215]]
Random Forest ...
accuracy = 1.0 time = 3.23794154915
[[3378 0 0]
[ 0 3407 0]
[ 0 0 3215]]
Gradient Boosting ...
accuracy = 1.0 time = 128.849120774
[[3378 0 0]
[ 0 3407 0]
[ 0 0 3215]]
SVM ...
accuracy = 1.0 time = 116.055568152
[[3378 0 0]
[ 0 3407 0]
[ 0 0 3215]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment