Category: Research

09
Nov
2017

Machine Learning Mastery

Naive Bayes Classifier From Scratch in Python The Naive Bayes algorithm is simple and effective and should…

08
Nov
2017

Machine Learning in MATLAB: KNN

dataset=csvread(‘F:\Machine Learning Training\OneDrive-2017-10-28\Datasets\clusterincluster.csv’,1,0); label = dataset(:,3); dataset = dataset(:, 1:2); rng(2); Mdl =fitcnb(dataset, label, ‘CrossVal’, ‘on’,’kfold’,10); Mdl…

21
Oct
2017

Statistics: For Machine Learning: Random Variables : Discrete and Continuous

https://www.youtube.com/watch?v=rifK8BtHaYI     Must See:   How to Calculate Probability Probability is the measure of how likely…

21
Oct
2017

Machine Learning is Solving Real Life Problems

 

11
Oct
2017

How to find Research Topic to Concentrate

https://cstheory.stackexchange.com/questions/9954/how-to-find-a-specific-research-topic-to-concentrate-on

28
May
2017

Training Set, Validation Set, Test Set

Training Set is a subset of the dataset used to build predictive models. Validation Set is a…