-
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
65 changed files
with
1,322 additions
and
726 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
*/__pycache__ | ||
htmlcov | ||
__pycache__ | ||
*.pyc | ||
*.pyo | ||
*.pyd | ||
.Python | ||
env | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
.tox | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.log | ||
.git | ||
.mypy_cache | ||
.pytest_cache | ||
.hypothesis | ||
|
||
node_modules | ||
pretrained* | ||
style-images | ||
local/ | ||
output/ | ||
nst_output/ | ||
env/ | ||
env-dev/ | ||
dist/ | ||
build/ | ||
test-results/ | ||
dependency-graphs/ | ||
uml-diagrams | ||
.circleci | ||
.vscode | ||
.bettercodehub.yml | ||
.gitignore | ||
.prospector.yml | ||
.pylintrc | ||
|
||
mypy.ini | ||
package.json | ||
package-lock.json | ||
tox.ini | ||
Dockerfile |
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 |
---|---|---|
|
@@ -13,3 +13,4 @@ build/ | |
*output | ||
uml-diagrams | ||
dependency-graphs | ||
coverage.xml |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
0.6.1 (2021-12-01) | ||
------------------ | ||
|
||
Changes | ||
^^^^^^^ | ||
|
||
test | ||
"""" | ||
- test algorithm & conditionally mock production pretrained model | ||
|
||
|
||
documentation | ||
""""""""""""" | ||
- document how to use the docker image hosted on docker hub | ||
|
||
|
||
ci | ||
"" | ||
- run regression test on ci server |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM python:3.8-slim | ||
|
||
WORKDIR /app | ||
|
||
ADD imagenet-vgg-verydeep-19.mat.tar . | ||
|
||
|
||
COPY requirements/dev.txt reqs.txt | ||
RUN pip install -r reqs.txt | ||
|
||
COPY . . | ||
|
||
RUN pip install -e . | ||
|
||
COPY tests tests | ||
|
||
ENV AA_VGG_19 /app/pretrained_model_bundle/imagenet-vgg-verydeep-19.mat | ||
ENTRYPOINT [ "neural-style-transfer" ] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = '0.6.1' |
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
Oops, something went wrong.