kingpreyansh commited on
Commit
9f0cd48
1 Parent(s): fe00933

Update sd/stable-diffusion-webui/modules/shared.py

Browse files
sd/stable-diffusion-webui/modules/shared.py CHANGED
@@ -48,7 +48,7 @@ parser.add_argument("--always-batch-cond-uncond", action='store_true', help="dis
48
  parser.add_argument("--unload-gfpgan", action='store_true', help="does not do anything.")
49
  parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
50
  parser.add_argument("--upcast-sampling", action='store_true', help="upcast sampling. No effect with --no-half. Usually produces similar results to --no-half with better performance while using less memory.")
51
- parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site", default=True)
52
  parser.add_argument("--ngrok", type=str, help="ngrok authtoken, alternative to gradio --share", default=None)
53
  parser.add_argument("--ngrok-region", type=str, help="The region in which ngrok should start.", default="us")
54
  parser.add_argument("--enable-insecure-extension-access", action='store_true', help="enable extensions tab regardless of other options")
 
48
  parser.add_argument("--unload-gfpgan", action='store_true', help="does not do anything.")
49
  parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
50
  parser.add_argument("--upcast-sampling", action='store_true', help="upcast sampling. No effect with --no-half. Usually produces similar results to --no-half with better performance while using less memory.")
51
+ parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site", default=False)
52
  parser.add_argument("--ngrok", type=str, help="ngrok authtoken, alternative to gradio --share", default=None)
53
  parser.add_argument("--ngrok-region", type=str, help="The region in which ngrok should start.", default="us")
54
  parser.add_argument("--enable-insecure-extension-access", action='store_true', help="enable extensions tab regardless of other options")