-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from nitinmad/py312_dev
Py312 dev
- Loading branch information
Showing
72 changed files
with
41,907 additions
and
4,146 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
python: | ||
version: 3.8 | ||
version: 3.12 | ||
install: | ||
- method: pip | ||
path: . | ||
|
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 |
---|---|---|
|
@@ -29,27 +29,32 @@ The format of library is similar to the well known libraries like Scikit-learn. | |
- to find out about the latest version and release history, click [here](https://pypi.org/project/chemml/#history) | ||
|
||
## Installation and Dependencies: | ||
You can download ChemML from PyPI via pip. | ||
We strongly recommend you to install ChemML in an Anaconda environment. The instructions to create the environment, install ChemML’s dependencies, and subsequently install ChemML using the Python Package Index (PyPI) via pip are as follows: | ||
|
||
pip install chemml --user -U | ||
conda create --name chemml_env python=3.12 | ||
source activate chemml_env | ||
conda install -c conda-forge openbabel nb_conda_kernels python-graphviz | ||
pip install chemml | ||
|
||
Here is a list of external libraries that will be installed with chemml: | ||
- numpy | ||
- pandas | ||
- tensorflow | ||
- rdkit | ||
- scikit-learn | ||
- matplotlib | ||
- seaborn | ||
- lxml | ||
- openpyxl | ||
- ipywidgets | ||
- shap | ||
- lime | ||
|
||
We strongly recommend you to install ChemML in an Anaconda environment. The instructions to create the environment, install ChemML’s dependencies, and subsequently install Chemml using the Python Package Index (PyPI) via pip are as follows: | ||
We also require the user to install PyTorch depending on their operating system and GPU configuration, which can be done by following the wizard on this page: | ||
|
||
conda create --name chemml_env python=3.8 | ||
source activate chemml_env | ||
conda install -c conda-forge openbabel rdkit nb_conda_kernels python-graphviz | ||
pip install chemml | ||
https://pytorch.org/get-started/locally/ | ||
|
||
Note: The PyTorch CUDA 12.4 install has been tested with CUDA 12.5 and works fine, but future CUDA versions may not be compatible. If any issues arise from CUDA compatibility, it is recommended to follow the instructions on the PyTorch website to compile from source. | ||
|
||
## Citation: | ||
Please cite the use of ChemML as: | ||
|
@@ -112,6 +117,7 @@ ChemML is distributed under 3-Clause BSD License (https://opensource.org/license | |
- Mojtaba Haghighatlari | ||
- Aditya Sonpal, [email protected] | ||
- Aatish Pradhan, [email protected] | ||
- Nitin Murthy, [email protected] | ||
University at Buffalo - The State University of New York (UB) | ||
|
||
### Contributors: | ||
|
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,6 +1,6 @@ | ||
# __name__ = "chemml" | ||
__version__ = "1.2" | ||
__author__ = ["Aditya Sonpal ([email protected])", "Gaurav Vishwakarma ([email protected]) ", "Aatish Pradhan ([email protected])","Mojtaba Haghighatlari ([email protected])", "Johannes Hachmann ([email protected])"] | ||
__version__ = "1.3.1" | ||
__author__ = ["Aditya Sonpal ([email protected])", "Gaurav Vishwakarma ([email protected]) ", "Aatish Pradhan ([email protected])", "Nitin Murthy ([email protected])","Mojtaba Haghighatlari ([email protected])", "Johannes Hachmann ([email protected])"] | ||
|
||
|
||
# import sys | ||
|
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
Oops, something went wrong.