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()...