Spaces:
Runtime error
Runtime error
Commit
·
9fdfbb2
1
Parent(s):
ade807c
data download.sh
Browse files- Dockerfile +3 -4
- FateZero/data/.gitignore +2 -1
- FateZero/data/download.sh +7 -0
Dockerfile
CHANGED
@@ -45,11 +45,10 @@ RUN pip install --no-cache-dir -U torch==1.13.1 torchvision==0.14.1
|
|
45 |
COPY --chown=1000 requirements.txt /tmp/requirements.txt
|
46 |
RUN pip install --no-cache-dir -U -r /tmp/requirements.txt
|
47 |
|
48 |
-
|
49 |
-
|
50 |
COPY --chown=1000 . ${HOME}/app
|
51 |
-
RUN
|
52 |
-
RUN cd FateZero/
|
|
|
53 |
RUN cd Tune-A-Video && patch -p1 < ../patch
|
54 |
ENV PYTHONPATH=${HOME}/app \
|
55 |
PYTHONUNBUFFERED=1 \
|
|
|
45 |
COPY --chown=1000 requirements.txt /tmp/requirements.txt
|
46 |
RUN pip install --no-cache-dir -U -r /tmp/requirements.txt
|
47 |
|
|
|
|
|
48 |
COPY --chown=1000 . ${HOME}/app
|
49 |
+
RUN ls -a
|
50 |
+
RUN cd ./FateZero/ckpt && bash download.sh
|
51 |
+
RUN cd ./FateZero/data && bash download.sh
|
52 |
RUN cd Tune-A-Video && patch -p1 < ../patch
|
53 |
ENV PYTHONPATH=${HOME}/app \
|
54 |
PYTHONUNBUFFERED=1 \
|
FateZero/data/.gitignore
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
*
|
2 |
!teaser_car-turn
|
3 |
!teaser_car-turn/*
|
4 |
-
!.gitignore
|
|
|
|
1 |
*
|
2 |
!teaser_car-turn
|
3 |
!teaser_car-turn/*
|
4 |
+
!.gitignore
|
5 |
+
!download.sh
|
FateZero/data/download.sh
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/attribute.zip
|
2 |
+
mkdir attribute
|
3 |
+
unzip attribute.zip -d attribute
|
4 |
+
|
5 |
+
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/style.zip
|
6 |
+
mkdir style
|
7 |
+
unzip style.zip -d style
|