Skip to main content

HDF5 data utilities for PyTorch

Project description

h5torch

HDF5 data utilities for PyTorch.

PyPi Version GitHub license Documentation

h5torch consists of two main parts: (1) h5torch.File: a wrapper around h5py.File as an interface to create HDF5 files compatible with (2) h5torch.Dataset, a wrapper around torch.utils.data.Dataset. As a library, h5torch establishes a "code" for linking h5py and torch. To do this, this package has to formulate a vocabulary for how datasets generally look, unifying as many ML settings to the best of its abilities. In turn, this vocabulary allows dataloading of various machine learning data settings from a single dataset class definition, reducing boilerplate in your projects.

Who is this package for?

Loading data from HDF5 files allows for efficient data-loading from an on-disk format, drastically reducing memory overhead. Additionally, you will find your datasets to be more organized using the HDF5 format, as everything is neatly arrayed in a single file.

If you want to use this package but are not sure your use-case is covered by the current formulation of the package, feel free to open an issue.

Install

Since PyTorch is a dependency of h5torch, we recommend installing PyTorch independently first, as your system may require a specific version (e.g. CUDA drivers).

After PyTorch installation, h5torch can be installed using pip

pip install h5torch

Package concepts

Storing

The main idea behind h5torch is that datasets can usually be formulated as being aligned to a central object. E.g. in a classical supervised learning setup, features/inputs are aligned to a label vector/matrix. In recommender systems, a score matrix is the central object, with features aligned to rows and columns.

h5torch allows creating and reading HDF5 datasets for use in PyTorch using this dogma. When creating a new dataset, the first data object that should be registered is the central object. The type of central object is flexible:

  • N-D: for regular dense data. The number of dimensions in this object will dictate how many possible aligned axes can exist.
  • coo: The sparse variant as N-D. The number of dimensions here can be arbitrary high.
  • csr: For sparse 2D arrays, this central data type can only have 2 aligned axes and can only be sampled along the first dimension
  • vlen: For variable length 1D arrays. This central data type can only have one aligned axis (0).
  • separate: For objects that are better stored in separate groups instead of as one dataset. An example is variable shape N-D objects such as variably-sized images. This central data type can only have one aligned axis (0).

Along this central object, axis objects can be aligned. The first dimension length of any axis object must correspond to the length of the central data object to that dimension. For example, a central data object of shape (50, 40) can only have 50-length and 40-length objects aligned to its first and second axis, respectively. For axis objects, these possibilities are available:

  • N-D: Can have arbitrary number of dimensions. E.g. equally-sized images: (N, 3, H, W).
  • csr: Max 2 dimensions, rows will be sampled. E.g. A sparse scRNA-seq count matrix
  • vlen: Variable length 1D arrays. E.g. Tokenized text as variable length arrays of integers.
  • separate: For objects that are better stored in separate groups instead of as one dataset. An example is variable shape N-D objects such as variably-sized images.

Note there is no support for coo data type for aligned objects, that is because aligned axis objects require efficient indexing along their first dimension.

Also note that there is no limit on the number of data objects aligned to an axis. For example, in the case of images aligned to a central label vector, extra information of every image can be added such as the URL, the date said image was taken, the geolocation of that image, ...

Besides the central and axis objects, you can also store unstructured data which can be any length or dimension and follow any of the above-mentioned data types (including coo). This could for example be a vocabularium vector or the names of classes...

Sampling

Once a dataset is created using h5torch.File, it can be used as a PyTorch Dataset using h5torch.Dataset. Sampling can occur along any of the axes in the central object, upon which the corresponding indices in the objects aligned to that axis are also sampled. Alternatively, coo sampling (available for N-D and coo-type central objects) samples one specific element of the central dataset, along with the corresponding indices of all axis-aligned objects.

Usage

Refer to the tutorial on the documentation page.

Package roadmap

  • Implement typing
  • Provide data type conversion capabilities for registering datasets
  • Add support for custom samplers
  • Add support for making data splits
  • Add a slice sampler
  • Implement a way to pre-specify dataset size and append to it
  • Add better docs
  • Add tests
  • Implement a collater for variable length objects
  • Benchmarks

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

h5torch-0.2.6.tar.gz (58.7 kB view details)

Uploaded Source

Built Distribution

h5torch-0.2.6-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file h5torch-0.2.6.tar.gz.

File metadata

  • Download URL: h5torch-0.2.6.tar.gz
  • Upload date:
  • Size: 58.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for h5torch-0.2.6.tar.gz
Algorithm Hash digest
SHA256 024636978fed966a200c81f78d71f1f9592a768cc66de2c7a77ccca4d0a1d0bb
MD5 31653b3e2604c4376b5421d5e6dff6c7
BLAKE2b-256 70c2747db48c350e679fd43acc1a4d54076f805a74f452fb1afedf6172d2ec35

See more details on using hashes here.

File details

Details for the file h5torch-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: h5torch-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for h5torch-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 94f0667a454139fb035e5d31bd9e834b854146084da6f629fce47974b53bd52d
MD5 afc0234127b60219237b41c5eda792be
BLAKE2b-256 7c0c18ffbfdc75b0a67b0a48bc815dd32256b00c15c5abd551b7e11eda0ca54a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page