format_data
Format data to interface with numpy or torch, on a specified device.
Given, adata and a key that points to a specific matrix stored in adata, return the data, formatted either as np.ndarray or torch.Tensor. If formatted as torch.Tensor, device may be specified based on available devices.
Uses the class: adata_query._core.DataFormatter.
data = format_data(
data: Union[np.ndarray, torch.Tensor],
torch: bool = False,
device: torch.device = autodevice.AutoDevice(),
*args,
**kwargs,
)Source code: GitHub.com/mvinyard/AnnDataQuery/adata_query/_core/_formatter.py
Last updated