-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update(dist): add readme description to pypi, temp uncomment install_requires * update(docs): update documentation, update makefile * update(training): test out model.to("cuda"), low_cpu_mem_usage parameters * update(training): revert model.to("cuda"), low_cpu_mem_usage parameters * update(training): revert install_requires
- Loading branch information
Showing
5 changed files
with
23 additions
and
43 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
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,18 +1,17 @@ | ||
make pip: | ||
pip: | ||
pip install -r requirements.txt | ||
|
||
pip-dev: | ||
pip install mkdocs-material mkdocs-glightbox mkdocs-material[imaging] && export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib | ||
|
||
make env: | ||
env: | ||
python3 -m venv venv && source venv/bin/activate | ||
|
||
make test: | ||
test: | ||
pytest | ||
|
||
make up: | ||
pip install -r requirements.txt | ||
cd src && python -m deployment.app | ||
up: | ||
cd src/deployment && pip install -r requirements.txt && cd .. && python -m deployment.app | ||
|
||
make deploy: | ||
deploy: | ||
docker-compose -f src/deployment/docker-compose.yaml up --build |
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