Instructions to use BadToBest/EchoMimic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use BadToBest/EchoMimic with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("BadToBest/EchoMimic", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
dsdsdsdsd commited on
Upload 2 files
Browse filesadd denoise and facelocator
- denoising_unet.pth +3 -0
- face_locator.pth +3 -0
denoising_unet.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c65421f37ca271b5772520304ccefe99a061763e5e117f40fb0eadbc8a0214a
|
| 3 |
+
size 3400035733
|
face_locator.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:450520aa3a2aeaefd9a27fa819c7c52d7b32de30e428bd998707be4676d15e55
|
| 3 |
+
size 4350203
|