일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- object detection
- 파이토치 김성훈 교수님 강의 정리
- 모두의 딥러닝 예제
- MFC 프로그래밍
- 파이토치 강의 정리
- 모두의 딥러닝
- 해리스 코너 검출
- Pytorch Lecture
- 케라스 정리
- c언어
- matlab 영상처리
- 골빈해커
- tensorflow 예제
- 미디언 필터링
- TensorFlow
- pytorch zero to all
- c++
- c++공부
- 컴퓨터 비전
- 딥러닝 스터디
- 파이토치
- 영상처리
- 가우시안 필터링
- c언어 정리
- 팀프로젝트
- 김성훈 교수님 PyTorch
- C언어 공부
- 딥러닝
- pytorch
- 딥러닝 공부
Archives
- Today
- Total
목록argmax (1)
ComputerVision Jack
[모두의 딥러닝 Chapter08]
[08 tensor_manipulation] Simple Array 간단한 1차원 array t = np.array([0., 1., 2., 3., 4., 5., 6.]) pp.pprint(t) print(t.ndim) # rank print(t.shape) #shape print(t[0], t[1], t[-1]) print(t[2: 5], t[4 : -1]) print(t[:2], t[3:]) 2D Array t = np.array([[1., 2., 3], [4., 5., 6.], [7., 8., 9.], [10., 11., 12]]) pp.pprint(t) print(t.ndim) print(t.shape) Shape, Rank, Axis t = tf.constant([1, 2, 3, 4]) tf.sh..
DeepLearning/DL_ZeroToAll
2020. 1. 20. 12:54