-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.1.3 (Optimise GPU and memory)
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 1,3 @@ | ||
from . import train | ||
from . import vector_field as vf | ||
__version__ = '0.1.2' | ||
__version__ = '0.1.3' |
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 |
---|---|---|
|
@@ -6,7 6,7 @@ def get_readme(): | |
|
||
setuptools.setup( | ||
name='sctour', | ||
version='0.1.2', | ||
version='0.1.3', | ||
author='Qian Li', | ||
author_email='[email protected]', | ||
description='a deep learning architecture for robust inference and accurate prediction of cellular dynamics', | ||
|
@@ -16,7 16,7 @@ def get_readme(): | |
packages=setuptools.find_packages(), | ||
install_requires=[ | ||
'torch>=1.9.1', | ||
'torchdiffeq==0.2.2', | ||
'torchdiffeq>=0.2.2', | ||
'numpy>=1.19.2', | ||
'scanpy>=1.7.1', | ||
'anndata>=0.7.5', | ||
|