반응형
h5py file을 불러오는 코드를 다음과 같이 작성했다.
file = h5py.File(path2h5)
train_data = file['data'][:].astype('float32')
train_label = file['label'][:].astype('float32')
file.close()
다음과 같은 경고 메세지가 발생
dataset.py:10: H5pyDeprecationWarning: The default file mode will change to 'r' (read-only) in h5py 3.0. To suppress this warning, pass the mode you need to h5py.File(), or set the global default h5.get_config().default_file_mode, or set the environment variable H5PY_DEFAULT_READONLY=1. Available modes are: 'r', 'r+', 'w', 'w-'/'x', 'a'. See the docs for details.
file = h5py.File(path2h5)
아래와 같이 h5py.File에서 mode 인자를 설정해주면 경고 메세지는 사라진다.
file = h5py.File(path2h5, mode='r')
train_data = file['data'][:].astype('float32')
train_label = file['label'][:].astype('float32')
file.close()
반응형
'Python > 기타 코딩' 카테고리의 다른 글
[python] 파이썬 패키지, 모듈 저장 위치 확인하기 (1) | 2022.02.25 |
---|---|
[error] ubuntu 환경에서 Wand 설치하기 (0) | 2022.02.04 |
[Python] 파이썬 주석 처리(컨트롤 + 슬래쉬)가 안되는 경우. (4) | 2021.12.01 |
wget 명령어 실행 시 과거 다운로드한 파일이 함께 다운로드 되는 경우 (0) | 2021.10.30 |
[에러 해결] tar: Error is not recoverable: exiting now (0) | 2021.10.30 |