일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Git
- drug muggers
- ngs
- js
- github
- CSS
- javascript
- julia
- single cell
- PYTHON
- HTML
- Bioinformatics
- pandas
- ChIPseq
- CUTandRUN
- cellranger
- 비타민 C
- DataFrame
- 싱글셀 분석
- scRNAseq
- python matplotlib
- scRNAseq analysis
- single cell rnaseq
- single cell analysis
- drug development
- MACS2
- EdgeR
- matplotlib
- Batch effect
- CUT&RUN
Archives
- Today
- Total
바이오 대표
[Differentiation] using Zygote, reverse differentiation 본문
Mathematical Optimization/Julia
[Differentiation] using Zygote, reverse differentiation
바이오 대표 2021. 10. 13. 17:28
Machine learning 중 Neural Network 를 이용한 트레이닝에서 backpropagation 을 이용해 모델의 parameters 을 재조정한다.
Backpropagation이 reverse differentiation 이다.
julia> using Zygote
julia> f'(a)
julia> Zygote.gradient(f, a)
julia> Zygote.gradient((x1, x2) -> (x1^2 + x2^2 - 0.1x1*x2) / (x1 + 1.0), ⋅ 0.2, 0.3)
'Mathematical Optimization > Julia' 카테고리의 다른 글
[Differentiation] using Symbolics, differentiation (미분) (0) | 2021.10.13 |
---|---|
[Optimization ] Ackley 그래프 그리기 (0) | 2021.10.13 |
[Julia] 기본 코드 ( ] , using, include( ), println( ) ) (0) | 2021.09.26 |
[ Julia ] 기초 문법 (variable, functions, for, if, array) (0) | 2021.09.26 |