일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Kafka
- Grafana
- 스프링부트
- Helm
- Software maestro
- traceId
- keda
- slow query
- propogation
- Database
- Kubernetes
- spring boot
- hammerDB
- 0 replica
- blue-green
- minreplica
- Leaderboard
- 동등성
- SW Maestro
- Salting
- Strimzi
- docket
- logback
- Debezium
- SW 마에스트로
- Benchmarks
- zset
- eks
- MSSQL
- yml
- Today
- Total
김태오
Perceptron 본문
Artificial Neuron: A perceptron is an artificial neuron or a simplified model of a biological neuron, used as a building block for artificial neural networks.
Binary Classification: Perceptrons are primarily used for binary classification tasks, where the goal is to categorize input data into one of two possible classes or categories.
Linear Model: It is a linear model that takes a weighted sum of input features, adds a bias term, and applies an activation function (typically a step function) to produce an output.
Learning Algorithm: Perceptrons utilize a simple learning algorithm, which iteratively adjusts weights and biases based on the prediction errors made on the training data, in order to minimize classification errors.
Limitations: Perceptrons can only solve linearly separable problems and are limited in their ability to learn complex, non-linear patterns in data, which is overcome by using multi-layer perceptrons or other advanced neural network architectures.
'ML' 카테고리의 다른 글
Neural Networks (0) | 2023.04.25 |
---|---|
Decision Boundary (0) | 2023.04.25 |
CE Loss (0) | 2023.04.23 |
MSE (0) | 2023.04.23 |
Classification vs. Regression (0) | 2023.04.23 |