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 | 29 | 30 | 31 |
Tags
- paper
- Linear algebra
- 논문
- reinforcement learning
- machine learning
- Python Programming
- 판다스
- 데이터 분석
- rl
- convex optimization
- statistics
- ML-Agent
- 김성훈 교수님
- 딥러닝
- pandas
- Hessian Matrix
- Laplacian
- 리스트
- David Silver
- Deep Learning
- 유니티
- list
- 모두를 위한 RL
- neural network
- Jacobian Matrix
- unity
- 강화학습
- optimization
- 사이킷런
- Series
Archives
RL Researcher
Taylor Expansion 본문
$\boldsymbol{Taylor \ expansion}$은 $\boldsymbol{Taylor \ series}$로도 불리며, Optimization Method를 이해하는데 매우 중요하다.
first fundamental theorem of calclus로부터 아래의 수식이 성립함을 알 수 있다.
$$f(x+h)=f(x)+\int_{0}^{h}f^{'}(x+a)da$$
정의를 중복해서 적용하면 $x$ 주변의 $f$의 Taylor expansion을 산출한다.
$$f(x+h)=f(x)+\int_{0}^{h}(f^{'}(x)+\int_{0}^{a}f^{''}(x+b)db)da \\ = f(x)+f^{'}(x)h+\int_{0}^{h} \int_{0}^{a} f^{''}(x+b)db \ da \\ = f(x)+f^{'}(x)h+\int_{0}^{h} \int_{0}^{a}(f^{''}(x)+ \int_{0}^{b}f^{'''}(x+c)dc)db \ da \\ =f(x)+f^{'}(x)h +\frac{f^{''}(x)}{2!}+ \int_{0}^{h} \int_{0}^{a} \int_{0}^{b} f^{'''}(x+c)dc \ db \ da \\ \vdots \\ =f(x) + \frac{f^{'}(x)}{1!}h + \frac{f^{''}(x)}{2!}h^{2}+\frac{f^{'''}(x)}{3!}h^{3}+\cdots \\ = \sum_{n=0}^{\infty}\frac{f^{n} (x)}{n!}h^{n}$$
'Optimization' 카테고리의 다른 글
Gradient, Jacobian Matrix, Hessian Matrix, Laplacian (0) | 2021.07.07 |
---|---|
미분성 (Differentiability) (0) | 2021.07.07 |
Bounded sequence (0) | 2021.07.06 |
Comments