일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이토치 김성훈 교수님 강의 정리
- pytorch
- MFC 프로그래밍
- c++공부
- c언어
- 김성훈 교수님 PyTorch
- C언어 공부
- matlab 영상처리
- 미디언 필터링
- 가우시안 필터링
- TensorFlow
- object detection
- c언어 정리
- c++
- pytorch zero to all
- 영상처리
- 딥러닝 스터디
- 해리스 코너 검출
- 컴퓨터 비전
- 파이토치 강의 정리
- 딥러닝 공부
- Pytorch Lecture
- tensorflow 예제
- 파이토치
- 케라스 정리
- 골빈해커
- 모두의 딥러닝
- 모두의 딥러닝 예제
- 딥러닝
- 팀프로젝트
Archives
- Today
- Total
목록RNN예제 (1)
ComputerVision Jack
[모두의 딥러닝 Chapter12]
[12-0 rnn-basics] RNN엔 Cell에 대한 기본적인 접근 h = [1, 0, 0, 0] e = [0, 1, 0, 0] l = [0, 0, 1, 0] o = [0, 0, 0, 1] #실습에 사용될 hello에 대한 one-hot 인코딩 적용 with tf.variable_scope('one_cell') as scope: # One cell Rnn input_dim(4) -> output_dm(2) hidden_size = 2 cell = tf.keras.layers.SimpleRNNCell(units = hidden_size) print(cell.output_size, cell.state_size) x_data = np.array([[h]], dtype = np.float32) #x_data..
DeepLearning/DL_ZeroToAll
2020. 1. 28. 15:37