Submitted by crowwork t3_11u8uk6 in MachineLearning
Most of the existing stable diffusion demos rely on a server behind to run the image generation. It means you need to host your own GPU server to support these workloads. It is hard to have the demo run purely on web browser, because stable diffusion usually has heavy computation and memory consumption. The web stable diffusion directly puts stable diffusion model in your browser, and it runs directly through client GPU on users’ laptop.
This means there is no queueing time for the server’s response, more opportunities for client server co-optimizations, and friendly for personalization and privacy.
​
Github page: https://github.com/mlc-ai/web-stable-diffusion
Also comes with a online demo: https://mlc.ai/web-stable-diffusion/
kalakau t1_jcn6q2v wrote
absolutely amazing, thanks for doing this!