기타 dictionary data npy로 저장/불러오기 - npy로 dictionary data가 저장된 경우 불러올 때의 코드입니다. import numpy as np params = {'beta': np.array(betas), 'pose': pose} np_path = 'params.npy') np.save(np_path, params) 저장하기 import numpy as np params = np.load('params.npy', allow_pickle=True) print(params.item().get('beta').shape) print(params.item().get('pose').shape) 불러오기 : 불러올 때는 item().get('키') 형식으로 불러와서 사용하면 됩니다. 참조 : https://stackoverflow.com/questions/40219946/python-save-dictionaries-through-numpy-save Python : save dictionaries through numpy.save I have a large data set (millions of rows) in memory, in the form of numpy arrays and dictionaries. Once this data is constructed I want to store them into files; so, later I can load these file... stackoverflow.com 공유하기 게시글 관리 매일 조금씩 꾸준히 '기타' 카테고리의 다른 글 heroku로 django 웹서비스 무료로 배포하기 (0) 2022.01.22 _pickle.UnpicklingError: invalid load key, '\xc8' 오류해결 (0) 2021.12.20 [오류해결] fatal error: Python.h: No such file or directory (0) 2021.10.20 서버 폴더 마운트하기 (0) 2021.09.09 Python 정규식 - 특정 문자로 시작하고 끝나는 단어 찾기 (0) 2021.08.13 Contents 당신이 좋아할만한 콘텐츠 heroku로 django 웹서비스 무료로 배포하기 2022.01.22 _pickle.UnpicklingError: invalid load key, '\xc8' 오류해결 2021.12.20 [오류해결] fatal error: Python.h: No such file or directory 2021.10.20 서버 폴더 마운트하기 2021.09.09 댓글 0 + 이전 댓글 더보기