일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CycleGAN
- MachineLearning
- Python
- 체비셰프부등식
- GAN
- bayesian
- tensor
- AlexNet
- pytorch
- ResNet
- Bayes'Theorem
- 마코프부등식
- ImageCaptioning
- SWEA #Python #알고리즘
- Bayes'Rule
- DeepLearing
- TorchHub
- bayes
- 젠센부등식
- PRML
- 머신러닝
- NeuralTalk
- DeepLearning
- Today
- Total
목록전체 글 (22)
euphoriaO-O
#2020카카오인턴십 문제 def solution(numbers, hand): ans = '' L, R = 10,12 # 거리 계산이 편하도록 # 자명 for n in numbers: if n in [1,4,7]: ans += 'L' L = n elif n in [3,6,9]: ans += 'R' R = n else: n = 11 if n == 0 else n # 거리 계산이 편하도록 # 거리 계산 i,j = (n-1)//3, (n-1)%3 #1,1 Li,Lj = (L-1)//3, (L-1)%3 #1,0 Ri,Rj = (R-1)//3, (R-1)%3 #0,2 Ld = abs(i-Li) + j-Lj Rd = abs(Ri-i) + Rj-j # 가까운 손 & ~손잡이 확인 if Ld == Rd: ans += ..
나의 잘못된 코드: 런타임 에러 for t in range(1,11): n,s = int(input()), input() while tmp != s: tmp = s s = s.replace('00', '').replace('11', '').replace('22', '').replace('33', '').replace('44', '').replace('55', '').replace('66', '').replace('77', '').replace('88', '').replace('99', '') print('#%d %s' % (t, s)) Stack을 이용한 코드 for t in range(1,11): n,s = input().split() answer = '' for ss in s: if len(answe..
정리 1 $X$가 확률변수이며 $m$은 양의 정수이고 $E[X^m]$이 존재한다고 하자. 만약 $k$가 정수이고 $k\le m$이면 $E[X^m]$가 존재한다. (증명) 연속형인 경우에 증명하나 적분을 합으로 바꿔 이산형을 증명할 수 있다. $f(x)$를 $X$의 pdf라고 하자. 그러면 $\int_{-\infty}^{\infty} {\mid x \mid}^k f(x) dx = \int_{\mid x \mid \le 1} {\mid x \mid}^k f(x) dx + \int_{\mid x \mid > 1}{\mid x \mid}^k f(x) dx$ $\le \int_{\mid x \mid \le 1} f(x) dx + \int_{\mid x \mid > 1} {\mid x \mid}^m f(x) dx$..
단순 선형 회귀 모형 (Simple Linear Regression Analysis) $y=\beta_0+\beta_1x+\epsilon$ $\beta_0$와 $\beta_1$ 의 값 $\hat{\beta_0}$, $\hat{\beta_1}$으로 추정하는 방법 1. 최소제곱법(Least Squares Method)에 의한 추정 오차제곱합 $S$를 최소로 하는 $\beta_0$와 $\beta_1$의 값 $\hat{\beta_0}$, $\hat{\beta_1}$ 찾기 $S=\sum_{i=1}^{n} \epsilon_i^2=\sum_{i=1}^{n} (y_i-\beta_0+\beta_1x_i)^2$ $S$를 최소화하기 위해 $\beta_0$와 $\beta_1$으로 편미분한다. ... 위의 식을 0으로 만들면 ..