torch-adata
Project description
Create PyTorch Datasets
from AnnData
Installation
Install from PYPI:
pip install torch-adata
Install the developer version:
git clone https://github.com/mvinyard/torch-adata.git; cd torch-adata;
pip install -e .
The main API
The primary class is the AnnDataset
. This is a subclass of the widely-used torch.utils.data.Dataset
. The PyTorch Dataset
module enables us to take advantage of built-in multiprocessing and other organizational tricks that ultimately standardize workflows and enable reproducibility.
import anndata as a
import torch_adata
adata = a.read_h5ad("/path/to/data.h5ad")
dataset = torch_adata.AnnDataset(adata, use_key="X_pca", groupby="time", obs_keys=["affinity"])
[ torch-adata ]: AnnDataset object with 7131 samples
----------------------------------------------------
Grouped by: 'time' with attributes:
- X (use_key = 'X_pca') torch.Size([3, 7131, 50])
- obs: affinity: torch.Size([3, 7131, 1])
For more information, please visit the documentation!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
torch-adata-0.0.16.tar.gz
(22.5 kB
view hashes)
Built Distribution
Close
Hashes for torch_adata-0.0.16-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a413d2864ce766790ee02b946f56a1cfd2e7ad72e6530176c59ad636d5a2ad9 |
|
MD5 | 586a39eac473353740175622e5613a3f |
|
BLAKE2b-256 | 9e5b73bde7557d3449660a91e50f8533fbbde01429fa064818412c612dd85f7d |