diff --git a/README.md b/README.md index bac646700b..8aa98d5b8b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Stable Diffusion Dream Script

- +

@@ -22,7 +22,7 @@ text-to-image generator. This fork supports: generating images in your browser. 3. Support for img2img in which you provide a seed image to guide the - image creation + image creation. (inpainting & masking coming soon) 4. Preliminary inpainting support. @@ -33,9 +33,9 @@ text-to-image generator. This fork supports: 7. Weighted subprompts for prompt tuning. -8. [Image variations](VARIATIONS.md) which allow you to systematically -generate variations of an image you like and combine two or more -images together to combine the best features of both. +7. [Image variations](VARIATIONS.md) which allow you to systematically + generate variations of an image you like and combine two or more + images together to combine the best features of both. 9. Textual inversion for customization of the prompt language and images. @@ -387,9 +387,8 @@ and introducing a new vocabulary to the fixed model. To train, prepare a folder that contains images sized at 512x512 and execute the following: - WINDOWS: As the default backend is not available on Windows, if you're using that platform, set the environment variable `PL_TORCH_DISTRIBUTED_BACKEND=gloo` - + ``` (ldm) ~/stable-diffusion$ python3 ./main.py --base ./configs/stable-diffusion/v1-finetune.yaml \ -t \ @@ -460,7 +459,7 @@ repository and associated paper for details and limitations. - WebUI supports GFPGAN/ESRGAN facial reconstruction and upscaling [Kevin Gibbons](https://github.com/bakkot) - WebUI supports incremental display of in-progress images during generation [Kevin Gibbons](https://github.com/bakkot) - A new configuration file scheme that allows new models (including upcoming stable-diffusion-v1.5) - to be added without altering the code. ([David Wager](https://github.com/maddavid12)) + to be added without altering the code. ([David Wager](https://github.com/maddavid12)) - Can specify --grid on dream.py command line as the default. - Miscellaneous internal bug and stability fixes. - Works on M1 Apple hardware. @@ -484,8 +483,8 @@ There are separate installation walkthroughs for [Linux](#linux), [Windows](#win ``` ~$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh -~$ chmod +x Anaconda3-2022.05-Linux-x86_64.sh -~$ ./Anaconda3-2022.05-Linux-x86_64.sh +~$ chmod +x Anaconda3-2022.05-Linux-x86_64.sh +~$ ./Anaconda3-2022.05-Linux-x86_64.sh ``` After installing anaconda, you should log out of your system and log back in. If the installation @@ -674,9 +673,9 @@ python scripts\dream.py ``` 10. Subsequently, to relaunch the script, first activate the Anaconda -command window (step 3), enter the stable-diffusion directory (step 5, -"cd \path\to\stable-diffusion"), run "conda activate ldm" (step 6b), -and then launch the dream script (step 9). + command window (step 3), enter the stable-diffusion directory (step 5, + "cd \path\to\stable-diffusion"), run "conda activate ldm" (step 6b), + and then launch the dream script (step 9). **Note:** Tildebyte has written an alternative ["Easy peasy Windows install"](https://github.com/lstein/stable-diffusion/wiki/Easy-peasy-Windows-install) diff --git a/ldm/simplet2i.py b/ldm/simplet2i.py index 548c44fa49..b4f6b3ef42 100644 --- a/ldm/simplet2i.py +++ b/ldm/simplet2i.py @@ -10,4 +10,4 @@ from ldm.generate import Generate class T2I(Generate): def __init__(self,**kwargs): print(f'>> The ldm.simplet2i module is deprecated. Use ldm.generate instead. It is a drop-in replacement.') - super().__init__(kwargs) + super().__init__(kwargs) \ No newline at end of file diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 0000000000..fa0548ff78 Binary files /dev/null and b/static/logo.png differ diff --git a/static/logo_temp.png b/static/logo_temp.png deleted file mode 100644 index f64d7d2dff..0000000000 Binary files a/static/logo_temp.png and /dev/null differ