chenchaoyun
commited on
Commit
·
bee6161
1
Parent(s):
1eb6063
fix
Browse files- Dockerfile +6 -6
- install.sh +2 -0
Dockerfile
CHANGED
|
@@ -30,13 +30,13 @@ ENV TZ=Asia/Shanghai \
|
|
| 30 |
RVM_LOCAL_REPO=/opt/data/models/RobustVideoMatting \
|
| 31 |
RVM_WEIGHTS_PATH=/opt/data/models/torch/hub/checkpoints/rvm_resnet50.pth \
|
| 32 |
RVM_MODEL=resnet50 \
|
| 33 |
-
AUTO_INIT_GFPGAN=
|
| 34 |
-
AUTO_INIT_DDCOLOR=
|
| 35 |
-
AUTO_INIT_REALESRGAN=
|
| 36 |
-
AUTO_INIT_ANIME_STYLE=
|
| 37 |
AUTO_INIT_CLIP=false \
|
| 38 |
-
AUTO_INIT_RVM=
|
| 39 |
-
AUTO_INIT_REMBG=
|
| 40 |
ENABLE_WARMUP=true \
|
| 41 |
REALESRGAN_MODEL=realesr-general-x4v3 \
|
| 42 |
CELEBRITY_FIND_THRESHOLD=0.87 \
|
|
|
|
| 30 |
RVM_LOCAL_REPO=/opt/data/models/RobustVideoMatting \
|
| 31 |
RVM_WEIGHTS_PATH=/opt/data/models/torch/hub/checkpoints/rvm_resnet50.pth \
|
| 32 |
RVM_MODEL=resnet50 \
|
| 33 |
+
AUTO_INIT_GFPGAN=false \
|
| 34 |
+
AUTO_INIT_DDCOLOR=false \
|
| 35 |
+
AUTO_INIT_REALESRGAN=false \
|
| 36 |
+
AUTO_INIT_ANIME_STYLE=false \
|
| 37 |
AUTO_INIT_CLIP=false \
|
| 38 |
+
AUTO_INIT_RVM=false \
|
| 39 |
+
AUTO_INIT_REMBG=false \
|
| 40 |
ENABLE_WARMUP=true \
|
| 41 |
REALESRGAN_MODEL=realesr-general-x4v3 \
|
| 42 |
CELEBRITY_FIND_THRESHOLD=0.87 \
|
install.sh
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pip install -r requirements.txt -i https://pypi.python.org/simple
|
| 2 |
+
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|