일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ChIPseq
- github
- DataFrame
- Batch effect
- scRNAseq
- scRNAseq analysis
- matplotlib
- single cell rnaseq
- single cell analysis
- CUTandRUN
- PYTHON
- Bioinformatics
- js
- ngs
- EdgeR
- pandas
- Git
- javascript
- python matplotlib
- CUT&RUN
- single cell
- HTML
- 비타민 C
- 싱글셀 분석
- MACS2
- julia
- drug muggers
- cellranger
- drug development
- CSS
Archives
- Today
- Total
목록julia backpropagation (1)
바이오 대표
[Differentiation] using Zygote, reverse differentiation
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
2021. 10. 13. 17:28