li-yan commited on
Commit
fac0fbc
1 Parent(s): 848e168

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -27,9 +27,10 @@ This is a Stable Diffusion model fine-tuned on `alpaca` images for the animal th
27
  ## Usage
28
 
29
  ```python
30
- from diffusers import StableDiffusionPipeline
 
31
 
32
- pipeline = StableDiffusionPipeline.from_pretrained('li-yan/huacaya-alpaca')
33
- image = pipeline().images[0]
34
- image
35
  ```
 
27
  ## Usage
28
 
29
  ```python
30
+ %pip install -qqU diffusers accelerate
31
+ ```
32
 
33
+ ```python
34
+ import torch
35
+ from diffusers import StableDiffusionPipeline
36
  ```