-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -15,10 +15,8 @@ This quick start guide demonstrates how to run drGAT predictions on both CPU and | |
```shell | ||
git clone [email protected]:inoue0426/drGAT.git | ||
cd drGAT | ||
conda env create -f environment.yml | ||
conda activate drGAT | ||
python -m ipykernel install --user --name=drGAT | ||
jupyter notebook --port=9999 | ||
docker build -t drgat:latest . | ||
docker run -it -p 9999:9999 drgat:latest | ||
``` | ||
|
||
Then access to http://localhost:9999/notebooks/Tutorial.ipynb and run all cells. | ||
|
@@ -52,13 +50,15 @@ If you want to re-train model, we recommend using GPU. | |
|
||
--- | ||
|
||
## Installation using Docker | ||
## Installation using Conda | ||
|
||
```shell | ||
git clone [email protected]:inoue0426/drGAT.git | ||
cd drGAT | ||
docker build -t drgat:latest . | ||
docker run -it -p 9999:9999 drgat:latest | ||
conda env create -f environment.yml | ||
conda activate drGAT | ||
python -m ipykernel install --user --name=drGAT | ||
jupyter notebook --port=9999 | ||
``` | ||
|
||
Then access to http://localhost:9999/notebooks/Tutorial.ipynb | ||
|