Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 828 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 828 Bytes

machine_learning

Implementations made for the Master's discipline. (Machine Learning)

This is some implementations made for me to solve problems in my classes. Each folder has some scripts to calculate many problems from UCI Machine Learning repository. The datasets have preprocessed with 80/20 and min-max normalization, with 30 random realizations. Some models have another file used for find the best params using cross validation with k-folds.

01 - kNN / k-Nearest Neighbors

02 - MDC / Mininum distance to centroid

03 - Naive Bayes

04 - Bayes Classifier

05 - Bayes Classifier with Rejection

06 - k-Means with Rejection (classification problem)

07 - GMM / Gaussian Mixture Models (Using E-M to train) (classification and image segmentation)

08 - Parzen Window

09 - LSSVM / Least Squares Support Vector Machines