Spaces:
Runtime error
Runtime error
mayuema
commited on
Commit
•
4bcd96c
1
Parent(s):
6dcf9e0
updata
Browse files- Dockerfile +3 -3
- data/dancing_example_1.mp4 +0 -0
- data/dancing_example_2.mp4 +0 -0
- data/dancing_example_3.mp4 +0 -0
- data/dancing_example_4.mp4 +0 -0
- data/download.sh +3 -0
Dockerfile
CHANGED
@@ -51,8 +51,8 @@ RUN pip install --no-cache-dir -U -r /tmp/requirements.txt
|
|
51 |
|
52 |
COPY --chown=1000 . ${HOME}/app
|
53 |
RUN ls -a
|
54 |
-
RUN cd ./FateZero/ckpt && bash download.sh
|
55 |
-
RUN cd ./
|
56 |
ENV PYTHONPATH=${HOME}/app \
|
57 |
PYTHONUNBUFFERED=1 \
|
58 |
GRADIO_ALLOW_FLAGGING=never \
|
@@ -60,4 +60,4 @@ ENV PYTHONPATH=${HOME}/app \
|
|
60 |
GRADIO_SERVER_NAME=0.0.0.0 \
|
61 |
GRADIO_THEME=huggingface \
|
62 |
SYSTEM=spaces
|
63 |
-
CMD ["python", "
|
|
|
51 |
|
52 |
COPY --chown=1000 . ${HOME}/app
|
53 |
RUN ls -a
|
54 |
+
# RUN cd ./FateZero/ckpt && bash download.sh
|
55 |
+
RUN cd ./data && bash download.sh
|
56 |
ENV PYTHONPATH=${HOME}/app \
|
57 |
PYTHONUNBUFFERED=1 \
|
58 |
GRADIO_ALLOW_FLAGGING=never \
|
|
|
60 |
GRADIO_SERVER_NAME=0.0.0.0 \
|
61 |
GRADIO_THEME=huggingface \
|
62 |
SYSTEM=spaces
|
63 |
+
CMD ["python", "app.py"]
|
data/dancing_example_1.mp4
DELETED
Binary file (510 kB)
|
|
data/dancing_example_2.mp4
DELETED
Binary file (489 kB)
|
|
data/dancing_example_3.mp4
DELETED
Binary file (791 kB)
|
|
data/dancing_example_4.mp4
DELETED
Binary file (953 kB)
|
|
data/download.sh
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
wget https://github.com/mayuelala/FollowYourPose/releases/download/v0.0.1/example_video.zip
|
2 |
+
mv example_video.zip ./data
|
3 |
+
unzip example_video.zip -d data
|