Lincoln Stein
d94780651c
Merge branch 'main' into patch-1
2023-02-07 00:07:31 -05:00
Lincoln Stein
d26abd7f01
add empty CUDA/ROCM install guide
2023-02-07 00:04:56 -05:00
Lincoln Stein
7e2b122105
updated manual install instructions
2023-02-06 23:59:48 -05:00
Lincoln Stein
8a21fc1c50
bump version to 2.3.0-rc6
2023-02-06 23:36:49 -05:00
Lincoln Stein
275d5040f4
Merge branch 'bugfix/configure-script' into 2.3.0rc6
2023-02-06 23:35:32 -05:00
Lincoln Stein
1b5930dcad
do not merge diffusers and ckpt stanzas
2023-02-06 23:23:07 -05:00
Lincoln Stein
d5810f6270
Bring main up to date with RC5 ( #2555 )
...
Updated the version number
2023-02-06 22:23:58 -05:00
Lincoln Stein
ebc51dc535
incomplete work on manual install
2023-02-06 21:47:29 -05:00
Lincoln Stein
ac6e9238f1
Merge branch 'main' into ti-doc-update
2023-02-06 20:06:33 -05:00
Saifeddine
01eb93d664
Added Arabic Localisation
2023-02-07 00:42:09 +01:00
Saifeddine
89f69c2d94
Merge branch 'main' of https://github.com/ParisNeo/ArtBot
2023-02-07 00:29:33 +01:00
Saifeddine
dc6f6fcab7
Added arabic locale files
2023-02-07 00:29:30 +01:00
Dan Sully
6343b245ef
Update textual inversion doc with the correct CLI name.
2023-02-06 14:51:22 -08:00
Lincoln Stein
8c80da2844
Merge branch 'main' into 2.3.0rc5
2023-02-06 17:38:25 -05:00
Lincoln Stein
a12189e088
fix build-container.yml ( #2557 )
...
This should fix the build-container workflow when triggered by a Tag
(that it is failing was mentioned in #2555 )
2023-02-06 15:09:04 -05:00
cosmii02
472c97e4e8
Merge branch 'main' into patch-1
2023-02-06 22:05:47 +02:00
mauwii
5baf0ae755
add mkdocs.yml and pyproject.toml
...
also make docs separate header
2023-02-06 20:47:20 +01:00
Lincoln Stein
a56e3014a4
Merge branch 'main' into update/ci/refine-build-container
2023-02-06 14:42:02 -05:00
Lincoln Stein
f3eff38f90
add tildebyte areas
2023-02-06 14:38:42 -05:00
Lincoln Stein
53d2d34b3d
Merge branch 'main' into 2.3.0rc5
2023-02-06 14:34:16 -05:00
Lincoln Stein
ede7d1a8f7
first draft of codeowners
2023-02-06 14:33:46 -05:00
blessedcoolant
ac23a321b0
build (hires-strength-slider)
2023-02-07 08:22:39 +13:00
blessedcoolant
f52b233205
Add Hi Res Strength Slider
2023-02-07 08:22:39 +13:00
mauwii
8242fc8bad
update metadata
2023-02-06 19:58:48 +01:00
Matthias Wild
09b6f7572b
Merge branch 'invoke-ai:main' into main
2023-02-06 19:50:40 +01:00
Lincoln Stein
bde6e96800
Merge branch 'main' into 2.3.0rc5
2023-02-06 12:55:47 -05:00
Lincoln Stein
13474e985b
Merge branch 'main' into patch-1
2023-02-06 12:54:07 -05:00
Jonathan
28b40bebbe
Refactor CUDA cache clearing to add statistical reporting. ( #2553 )
2023-02-06 12:53:30 -05:00
Lincoln Stein
1c9fd00f98
this is likely the penultimate rc
2023-02-06 12:03:08 -05:00
Lincoln Stein
8ab66a211c
force torch reinstall ( #2532 )
...
For the torch and torchvision libraries **only**, the installer will now
pass the pip `--force-reinstall` option. This is intended to fix issues
with the user getting a CPU-only version of torch and then not being
able to replace it.
2023-02-06 11:58:57 -05:00
Lincoln Stein
bc03ff8b30
Merge branch 'main' into install/force-torch-reinstall
2023-02-06 11:31:57 -05:00
blessedcoolant
0247d63511
Build (negative-prompt-box)
2023-02-07 05:21:09 +13:00
blessedcoolant
7604b36577
Add Negative Prompts Box
2023-02-07 05:21:09 +13:00
blessedcoolant
4a026bd46e
Organize language picker items alphabetically
2023-02-07 05:21:09 +13:00
blessedcoolant
6241fc19e0
Fix the model manager edit placeholder not being full height
2023-02-07 05:21:09 +13:00
blessedcoolant
25d7d71dd8
Slightly decrease the size of the tab list icons
2023-02-07 05:21:09 +13:00
Jonathan
2432adb38f
In exception handlers, clear the torch CUDA cache (if we're using CUDA) to free up memory for other programs using the GPU and to reduce fragmentation. ( #2549 )
2023-02-06 10:33:24 -05:00
Lincoln Stein
91acae30bf
Merge branch 'main' into patch-1
2023-02-06 10:14:27 -05:00
Lincoln Stein
ca749b7de1
remove debugging statement
2023-02-06 09:45:21 -05:00
Lincoln Stein
7486aa8608
enhance model_manager support for converting inpainting ckpt files
...
Previously conversions of .ckpt and .safetensors files to diffusers
models were failing with channel mismatch errors. This is corrected
with this PR.
- The model_manager convert_and_import() method now accepts the path
to the checkpoint file's configuration file, using the parameter
`original_config_file`. For inpainting files this should be set to
the full path to `v1-inpainting-inference.yaml`.
- If no configuration file is provided in the call, then the presence
of an inpainting file will be inferred at the
`ldm.ckpt_to_diffuser.convert_ckpt_to_diffUser()` level by looking
for the string "inpaint" in the path. AUTO1111 does something
similar to this, but it is brittle and not recommended.
- This PR also changes the model manager model_names() method to return
the model names in case folded sort order.
2023-02-06 09:35:23 -05:00
mauwii
0402766f4d
add author label
2023-02-06 14:05:27 +01:00
mauwii
a9ef5d1532
update tags
2023-02-06 14:05:27 +01:00
Matthias Wild
a485d45400
Update test-invoke-pip.yml
( #2524 )
...
test-invoke-pip.yml:
- enable caching of pip dependencies in `actions/setup-python@v4`
- add workflow_dispatch trigger
- fix indentation in concurrency
- set env `PIP_USE_PEP517: '1'`
- cache python dependencies
- remove models cache (since we currently use 190.96 GB of 10 GB while I
am writing this)
- add step to set `INVOKEAI_OUTDIR`
- add outdir arg to invokeai
- fix path in archive results
model_manager.py:
- read files in chunks when calculating sha (windows runner is crashing
otherwise)
2023-02-06 12:56:15 +01:00
mauwii
a40bdef29f
update model_manager.py
...
- read files in chunks when calculating sha
- windows runner is crashing without
2023-02-06 12:30:10 +01:00
mauwii
fc2670b4d6
update test-invoke-pip.yml
...
- add workflow_dispatch trigger
- fix indentation in concurrency
- set env `PIP_USE_PEP517: '1'`
- cache python dependencies
- remove models cache (since currently 183.59 GB of 10 GB are Used)
- add step to set `INVOKEAI_OUTDIR`
- add outdir arg to invokeai
- fix path in archive results
2023-02-06 12:30:10 +01:00
Eugene Brodsky
f0cd1aa736
highlight key elements of installer welcome message
...
- help users to avoid glossing over per-platform prerequisites
- better link colouring
- update link to community instructions to install xcode command line tools
2023-02-06 00:57:29 -05:00
Lincoln Stein
c3807b044d
Merge branch 'main' into install/force-torch-reinstall
2023-02-06 00:18:38 -05:00
Jonathan
b7ab025f40
Update base.py ( #2543 )
...
Free up CUDA cache right after each image is generated. VRAM usage drops down to pre-generation levels.
2023-02-06 05:14:35 +00:00
Lincoln Stein
633f702b39
fix crash in txt2img and img2img w/ inpainting models and perlin > 0 ( #2544 )
...
- get_perlin_noise() was returning 9 channels; fixed code to return
noise for just the 4 image channels and not the mask ones.
- Closes Issue #2541
2023-02-05 23:50:32 -05:00
Lincoln Stein
3969637488
remove misleading completion message from merge_diffusers
2023-02-05 23:39:43 -05:00