Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- array
- two pointers
- hash table
- bit manipulation
- Tree
- simulation
- 파이썬
- Binary Tree
- database
- sorting
- Class
- 코딩테스트
- Stack
- java
- greedy
- Counting
- 자바
- Binary Search
- Math
- implement
- dynamic programming
- Method
- SQL
- Number Theory
- 코테
- Data Structure
- 구현
- string
- Matrix
- geometry
Archives
- Today
- Total
목록텐서 (1)
코린이의 소소한 공부노트

딥러닝에서는 고차원 데이터를 많이 사용한다. 차원이 눈에 보이는 것이 아니라 상상하기도 어렵고 데이터를 다루기는 더 어려운데, 이것을 도와줄 패키지를 먼저 소개하겠다. import numpy as np 바로 넘파이 numpy라는 것이다. 보통 np로 많이 줄여서 쓰기도 한다. 아래 그림을 한 번 보고, numpy를 이용해서 차원의 개념인 텐서 tensor를 하나씩 이해해보도록 하자. 0차원 1차원 2차원 3차원 점 선 면 입체도형(cube) 스칼라 scalar 벡터 vector 매트릭스 matrix 텐서 tensor 4차원 5차원 6차원 3차원 점으로 이루어진 선 4차원 선으로 이루어진 면 5차원 면으로 이루어진 입체도형 vector of cube matrix of cube cube of cube 참고 ..
Deep Learning
2021. 8. 8. 14:48