Python Forum
h5py: deep dataset access
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
h5py: deep dataset access
#1
All

I'm looking in a way to list and record hdf5 file content (full path and dataset number/names) into lists; digging into internet, I've found the following ways to print them, but how to record them?

I tried to append the list by giving it as a second argument, but it fails; could you help?

Thanks

Paul
def print_attrs(name, obj):
    print(name)
    print(obj)
    for key, val in obj.attrs.items():
        print("{}: {}" .format(key, val))
        
with h5py.File('myfile.h5', 'r') as f:    
    group_names = list(h5.keys())
    f.visititems(print_attrs)
    f.visit(print)
Reply
#2
finally I got it into a pdf file:
DatasetList = []
f.visit(DatasetList.append)
Reply
#3
in addition to it, additional procedures in stackoverflow
Maybe it can help
Paul
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Deep Learning Book ankitdixit 2 2,670 Feb-06-2020, 12:01 PM
Last Post: buran
  Free ebook "Deep Learning with PyTorch" ThomasL 0 2,315 Nov-22-2019, 02:50 PM
Last Post: ThomasL
  Extract of matrix subpart using a deep copy paul18fr 2 2,337 May-02-2019, 06:49 AM
Last Post: paul18fr
  3D Object Recognition using Deep Learning chandininair 0 2,236 Aug-08-2018, 11:29 PM
Last Post: chandininair

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020