-
- | Argument | Shortcut | Default | Description |
- |--------------------|------------|---------------------|--------------|
- | `--full_precision` | | `False` | Same as `--precision=fp32`|
- | `--weights
` | | `None` | Path to weights file; use `--model stable-diffusion-1.4` instead |
- | `--laion400m` | `-l` | `False` | Use older LAION400m weights; use `--model=laion400m` instead |
-
-
-
-!!! tip
-
- On Windows systems, you may run into
- problems when passing the invoke script standard backslashed path
- names because the Python interpreter treats "\" as an escape.
- You can either double your slashes (ick): `C:\\path\\to\\my\\file`, or
- use Linux/Mac style forward slashes (better): `C:/path/to/my/file`.
-
-## The .invokeai initialization file
-
-To start up invoke.py with your preferred settings, place your desired
-startup options in a file in your home directory named `.invokeai` The
-file should contain the startup options as you would type them on the
-command line (`--steps=10 --grid`), one argument per line, or a
-mixture of both using any of the accepted command switch formats:
-
-!!! example "my unmodified initialization file"
-
- ```bash title="~/.invokeai" linenums="1"
- # InvokeAI initialization file
- # This is the InvokeAI initialization file, which contains command-line default values.
- # Feel free to edit. If anything goes wrong, you can re-initialize this file by deleting
- # or renaming it and then running invokeai-configure again.
-
- # The --root option below points to the folder in which InvokeAI stores its models, configs and outputs.
- --root="/Users/mauwii/invokeai"
-
- # the --outdir option controls the default location of image files.
- --outdir="/Users/mauwii/invokeai/outputs"
-
- # You may place other frequently-used startup commands here, one or more per line.
- # Examples:
- # --web --host=0.0.0.0
- # --steps=20
- # -Ak_euler_a -C10.0
- ```
-
-!!! note
-
- The initialization file only accepts the command line arguments.
- There are additional arguments that you can provide on the `invoke>` command
- line (such as `-n` or `--iterations`) that cannot be entered into this file.
- Also be alert for empty blank lines at the end of the file, which will cause
- an arguments error at startup time.
-
-## List of prompt arguments
-
-After the invoke.py script initializes, it will present you with a `invoke>`
-prompt. Here you can enter information to generate images from text
-([txt2img](#txt2img)), to embellish an existing image or sketch
-([img2img](#img2img)), or to selectively alter chosen regions of the image
-([inpainting](#inpainting)).
-
-### txt2img
-
-!!! example ""
-
- ```bash
- invoke> waterfall and rainbow -W640 -H480
- ```
-
- This will create the requested image with the dimensions 640 (width)
- and 480 (height).
-
-Here are the invoke> command that apply to txt2img:
-
-| Argument