-
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
1 parent
9090807
commit 839a880
Showing
8 changed files
with
72 additions
and
50 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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Building Epitome from Source | ||
============================ | ||
Installing Epitome | ||
================== | ||
|
||
**Note**: Epitome is configured for tensorflow 2/Cuda 9. If you have a different | ||
version of cuda, update tensorflow-gpu version accordingly. | ||
|
@@ -10,6 +10,7 @@ Requirements | |
* `conda <https://docs.conda.io/en/latest/miniconda.html>`__ | ||
* python 3.7 | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
|
@@ -20,25 +21,33 @@ Installation | |
conda create --name EpitomeEnv python=3.7 | ||
source activate EpitomeEnv | ||
2. Install Epitome from Pypi: | ||
|
||
2. Get Epitome code: | ||
.. code:: bash | ||
pip install epitome | ||
From Source | ||
----------- | ||
|
||
1. Create and activate a pytion 3.7 conda venv: | ||
|
||
.. code:: bash | ||
git clone [email protected]:akmorrow13/epitome.git | ||
cd epitome | ||
conda create --name EpitomeEnv python=3.7 | ||
source activate EpitomeEnv | ||
3. Install Epitome and its requirements | ||
2. Get Epitome code: | ||
|
||
.. code:: bash | ||
pip install -e . | ||
git clone https://github.com/YosefLab/epitome.git | ||
cd epitome | ||
3. Install Epitome and its requirements | ||
|
||
Configuring Data | ||
---------------- | ||
.. code:: bash | ||
Epitome requires data for training, validation and test. See `Configuring Epitome data <../usage/data.html>`__ for more information | ||
on how to download data for Epitome or generate your own dataset. | ||
pip install -e . |
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