ROKO
np.zeros() VS np.zeros_like() 본문
728x90
np.zeros()는 input으로 shape size를 입력받아 그 크기만큼의 array에 0을 넣어 반환해준다.
np.zeros_like()는 input으로 variable이나 list를 입력받고 그 입력받은 variable or list의 shape 크기만큼에 0을 넣어 반환해준다.
즉 내가 만들 list의 크기를 알고 있다? => np.zeros()
만들어야하는데 list의 크기를 정확히 모른다, 하지만 변수는 얻어낼 수 있다. => np.zeros_like()
728x90
'Develop' 카테고리의 다른 글
zsh: command not found: conda (0) | 2023.01.05 |
---|---|
AttributeError: module 'scipy.sparse' has no attribute 'coo_array' (0) | 2023.01.04 |
error: command '/usr/bin/clang' failed with exit code 1 glounnlp (0) | 2022.12.28 |
Error: command buffer exited with error status. (0) | 2022.12.22 |
Comments