2019.12.08(pm): Multi-Layer Perceptron

Perceptron has the limitation that it can only handle situations where linear separation is possible. The problem of XOR classification is that the perceptron has a 75% accuracy rate because one sample is wrong no matter which decision line is used. In 1969, Marvin Minsky’s Perceptrons, the father of artificial intelligence, revealed this fact, and …

2019.12.08(am): Types of Machine Learning

As there are various problems to be solved by machine learning, there are various types of machine learning. In the past, machine learning algorithms were largely divided into supervised learning and unsupervised learning. Recently, as reinforcement learning becomes more important, it is being divided into supervised learning, unsupervised learning, and reinforced learning. Supervised learning In …

2019.12.01(pm): Gradient descent method

This article describes the gradient descent method, one of the basic function optimization methods. The gradient descent method is one of the representative ways to apply the concept of differential to optimization problems and is to find the local minimum of a function. The gradient descent method is also called steepest descent method. Gradient descent …

2019.11.30(pm): Machine Learning – Linear Regression

Today we will look at the concept of linear regression. The dictionary meaning of regression means “return to the origin state.” The term begins with the British geneticist Francis Galton studying the laws of inheritance. In studying the relationship between parents and children’s heights, Galton surveyed and tabulated the averages of heights of fathers and …