patrickvonplaten
commited on
Commit
•
04420ad
1
Parent(s):
c44bb87
Update README.md
Browse files
README.md
CHANGED
@@ -46,7 +46,7 @@ The `diffusers` pipeline for the `cd-imagenet64-l2` model can be downloaded as f
|
|
46 |
```python
|
47 |
from diffusers import ConsistencyModelPipeline
|
48 |
|
49 |
-
pipe = ConsistencyModelPipeline.from_pretrained("openai/
|
50 |
```
|
51 |
|
52 |
## Usage
|
@@ -62,7 +62,7 @@ from diffusers import ConsistencyModelPipeline
|
|
62 |
|
63 |
device = "cuda"
|
64 |
# Load the cd_imagenet64_l2 checkpoint.
|
65 |
-
model_id_or_path = "openai/
|
66 |
pipe = ConsistencyModelPipeline.from_pretrained(model_id_or_path, torch_dtype=torch.float16)
|
67 |
pipe.to(device)
|
68 |
|
|
|
46 |
```python
|
47 |
from diffusers import ConsistencyModelPipeline
|
48 |
|
49 |
+
pipe = ConsistencyModelPipeline.from_pretrained("openai/diffusers-cd_imagenet64_l2")
|
50 |
```
|
51 |
|
52 |
## Usage
|
|
|
62 |
|
63 |
device = "cuda"
|
64 |
# Load the cd_imagenet64_l2 checkpoint.
|
65 |
+
model_id_or_path = "openai/diffusers-cd_imagenet64_l2"
|
66 |
pipe = ConsistencyModelPipeline.from_pretrained(model_id_or_path, torch_dtype=torch.float16)
|
67 |
pipe.to(device)
|
68 |
|