일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- memory bank
- Server
- ma-lmm
- sliding video q-former
- timestamp-aware frame encoder
- CNN
- q-former
- MySQL
- tensorflow
- Artificial Intelligence
- autogluon
- 용어
- Linux
- LeNet-5
- Anaconda
- secure-file-priv
- Python
- timechat
- transference
- Kaggle
- jmeter
- Github
- 코딩테스트
- 백준
- hackerrank
- quantification
- long video understanding
- multimodal machine learning
- error
- leetcode
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- memory bank
- Server
- ma-lmm
- sliding video q-former
- timestamp-aware frame encoder
- CNN
- q-former
- MySQL
- tensorflow
- Artificial Intelligence
- autogluon
- 용어
- Linux
- LeNet-5
- Anaconda
- secure-file-priv
- Python
- timechat
- transference
- Kaggle
- jmeter
- Github
- 코딩테스트
- 백준
- hackerrank
- quantification
- long video understanding
- multimodal machine learning
- error
- leetcode
- Today
- Total
목록LeNet-5 (2)
Juni_DEV
이전 글에서 pytorch로 구현해봤으니 이번에는 tensorflow를 이용해서 Lenet-5를 구현해보자구현 완료한 Tensorflow LeNet-5 Codehttps://github.com/juni5184/Paper_review/blob/main/(tensorflow)lenet-5.ipynb GitHub - juni5184/Paper_reviewContribute to juni5184/Paper_review development by creating an account on GitHub.github.com(1) 필요한 라이브러리 importimport numpy as npfrom keras.utils.np_utils import to_categoricalfrom keras.models import ..
논문에 나와있는 Lenet-5 구조Input Layer : 32x32C1 (Convolution) : 28x28x6S2 (Subsampling) : 14x14x6C3 (Convolution) : 10x10x16S4 (Subsampling) : 5x5x16C5 (Fully connection) : Layer 120F6 (Fully Connection) : Layer 84Output (Gaussian connections) : 10구조까지는 파악하겠는데 도무지 어떻게 시작해야 될지 모르겠다.다른 분이 작성한 코드를 보고 Colab 이용해서 공부하는 걸로 일단 노선 변경구현 완료한 Pytorch LeNet-5 Codehttps://github.com/juni5184/Paper_review/blob/main/(..