Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 부르트포스
- 실버쥐
- 백준
- 그리디
- 그래프
- ReLU
- NeuralNetwork
- BFS
- Algorithm
- 프로그래머스
- Blockchain
- Node.js
- 백트래킹
- ios
- Docker
- 캡스톤정리
- Stack
- C++
- 탐색
- Greedy
- mysql
- 플로이드와샬
- Swift
- sigmoid
- 풀이
- 문제풀이
- dp
- 알고리즘
- dfs
- DeepLearning
Archives
- Today
- Total
목록GradientDescent (1)
개발아 담하자
[Deep Learning] Back Propagation 구현하기
Gradient Descent 를 이용해서 Back Prorpagtion 을 구현해보자. Gradient Descent 란 ? https://silver-g-0114.tistory.com/69 [Deep Learning] Gradient Descent 란 ? Gradient Descent (경사 하강법) 이란? 일단 w, b 를 임의로 설정한 일차함수와 데이터 사이의 평균 제곱 오차 (MSE : Mean Squared Error) 를 구한다. 이 평균 제곱 오차를 비용 함수(cost function) 이라고 부른.. silver-g-0114.tistory.com 1. functions.py def sigmoid(x): return 1 / (1 + np.exp(-1)) def softmax(x): e = ..
🚀 Deep Learning
2020. 5. 3. 16:06