250x250
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 |
Tags
- 파이토치
- 데이터베이스
- Python
- 딥러닝
- Web Programming
- 파이썬
- 그래픽 유저 인터페이스
- numpy
- 웹 프로그래밍
- FLASK
- pytorch
- Deep Learning
- MariaDB
- 텐서플로우
- 장고
- k8s
- Tkinter
- yaml
- 논문 리뷰
- tensorflow
- 컴퓨터 비전
- Docker
- kubernetes
- Django
- OpenCV
- GUI
- paper review
- Computer Vision
- vue.js
- POD
Archives
- Today
- Total
목록Append (1)
Maxima's Lab
[Python] 1-2. Numpy (넘파이) - ndarray & expand_dims, append, stack
안녕하세요, 오늘은 Numpy (넘파이)의 expand_dims, append, stack 함수에 대해서 알아보겠습니다. ▶ expand_dims() : Array (배열)의 shape (형태)를 확장시키는 함수 random.randint() 함수를 이용하여 size = (100, 64, 64) 이고 0 이상 256 미만의 임의의 값을 원소로 갖는 배열을 생성하여, 해당 배열에 expand_dims() 함수를 적용해보겠습니다. import numpy as np array_a = np.random.randint(0, 256, (100, 64, 64)) print(array_a.shape) array_a_axis_0 = np.expand_dims(array_a, axis=0) print(array_a_axi..
Python/Numpy
2022. 6. 19. 23:05