250x250
반응형
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 |
Tags
- 오토사
- it
- TOEFL
- GeorgiaTech
- backtest
- backtrader
- 토플
- 블록체인
- 암호화폐
- 백트레이더
- 프로그래밍
- 개발자
- 비트코인
- 파이썬
- Bitcoin
- 확률
- 아마존 웹 서비스
- 토플 라이팅
- can
- python
- 퀀트
- Cloud
- 백테스트
- AWS
- 자동차sw
- 클라우드
- probability
- AUTOSAR
- toefl writing
- 자동매매
Archives
- Today
- Total
목록2024/09/18 (1)
Leo's Garage
[Numpy] Cost Function 연산 시, linalg.norm을 사용하는 이유
예시 코드는 아래와 같다. # PACKAGE# First load the worksheet dependencies.# Here is the activation function and its derivative.sigma = lambda z : 1 / (1 + np.exp(-z))d_sigma = lambda z : np.cosh(z/2)**(-2) / 4# This function initialises the network with it's structure, it also resets any training already done.def reset_network (n1 = 6, n2 = 7, random=np.random) : global W1, W2, W3, b1, b2, b3 W1 = r..
Study/파이썬
2024. 9. 18. 23:05