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

bro's coding

numpy.where.3단 논법 본문

[IT]/python.numpy

numpy.where.3단 논법

givemebro 2020. 4. 23. 14:17
반응형
y=mnist.target.copy()
y=np.where(y==9,1,0)
'''
if(y==9):
	y=1
else:
    y=0
'''
반응형

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

np.moveaxis  (0) 2020.05.13
numpy.score  (0) 2020.05.12
numpy.corrcoef  (0) 2020.04.27
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