-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c278ae
commit 3bdc2ba
Showing
4 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
# tiledbsoma_ml | ||
|
||
A Python package containing ML tools for use with `tiledbsoma`. | ||
|
||
## Description | ||
|
||
The package currently contains a prototype PyTorch `IterableDataset` for use with the | ||
[`torch.utils.data.DataLoader`](https://pytorch.org/docs/stable/data.html#torch.utils.data.DataLoader) | ||
API. | ||
|
||
## Getting Started | ||
|
||
### Installing | ||
|
||
Install using your favorite package installer. For example, with pip: | ||
|
||
> pip install tiledbsoma-ml | ||
Developers may install editable, from source, in the usual manner: | ||
|
||
> pip install -e . | ||
### Documentation | ||
|
||
TBD | ||
|
||
## Builds | ||
|
||
This is a pure Python package. To build a wheel, ensure you have the `build` package installed, and then: | ||
|
||
> python -m build . | ||
## Version History | ||
|
||
See the [CHANGELOG.md](CHANGELOG.md) file. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. | ||
|
||
## Acknowledgements | ||
|
||
The SOMA team is grateful to the Chan Zuckerberg Initiative Foundation [CELLxGENE Census](https://cellxgene.cziscience.com) | ||
team for their initial contribution. |