IDK-ab0ut commited on
Commit
1f5cd7a
·
verified ·
1 Parent(s): e4a37ca

"repository"

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -15,7 +15,7 @@ This is a Diffusers-compatible version of [Yiffymix v51 by chilon249](https://ci
15
  scale (around 4 to 6) is recommended for the best result.
16
  It's also recommended to use clip skip of 2.
17
 
18
- This repo uses DPM++ 2M Karras as its sampler (Diffusers only).
19
 
20
  # Diffusers Installation 🧨
21
  ### Dependencies Installation 📁
@@ -24,7 +24,7 @@ First, you'll need to install few dependencies. This is a one-time operation, yo
24
  !pip install -q diffusers transformers accelerate
25
  ```
26
  ### Model Installation 💿
27
- After the installation, you can run SDXL with Yiffymix v51 model using the code below:
28
  ```py
29
  from diffusers import StableDiffusionXLPipeline
30
  import torch
@@ -50,7 +50,7 @@ Feel free to edit the image's configuration with your desire.
50
 
51
  You can see all available schedulers [here](https://huggingface.co/docs/diffusers/v0.11.0/en/api/schedulers/overview).
52
 
53
- To use scheduler other than DPM++ 2M Karras for this repo, make sure to import the
54
  corresponding pipeline for the scheduler you want to use. For example, we want to use Euler. First, import [EulerDiscreteScheduler](https://huggingface.co/docs/diffusers/v0.29.2/en/api/schedulers/euler#diffusers.EulerDiscreteScheduler) from Diffusers by adding this line of code.
55
  ```py
56
  from diffusers import StableDiffusionXLPipeline, EulerDiscreteScheduler
 
15
  scale (around 4 to 6) is recommended for the best result.
16
  It's also recommended to use clip skip of 2.
17
 
18
+ This repository uses DPM++ 2M Karras as its sampler (Diffusers only).
19
 
20
  # Diffusers Installation 🧨
21
  ### Dependencies Installation 📁
 
24
  !pip install -q diffusers transformers accelerate
25
  ```
26
  ### Model Installation 💿
27
+ After the installation, you can run SDXL with this repository using the code below:
28
  ```py
29
  from diffusers import StableDiffusionXLPipeline
30
  import torch
 
50
 
51
  You can see all available schedulers [here](https://huggingface.co/docs/diffusers/v0.11.0/en/api/schedulers/overview).
52
 
53
+ To use scheduler other than DPM++ 2M Karras for this repository, make sure to import the
54
  corresponding pipeline for the scheduler you want to use. For example, we want to use Euler. First, import [EulerDiscreteScheduler](https://huggingface.co/docs/diffusers/v0.29.2/en/api/schedulers/euler#diffusers.EulerDiscreteScheduler) from Diffusers by adding this line of code.
55
  ```py
56
  from diffusers import StableDiffusionXLPipeline, EulerDiscreteScheduler