Update README.md
Browse files
    	
        README.md
    CHANGED
    
    | @@ -20,6 +20,7 @@ This repository is based on [Diffusers](https://huggingface.co/docs/diffusers/in | |
| 20 | 
             
            ## Quickstart
         | 
| 21 |  | 
| 22 | 
             
            Loading Custom Piepline:
         | 
|  | |
| 23 | 
             
            ```
         | 
| 24 | 
             
            from diffusers import StableDiffusionPipeline
         | 
| 25 |  | 
| @@ -37,6 +38,7 @@ prompts = ["a corgi"] | |
| 37 | 
             
            ```
         | 
| 38 |  | 
| 39 | 
             
            Sampling with PAG:
         | 
|  | |
| 40 | 
             
            ```
         | 
| 41 | 
             
            output = pipe(
         | 
| 42 | 
             
                prompts,
         | 
| @@ -50,6 +52,7 @@ output = pipe( | |
| 50 | 
             
            ```
         | 
| 51 |  | 
| 52 | 
             
            Sampling with PAG and CFG:
         | 
|  | |
| 53 | 
             
            ```
         | 
| 54 | 
             
            output = pipe(
         | 
| 55 | 
             
                prompts,
         | 
|  | |
| 20 | 
             
            ## Quickstart
         | 
| 21 |  | 
| 22 | 
             
            Loading Custom Piepline:
         | 
| 23 | 
            +
             | 
| 24 | 
             
            ```
         | 
| 25 | 
             
            from diffusers import StableDiffusionPipeline
         | 
| 26 |  | 
|  | |
| 38 | 
             
            ```
         | 
| 39 |  | 
| 40 | 
             
            Sampling with PAG:
         | 
| 41 | 
            +
             | 
| 42 | 
             
            ```
         | 
| 43 | 
             
            output = pipe(
         | 
| 44 | 
             
                prompts,
         | 
|  | |
| 52 | 
             
            ```
         | 
| 53 |  | 
| 54 | 
             
            Sampling with PAG and CFG:
         | 
| 55 | 
            +
             | 
| 56 | 
             
            ```
         | 
| 57 | 
             
            output = pipe(
         | 
| 58 | 
             
                prompts,
         |