Skip to content

Commit 2ecc1ab

Browse files
mauwiilstein
authored andcommitted
fix links to point to invoke-ai.github.io
1 parent e5ab070 commit 2ecc1ab

File tree

1 file changed

+33
-34
lines changed

1 file changed

+33
-34
lines changed

README.md

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ requests. Be sure to use the provided templates. They will help aid diagnose iss
6868
This fork is supported across multiple platforms. You can find individual installation instructions
6969
below.
7070

71-
- #### [Linux](docs/installation/INSTALL_LINUX.md)
71+
- #### [Linux](https://invoke-ai.github.io/InvokeAI/installation/INSTALL_LINUX/)
7272

73-
- #### [Windows](docs/installation/INSTALL_WINDOWS.md)
73+
- #### [Windows](https://invoke-ai.github.io/InvokeAI/installation/INSTALL_WINDOWS/)
7474

75-
- #### [Macintosh](docs/installation/INSTALL_MAC.md)
75+
- #### [Macintosh](https://invoke-ai.github.io/InvokeAI/installation/INSTALL_MAC/)
7676

7777
### Hardware Requirements
7878

@@ -103,34 +103,33 @@ errors like 'expected type Float but found Half' or 'not implemented for Half'
103103
you can try starting `invoke.py` with the `--precision=float32` flag:
104104

105105
```bash
106-
(ldm) ~/stable-diffusion$ python scripts/invoke.py --precision=float32
106+
(invokeai) ~/stable-diffusion$ python scripts/invoke.py --precision=float32
107107
```
108108

109109
### Features
110110

111111
#### Major Features
112112

113-
- [Web Server](docs/features/WEB.md)
114-
- [Interactive Command Line Interface](docs/features/CLI.md)
115-
- [Image To Image](docs/features/IMG2IMG.md)
116-
- [Inpainting Support](docs/features/INPAINTING.md)
117-
- [Outpainting Support](docs/features/OUTPAINTING.md)
118-
- [Upscaling, face-restoration and outpainting](docs/features/POSTPROCESS.md)
119-
- [Seamless Tiling](docs/features/OTHER.md#seamless-tiling)
120-
- [Google Colab](docs/features/OTHER.md#google-colab)
121-
- [Reading Prompts From File](docs/features/PROMPTS.md#reading-prompts-from-a-file)
122-
- [Shortcut: Reusing Seeds](docs/features/OTHER.md#shortcuts-reusing-seeds)
123-
- [Prompt Blending](docs/features/PROMPTS.md#prompt-blending)
124-
- [Thresholding and Perlin Noise Initialization Options](/docs/features/OTHER.md#thresholding-and-perlin-noise-initialization-options)
125-
- [Negative/Unconditioned Prompts](docs/features/PROMPTS.md#negative-and-unconditioned-prompts)
126-
- [Variations](docs/features/VARIATIONS.md)
127-
- [Personalizing Text-to-Image Generation](docs/features/TEXTUAL_INVERSION.md)
128-
- [Simplified API for text to image generation](docs/features/OTHER.md#simplified-api)
113+
- [Web Server](https://invoke-ai.github.io/InvokeAI/features/WEB/)
114+
- [Interactive Command Line Interface](https://invoke-ai.github.io/InvokeAI/features/CLI/)
115+
- [Image To Image](https://invoke-ai.github.io/InvokeAI/features/IMG2IMG/)
116+
- [Inpainting Support](https://invoke-ai.github.io/InvokeAI/features/INPAINTING/)
117+
- [Outpainting Support](https://invoke-ai.github.io/InvokeAI/features/OUTPAINTING/)
118+
- [Upscaling, face-restoration and outpainting](https://invoke-ai.github.io/InvokeAI/features/POSTPROCESS/)
119+
- [Reading Prompts From File](https://invoke-ai.github.io/InvokeAI/features/PROMPTS/#reading-prompts-from-a-file)
120+
- [Prompt Blending](https://invoke-ai.github.io/InvokeAI/features/PROMPTS/#prompt-blending)
121+
- [Thresholding and Perlin Noise Initialization Options](https://invoke-ai.github.io/InvokeAI/features/OTHER/#thresholding-and-perlin-noise-initialization-options)
122+
- [Negative/Unconditioned Prompts](https://invoke-ai.github.io/InvokeAI/features/PROMPTS/#negative-and-unconditioned-prompts)
123+
- [Variations](https://invoke-ai.github.io/InvokeAI/features/VARIATIONS/)
124+
- [Personalizing Text-to-Image Generation](https://invoke-ai.github.io/InvokeAI/features/TEXTUAL_INVERSION/)
125+
- [Simplified API for text to image generation](https://invoke-ai.github.io/InvokeAI/features/OTHER/#simplified-api)
129126

130127
#### Other Features
131128

132-
- [Creating Transparent Regions for Inpainting](docs/features/INPAINTING.md#creating-transparent-regions-for-inpainting)
133-
- [Preload Models](docs/features/OTHER.md#preload-models)
129+
- [Google Colab](https://invoke-ai.github.io/InvokeAI/features/OTHER/#google-colab)
130+
- [Seamless Tiling](https://invoke-ai.github.io/InvokeAI/features/OTHER/#seamless-tiling)
131+
- [Shortcut: Reusing Seeds](https://invoke-ai.github.io/InvokeAI/features/OTHER/#shortcuts-reusing-seeds)
132+
- [Preload Models](https://invoke-ai.github.io/InvokeAI/features/OTHER/#preload-models)
134133

135134
### Latest Changes
136135

@@ -144,33 +143,33 @@ you can try starting `invoke.py` with the `--precision=float32` flag:
144143
- `dream.py` script renamed `invoke.py`. A `dream.py` script wrapper remains
145144
for backward compatibility.
146145
- Completely new WebGUI - launch with `python3 scripts/invoke.py --web`
147-
- Support for <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/INPAINTING.md">inpainting</a> and <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/OUTPAINTING.md">outpainting</a>
146+
- Support for <a href="https://invoke-ai.github.io/InvokeAI/features/INPAINTING/">inpainting</a> and <a href="https://invoke-ai.github.io/InvokeAI/features/OUTPAINTING/">outpainting</a>
148147
- img2img runs on all k* samplers
149-
- Support for <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/PROMPTS.md#negative-and-unconditioned-prompts">negative prompts</a>
148+
- Support for <a href="https://invoke-ai.github.io/InvokeAI/features/PROMPTS/#negative-and-unconditioned-prompts">negative prompts</a>
150149
- Support for CodeFormer face reconstruction
151150
- Support for Textual Inversion on Macintoshes
152-
- Support in both WebGUI and CLI for <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/POSTPROCESS.md">post-processing of previously-generated images</a>
151+
- Support in both WebGUI and CLI for <a href="https://invoke-ai.github.io/InvokeAI/features/POSTPROCESS/">post-processing of previously-generated images</a>
153152
using facial reconstruction, ESRGAN upscaling, outcropping (similar to DALL-E infinite canvas),
154153
and "embiggen" upscaling. See the `!fix` command.
155-
- New `--hires` option on `invoke>` line allows <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/CLI.md#this-is-an-example-of-txt2img">larger images to be created without duplicating elements</a>, at the cost of some performance.
154+
- New `--hires` option on `invoke>` line allows <a href="https://invoke-ai.github.io/InvokeAI/features/CLI/#txt2img">larger images to be created without duplicating elements</a>, at the cost of some performance.
156155
- New `--perlin` and `--threshold` options allow you to add and control variation
157156
during image generation (see <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/OTHER.md#thresholding-and-perlin-noise-initialization-options">Thresholding and Perlin Noise Initialization</a>
158157
- Extensive metadata now written into PNG files, allowing reliable regeneration of images
159158
and tweaking of previous settings.
160159
- Command-line completion in `invoke.py` now works on Windows, Linux and Mac platforms.
161-
- Improved <a href="https://github.com/invoke-ai/InvokeAI/blob/main/docs/features/CLI.md">command-line completion behavior</a>.
160+
- Improved <a href="https://invoke-ai.github.io/InvokeAI/features/CLI/">command-line completion behavior</a>.
162161
New commands added:
163-
* List command-line history with `!history`
164-
* Search command-line history with `!search`
165-
* Clear history with `!clear`
162+
- List command-line history with `!history`
163+
- Search command-line history with `!search`
164+
- Clear history with `!clear`
166165
- Deprecated `--full_precision` / `-F`. Simply omit it and `invoke.py` will auto
167166
configure. To switch away from auto use the new flag like `--precision=float32`.
168167

169-
For older changelogs, please visit the **[CHANGELOG](docs/features/CHANGELOG.md)**.
168+
For older changelogs, please visit the **[CHANGELOG](https://invoke-ai.github.io/InvokeAI/CHANGELOG/)**.
170169

171170
### Troubleshooting
172171

173-
Please check out our **[Q&A](docs/help/TROUBLESHOOT.md)** to get solutions for common installation
172+
Please check out our **[Q&A](https://invoke-ai.github.io/InvokeAI/help/TROUBLESHOOT/#faq)** to get solutions for common installation
174173
problems and other issues.
175174

176175
# Contributing
@@ -188,7 +187,7 @@ changes.
188187
### Contributors
189188

190189
This fork is a combined effort of various people from across the world.
191-
[Check out the list of all these amazing people](docs/other/CONTRIBUTORS.md). We thank them for
190+
[Check out the list of all these amazing people](https://invoke-ai.github.io/InvokeAI/other/CONTRIBUTORS/). We thank them for
192191
their time, hard work and effort.
193192

194193
### Support
@@ -202,4 +201,4 @@ Original portions of the software are Copyright (c) 2020
202201
### Further Reading
203202

204203
Please see the original README for more information on this software and underlying algorithm,
205-
located in the file [README-CompViz.md](docs/other/README-CompViz.md).
204+
located in the file [README-CompViz.md](https://invoke-ai.github.io/InvokeAI/other/README-CompViz/).

0 commit comments

Comments
 (0)