Instructions to use CornLogic/10EROS_1.4_Int8_ConvRot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CornLogic/10EROS_1.4_Int8_ConvRot with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CornLogic/10EROS_1.4_Int8_ConvRot", torch_dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,8 +13,11 @@ If you use the non DMD models you will need to load the DMD lora as you normally
|
|
| 13 |
Check 10Eros discord for sigmas. I used 1.2 sigmas and it was fine however.
|
| 14 |
|
| 15 |
10Eros_v1.4_Bob_INT8_Convrot.safetensors
|
|
|
|
| 16 |
10Eros_v1.4_Bob_DMD_INT8_Convrot.safetensors <- from testing this is the fastest for me on a 3090 and 64GB ram. Most people will want this one.
|
|
|
|
| 17 |
10Eros_v1.4_int8_convrot.safetensors
|
|
|
|
| 18 |
10Eros_v1.4_DMD_int8_convrot.safetensors <- this one was expected to be faster but not proving to be. Not sure why. Just testing it for fun.
|
| 19 |
|
| 20 |
Resources:
|
|
|
|
| 13 |
Check 10Eros discord for sigmas. I used 1.2 sigmas and it was fine however.
|
| 14 |
|
| 15 |
10Eros_v1.4_Bob_INT8_Convrot.safetensors
|
| 16 |
+
|
| 17 |
10Eros_v1.4_Bob_DMD_INT8_Convrot.safetensors <- from testing this is the fastest for me on a 3090 and 64GB ram. Most people will want this one.
|
| 18 |
+
|
| 19 |
10Eros_v1.4_int8_convrot.safetensors
|
| 20 |
+
|
| 21 |
10Eros_v1.4_DMD_int8_convrot.safetensors <- this one was expected to be faster but not proving to be. Not sure why. Just testing it for fun.
|
| 22 |
|
| 23 |
Resources:
|