-
Notifications
You must be signed in to change notification settings - Fork 10
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
4 additions
and
4 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 |
---|---|---|
|
@@ -85,12 +85,12 @@ The data is stored on a public (read only) s3 bucket | |
``` | ||
git clone [email protected]:3springs/deep_ml_curriculum.git | ||
cd <project root> | ||
# install packages in conda | ||
conda env update --file requirements/environment.min.yml | ||
# install the module, as an editable pip module | ||
pip install -e . | ||
# pull raw the data from public s3 bucket | ||
# aws s3 sync s3://deep-ml-curriculum-data/data/ data/ | ||
# pull processed (smaller) data from s3 | ||
aws s3 sync s3://deep-ml-curriculum-data/data/processed/ data/processed/ | ||
# pull raw the data from public s3 bucket (~10Gb) | ||
aws s3 sync s3://deep-ml-curriculum-data/data/processed/ ~/notebooks/deep_ml_curriculum/data/processed/ --region ap-southeast-2 --no-sign-request | ||
``` | ||
|
||
# Setup the environment | ||
|