forked from Tencent/MimicMotion
-
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.
Merge pull request Tencent#23 from zsxkib/main
Thanks for your contribution! We believe Replicate API will help lower the barrier for users and contribute to the development of the MimicMotion community. This is our initial released version of the model and a newer version for generating greatly higher quality videos will be released very soon. We also hope to synchronize the updates on the Replicate API at that time. We would be truly honored if MimicMotion can be introduced on Replicate websites.
- Loading branch information
Showing
5 changed files
with
405 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# The .dockerignore file excludes files from the container build process. | ||
# | ||
# https://docs.docker.com/engine/reference/builder/#dockerignore-file | ||
|
||
# Replicate | ||
/models/ | ||
/outputs/ | ||
*.gif | ||
*.mp4 | ||
*.jpg | ||
*.jpeg | ||
*.png | ||
*.webp | ||
MimicMotion.pth | ||
|
||
# Exclude Git files | ||
.git | ||
.github | ||
.gitignore | ||
|
||
# Exclude Python cache files | ||
__pycache__ | ||
.mypy_cache | ||
.pytest_cache | ||
.ruff_cache | ||
|
||
# Exclude Python virtual environment | ||
/venv |
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 |
---|---|---|
|
@@ -158,3 +158,6 @@ _.* | |
# models and outputs | ||
models/ | ||
outputs/ | ||
|
||
# Replicate | ||
.cog |
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,37 @@ | ||
# Configuration for Cog ⚙️ | ||
# Reference: https://cog.run/yaml | ||
|
||
build: | ||
# set to true if your model requires a GPU | ||
gpu: true | ||
# cuda: "11.7" | ||
|
||
# a list of ubuntu apt packages to install | ||
system_packages: | ||
- "libgl1-mesa-glx" | ||
- "libglib2.0-0" | ||
|
||
# python version in the form '3.11' or '3.11.4' | ||
python_version: "3.11" | ||
|
||
# a list of packages in the format <package-name>==<version> | ||
python_packages: | ||
- "torch>=2.3" # 2.3.1 | ||
- "torchvision>=0.18" # 0.18.1 | ||
- "diffusers>=0.29" # 0.29.2 | ||
- "transformers>=4.42" # 4.42.3 | ||
- "decord>=0.6" # 0.6.0 | ||
- "einops>=0.8" # 0.8.0 | ||
- "omegaconf>=2.3" # 2.3.0 | ||
- "opencv-python>=4.10" # 4.10.0.84 | ||
- "matplotlib>=3.9" # 3.9.1 | ||
- "onnxruntime>=1.18" # 1.18.1 | ||
- "accelerate>=0.32" # 0.32.0 | ||
- "av>=12.2" # 12.2.0, https://github.com/continue-revolution/sd-webui-animatediff/issues/377 | ||
|
||
# commands run after the environment is setup | ||
run: | ||
- curl -o /usr/local/bin/pget -L "https://github.com/replicate/pget/releases/download/v0.8.2/pget_linux_x86_64" && chmod +x /usr/local/bin/pget | ||
|
||
# predict.py defines how predictions are run on your model | ||
predict: "predict.py:Predictor" |
Oops, something went wrong.