반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

np.moveaxis 본문

[IT]/python.numpy

np.moveaxis

givemebro 2020. 5. 13. 16:10
반응형
# 3 X 1080 X 1920 -> 1080 X 1920 X 3(moveaxis)

X_train=np.moveaxis(X_train.reshape(-1,3,32,32),1,-1)
반응형

'[IT] > python.numpy' 카테고리의 다른 글

numpy.score  (0) 2020.05.12
numpy.corrcoef  (0) 2020.04.27
numpy.where.3단 논법  (0) 2020.04.23
numpy.브로드캐스팅  (0) 2020.03.30
numpy.무한대 처리  (0) 2020.03.30
numpy.스칼라 연산  (0) 2020.03.30
numpy.file open  (0) 2020.03.27
numpy.reshape(차원 변경)  (0) 2020.03.26
Comments