Error opening file in H5PY (File signature not found)

前端 未结 4 1798
花落未央
花落未央 2020-12-17 08:47

I\'ve been using the following bit of code to open some HDF5 files, produced in MATLAB, in python using H5PY:

import h5py as h5
data=\'dataset.mat\'
f=h5.Fil         


        
相关标签:
4条回答
  • 2020-12-17 09:11

    Usually the message File signature not found indicates either:

    1. Your file is corrupted.

    ... is what I think is most likely. You said you've opened the files before. Maybe you forgot closing your file-handle which can corrupt the file. Try checking the file with the HDF5 utility h5debug (available on command line if you've installed the hdf5 lib on your OS, check with dpkg -s libhdf5-dev on Linux).

    2. The file is not in HDF5 format.

    This is a known cause for your error message. But since you said you made sure, that this is the case and you've opened the files before, I'm giving this just for reference for others that may stumble here:

    Since December 2015 (as of version 7.3), Matlab files use the HDF5 based format in their MAT-File Level 5 Containers (more doc). Earlier version MAT-files (v4 (Level 1.0), v6 and v7 to 7.2) are supported by and can be read with the scipy library:

    import scipy.io
    f = scipy.io.loadmat('dataset.mat')
    

    Otherwise you may try other methods and see whether the error persists:

    PyTables is an alternative to h5py and be found here.

    import tables
    file = tables.open_file('test.mat')
    

    Install using

    pip install tables
    

    Python MATLAB Engine is an alternative to read MAT files, if you have matlab installed. Documentation is found here: MATLAB Engine API for Python.

    import matlab.engine
    mat = matlab.engine.start_matlab()
    f = mat.load("dataset.mat", nargout=1)
    
    0 讨论(0)
  • 2020-12-17 09:12

    Usually this happens when files are corrupted. I faced this problem and downloaded the file again and it resolves the issues.

    0 讨论(0)
  • 2020-12-17 09:13

    I was facing the same issue with my .h5 file. And the problem was that I was not downloading the .h5 file correctly.

    I was doing filename.h5->right_click->save link as, which was not downloading the file correctly(or may be the file was getting corrupted). Instead of doing that I downloaded the file as : selected the checkbox with filename.h5 and clicked on download and after that my code worked.

    May be this help the one's who are doing the same mistake.

    0 讨论(0)
  • 2020-12-17 09:27

    In case anyone is having this problem in Jupyter you should simply click on the checkbox of the file and click on the download button.
    this solution which I get from here helped me, hope it will help you guys.

    0 讨论(0)
提交回复
热议问题