ucrayca / Aycaucr

0 stars 0 forks source link

Introduction to Machine Learning Algorithms #9

Closed caglarmert closed 4 years ago

caglarmert commented 4 years ago

Yöntemleri için kullanılan algoritmaların tek cümlelik özetleri hazırlanacak.

ucrayca commented 4 years ago

CLUSTERING

K-means clustering algorithm : It is the simplest unsupervised learning algorithm that solves clustering problem. K-means algorithm partition n observations into k clusters where each observation belongs to the cluster with the nearest mean serving as a prototype of the cluster .

  1. Specify the desired number of clusters K
  2. Randomly assign each data point to a cluster 
  3. Compute cluster centroids 
  4. Re-compute cluster centroids 
  5. Repeat steps 4 and 5 until no improvements are possible 
ucrayca commented 4 years ago

CLASSIFICATION

  1. Linear Models
  1. Nonlinear models

Naive Bayes Naive Bayes is a probabilistic classifier in Machine Learning which is built on the principle of Bayes theorem. Naive Bayes classifier makes an assumption that one particular feature in a class is unrelated to any other feature and that is why it is known as naive.

Decision Tree Decision tree, as the name states, is a tree-based classifier in Machine Learning. You can consider it to be an upside-down tree, where each node splits into its children based on a condition.

Logistic Regression Logistic regression is a binary classification algorithm which gives out the probability for something to be true or false.

Support Vector Machine (SVM)