본문 바로가기

연구/pytorch

[npz] npz 데이터에서 keys 확인하기

반응형

dictionary 같은 경우에는 data.keys()로 안에 어떤 데이터들이 들어있는지 확인 가능하지만 npz data같은 경우에는 keys()로 확인이 안된다.

 

하지만 간단하게 다음의 명령어로 확인이 가능하다.

 

data.files
>> ['trans', 'gender', 'mocap_framerate', 'betas', 'dmpls', 'poses']

 

출처) https://stackoverflow.com/questions/49219436/how-to-show-all-the-element-names-in-a-npz-file-without-having-to-load-the-compl

반응형