rynmurdock commited on
Commit
c7b36a6
β€’
1 Parent(s): 385fb5f

added note on avoiding NSFW

Browse files

Finally had time to look into SDXL's filtering. They're sparse on documentation but it seems like people say it's filtered well enough that we really don't need the SD1.5 safety filter. On the other hand, since we're using the SDXLightning version, which has even less info available, I'm adding the note just for caution.

Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -279,6 +279,8 @@ with gr.Blocks(css=css, head=js_head) as demo:
279
  [b4, embs, ys, calibrate_prompts],
280
  [b1, b2, b3, b4, img, embs, ys, calibrate_prompts])
281
  with gr.Row():
282
- html = gr.HTML('''<div style='text-align:center; font-size:20px'>You will calibrate for several prompts and then roam.</ div>''')
 
 
283
 
284
  demo.launch() # Share your demo with just 1 extra parameter πŸš€
 
279
  [b4, embs, ys, calibrate_prompts],
280
  [b1, b2, b3, b4, img, embs, ys, calibrate_prompts])
281
  with gr.Row():
282
+ html = gr.HTML('''<div style='text-align:center; font-size:20px'>You will calibrate for several prompts and then roam. </ div><br><br><br>
283
+ <div style='text-align:center; font-size:14px'>Note that while the SDXL model is unlikely to produce NSFW images, it still may be possible, and users should avoid NSFW content when rating.
284
+ </ div>''')
285
 
286
  demo.launch() # Share your demo with just 1 extra parameter πŸš€