stable-diffusion-tensorflow
stable-diffusion-tensorflow copied to clipboard
Stable Diffusion in TensorFlow / Keras
As implemented, is it currently possible to use negative prompts?
Add WebUI (gradio) and Dockerfile
There is currently no support in "stable diffusion.py" for the case where "input_image" to the generator is not a path to an image, i.e., of type "str." The value of...
In https://github.com/divamgupta/stable-diffusion-tensorflow/blob/c172a406ab25f2dc64495d20ceb31386d0fb00e1/stable_diffusion_tf/stable_diffusion.py#L141-L150 there is a parameter named `temperature`. Changing it does not affect the output. Are there future plans for it?
Hello, first and foremost, thank you for this fantastic repository and the provided colab demonstrations! When I attempted the GPU Colab + Mixed Precision and tried to send an input...
This makes it possible to import: ``` from stable_diffusion_tf import StableDiffusion ``` Also, this is actually required for imports to work if you're working in an alternative directory.
In this PR, prompt keywords were saved as PNG metadata.
Do you know the structure of the Decoder for 512x512x3 => 64x64x4? It would be good to have it too for img2img functionality, probably for inpainting too, and for upscaling.
(dlenv) D:\SourceCodes\Diffusion\stable-diffusion-tensorflow>python text2image.py --prompt="Ruins of a castle in Scotland" --output="my_image.png" 0 1: 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 50/50 [00:54
Hey the @divamgupta ! I'm trying to work on a FineTuning workflow for your model and was wondering if the VAE used in original training is available anywhere in TensorFlow...