Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit b24fa74

Browse files
authored
Merge pull request #47 from alexjc/v0.2
Release 0.2: Tiled Rendering, 1:1 Noise/Blur Fixing
2 parents 0c31e53 + 03914db commit b24fa74

File tree

6 files changed

+201
-88
lines changed

6 files changed

+201
-88
lines changed

docker-cpu.df

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ RUN /opt/conda/bin/python3.5 -m pip install -q -r "requirements.txt"
2626
COPY enhance.py .
2727

2828
# Get a pre-trained neural networks, non-commercial & attribution.
29-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-small-0.1.pkl.bz2"
30-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-medium-0.1.pkl.bz2"
31-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-large-0.1.pkl.bz2"
29+
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.2/ne1x-small-0.2.pkl.bz2"
30+
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.2/ne2x-small-0.2.pkl.bz2"
3231

3332
# Set an entrypoint to the main enhance.py script
3433
ENTRYPOINT ["/opt/conda/bin/python3.5", "enhance.py", "--device=cpu"]

docker-gpu.df

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ RUN /opt/conda/bin/python3.5 -m pip install -q -r "requirements.txt"
2424
COPY enhance.py .
2525

2626
# Get a pre-trained neural networks, non-commercial & attribution.
27-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-small-0.1.pkl.bz2"
28-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-medium-0.1.pkl.bz2"
29-
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.1/ne4x-large-0.1.pkl.bz2"
27+
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.2/ne1x-small-0.2.pkl.bz2"
28+
RUN wget -q "https://github.com/alexjc/neural-enhance/releases/download/v0.2/ne2x-small-0.2.pkl.bz2"
3029

3130
# Set an entrypoint to the main enhance.py script
3231
ENTRYPOINT ["/opt/conda/bin/python3.5", "enhance.py", "--device=gpu"]

0 commit comments

Comments
 (0)