-
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.
- Loading branch information
Showing
4 changed files
with
21 additions
and
5 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 |
---|---|---|
|
@@ -2,19 +2,29 @@ | |
Install MILES GUESS | ||
=================== | ||
|
||
MILES GUESS supports Python 3.8 to 3.11. Support | ||
for newer versions of Python depends on the choice | ||
of deep learning model backend. | ||
|
||
The primary ML library dependency is keras 3. Install one | ||
of the keras 3 backends (tensorflow, pytorch, or jax). | ||
|
||
First, set up a base Python environment on | ||
your system. We highly recommend using miniconda or | ||
mambaforge to easily install all the dependencies. | ||
|
||
To install the stable version of the package: | ||
|
||
.. code-block:: bash | ||
pip install miles-guess | ||
To use the latest developed version of the package, | ||
first download : | ||
|
||
.. code-block:: bash | ||
git clone [email protected]:ai2es/miles-guess.git | ||
cd miles-guess | ||
|
@@ -23,17 +33,20 @@ Next, build the environment for the package. | |
For CPU-based systems: | ||
|
||
.. code-block:: bash | ||
mamba env create -f environment.yml | ||
For GPU-based systems: | ||
|
||
.. code-block:: bash | ||
mamba env create -f environment_casper.yml | ||
If you want to install miles-guess directly | ||
after building your environment run: | ||
|
||
.. code-block:: bash | ||
pip install . | ||
Keras 3 Installation | ||
|
@@ -47,6 +60,7 @@ this issue, reinstall keras 3 by running the | |
following command: | ||
|
||
.. code-block:: bash | ||
pip install --upgrade keras | ||
|
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