Skip to content

Commit

Permalink
fixing import efficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasha Ektefaie committed Apr 22, 2024
1 parent 4cd0850 commit 811e603
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='spectrae',
version='1.0.1',
version='1.0.2',
description='SPECTRA: The spectral framework for model evaluation',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand All @@ -16,10 +16,7 @@
'torch',
'scikit-learn',
'pandas',
'tqdm',
'cell-gears',
'torch_geometric',
'PyTDC'
'tqdm',
],

classifiers=[
Expand Down
2 changes: 2 additions & 0 deletions tutorials/example_mol.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"from tqdm import tqdm\n",
"#For this tutorial to work please make sure you have 'PyTDC' installed\n",
"#You can easily pip-install this package\n",
"from tdc.single_pred import Tox\n",
"from rdkit import Chem\n",
"from rdkit import DataStructs\n",
Expand Down
1 change: 1 addition & 0 deletions tutorials/example_single_cell.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"from tqdm import tqdm\n",
"# To run this tutorial please pip install cell-gears and torch_geometric if you do not already have these packages installed \n",
"from gears.pertdata import PertData\n",
"from gears.gears import GEARS\n"
]
Expand Down

0 comments on commit 811e603

Please sign in to comment.