일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- c++
- C언어 공부
- 김성훈 교수님 PyTorch
- matlab 영상처리
- 미디언 필터링
- 골빈해커
- TensorFlow
- 케라스 정리
- 모두의 딥러닝 예제
- 영상처리
- MFC 프로그래밍
- 가우시안 필터링
- object detection
- c++공부
- Pytorch Lecture
- 해리스 코너 검출
- 팀프로젝트
- tensorflow 예제
- 파이토치
- pytorch zero to all
- 딥러닝
- 파이토치 김성훈 교수님 강의 정리
- 컴퓨터 비전
- 모두의 딥러닝
- c언어
- 딥러닝 공부
- pytorch
- c언어 정리
- 파이토치 강의 정리
- 딥러닝 스터디
Archives
- Today
- Total
목록CNN기초 (1)
ComputerVision Jack
[모두의 딥러닝 Chapter11]
[11-0 cnn_basics] 합성곱 신경망에 대한 기본 sess = tf.InteractiveSession() image = np.array([[[[1],[2],[3]], [[4],[5],[6]], [[7],[8],[9]]]], dtype=np.float32) print(image.shape) plt.imshow(image.reshape(3,3), cmap='Greys') #기본적인 예제 이미지 생성 print("image.shape", image.shape) weight = tf.constant([[[[1.]],[[1.]]], [[[1.]],[[1.]]]]) print("weight.shape", weight.shape) conv2d = tf.nn.conv2d(image, weight, stride..
DeepLearning/DL_ZeroToAll
2020. 1. 23. 16:50