elismasilva commited on
Commit
6997095
·
1 Parent(s): c9e5f7f

README.md adjustments

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +22 -15
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: Mixture Of Diffusers SDXL Tiling
3
- emoji: 🐢
4
  colorFrom: purple
5
  colorTo: red
6
  sdk: gradio
 
1
  ---
2
  title: Mixture Of Diffusers SDXL Tiling
3
+ emoji: 🚀
4
  colorFrom: purple
5
  colorTo: red
6
  sdk: gradio
app.py CHANGED
@@ -183,21 +183,28 @@ css = """
183
  max-width: unset !important;
184
  }
185
  """
186
-
187
- title = """<h1 align="center">Mixture-of-Diffusers for SDXL Tiling Pipeline</h1>
188
- <div style="display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow:hidden;">
189
- <p>This project implements an SDXL pipeline based on the original project, <a href='https://github.com/albarji/mixture-of-diffusers'>Mixture-of-Diffusers</a>. For more information, see the <a href='https://arxiv.org/abs/2302.02412'>Paper</a>.</p>
190
- <div style="display: flex; flex-direction: row; gap: 20px; justify-content: center;"> <!-- Novo div flex container para os dois últimos parágrafos -->
191
- <p style="display: flex;gap: 6px;margin: 0; transform: translateY(40%);">
192
- <a href="https://huggingface.co/spaces/elismasilva/mixture-of-diffusers-sdxl-tiling?duplicate=true">
193
- <img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/duplicate-this-space-md.svg" alt="Duplicate this Space">
194
- </a> to skip the queue and enjoy faster inference on the GPU of your choice
195
- </p>
196
- <p><a href='https://ko-fi.com/S6S71ACXMR' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi6.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a></p>
197
- </div>
198
- </div>
199
- """
200
- tips="""
 
 
 
 
 
 
 
201
  ### Method
202
  The method proposed here strives to provide a better tool for image composition by using several diffusion processes in parallel, each configured with a specific prompt and settings, and focused on a particular region of the image. The mixture of diffusion processes is done in a way that harmonizes the generation process, preventing "seam" effects in the generated image.
203
  Using several diffusion processes in parallel has also practical advantages when generating very large images, as the GPU memory requirements are similar to that of generating an image of the size of a single tile.
 
183
  max-width: unset !important;
184
  }
185
  """
186
+ title = """
187
+ <div style="text-align: center; font-size: 32px; font-weight: bold; margin-bottom: 20px;">
188
+ Mixture-of-Diffusers for SDXL Tiling Pipeline🤗
189
+ </div>
190
+ <div style="text-align: center;">
191
+ <span>This project implements an SDXL pipeline based on the original project, <a href='https://github.com/albarji/mixture-of-diffusers'>Mixture-of-Diffusers</a>. For more information, see the:
192
+ <a href="https://arxiv.org/pdf/2408.06072">📜 paper </a>
193
+ </div>
194
+ <div style="text-align: center;display: flex;justify-content: center;align-items: center;margin-top: 1em;margin-bottom: .5em;">
195
+ <span>If the Space is too busy, duplicate it to use privately</span>
196
+ <a href="https://huggingface.co/spaces/elismasilva/mixture-of-diffusers-sdxl-tiling?duplicate=true"><img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/duplicate-this-space-lg.svg" width="160" style="
197
+ margin-left: .75em;"></a>
198
+ <a href="https://ko-fi.com/S6S71ACXMR" target="_blank"><img height="36" style="border:0px;height:36px;" src="https://storage.ko-fi.com/cdn/kofi6.png?v=6" border="0" alt="Buy Me a Coffee at ko-fi.com"/></a>
199
+ </div>
200
+
201
+ """
202
+ # title = r"""<h1 align="center"></h1>
203
+ # <div style="display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow:hidden;">
204
+ # <p>This project implements an SDXL pipeline based on the original project, <a href='https://github.com/albarji/mixture-of-diffusers'>Mixture-of-Diffusers</a>. For more information, see the <a href='https://arxiv.org/abs/2302.02412'>Paper</a>.</p>
205
+ # </div>
206
+ # """
207
+ tips=r"""
208
  ### Method
209
  The method proposed here strives to provide a better tool for image composition by using several diffusion processes in parallel, each configured with a specific prompt and settings, and focused on a particular region of the image. The mixture of diffusion processes is done in a way that harmonizes the generation process, preventing "seam" effects in the generated image.
210
  Using several diffusion processes in parallel has also practical advantages when generating very large images, as the GPU memory requirements are similar to that of generating an image of the size of a single tile.