김태오

Neural Networks 본문

ML

Neural Networks

ystc1247 2023. 4. 25. 09:12

a type of machine learning algorithm inspired by the structure and function of the human brain.
They consist of multiple layers of interconnected nodes, or neurons, that process and transmit information.
Each neuron takes input data, performs a mathematical operation on it, and passes the result to the next layer of neurons.
During training, the network adjusts the strength of connections between neurons to optimize the output for a given input.
Neural networks can be used for a variety of tasks, such as image and speech recognition, natural language processing, and prediction.

 

Limitations of perceptrons:

There are cases where it is impossible to decide a linear boundary (ex. in XOR problems, the limit is 75% accuracy)

 

The Idea of MLP(MultiLayer Perceptron):

1. Hidden Layers

2. Sigmoid Functions

3. Back-Propogation Algorithms

'ML' 카테고리의 다른 글

Logistic Regression  (0) 2023.04.25
Decision Boundary  (0) 2023.04.25
Perceptron  (0) 2023.04.23
CE Loss  (0) 2023.04.23
MSE  (0) 2023.04.23