aboutsummaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* Requested changescatboxanon2023-05-131-8/+7
|
* Define default fonts for Gradio themecatboxanon2023-05-121-2/+8
| | | | | | | Allows web UI to (almost) be ran fully offline. The web UI will hang on load if offline when these fonts are not manually defined, as it will attempt (and fail) to pull from Google Fonts.
* fix --data-dir for COMMANDLINE_ARGSw-e-w2023-05-121-0/+5
| | | | move reading of COMMANDLINE_ARGS into paths_internal.py so --data-dir can be properly read
* Merge pull request #10285 from akx/ruff-spacingAUTOMATIC11112023-05-1126-213/+215
|\ | | | | Indentation + ruff whitespace fixes
| * Autofix Ruff W (not W605) (mostly whitespace)Aarni Koskela2023-05-1125-113/+113
| |
| * Reindent autocrop with 4 spacesAarni Koskela2023-05-111-100/+102
| |
* | Merge pull request #10290 from akx/smart-live-preview-formatAUTOMATIC11112023-05-112-3/+11
|\ \ | | | | | | Make live previews use JPEG only for large images
| * | Make live previews use JPEG only when the image is lorge enoughAarni Koskela2023-05-112-3/+11
| |/
* / Fix symlink scanningcatboxanon2023-05-112-2/+2
|/
* put the star where it belongsAUTOMATIC2023-05-111-1/+1
|
* Drop fonts + font-roboto deps since we only use the single regular cut of RobotoAarni Koskela2023-05-113-3/+5
|
* Deduplicate get_font codeAarni Koskela2023-05-112-13/+9
|
* paths_internal: deduplicate modules_pathAarni Koskela2023-05-111-2/+3
|
* Merge pull request #10268 from Sakura-Luna/pbarAUTOMATIC11112023-05-111-33/+37
|\ | | | | UniPC progress bar adjustment
| * UniPC progress bar adjustmentSakura-Luna2023-05-111-33/+37
| |
* | change live preview format to jpeg to prevent unreasonably slow previews for ↵AUTOMATIC2023-05-112-2/+3
| | | | | | | | large images, and add an option to let user select the format
* | repair #10266AUTOMATIC2023-05-111-13/+5
| |
* | Update sub_quadratic_attention.pyLouis Del Valle2023-05-111-6/+15
| | | | | | | | | | | | | | 1. Determine the number of query chunks. 2. Calculate the final shape of the res tensor. 3. Initialize the tensor with the calculated shape and dtype, (same dtype as the input tensors, usually) Can initialize the tensor as a zero-filled tensor with the correct shape and dtype, then compute the attention scores for each query chunk and fill the corresponding slice of tensor.
* | add UI to edit defaultsAUTOMATIC2023-05-103-120/+237
| | | | | | | | | | | | allow setting defaults for elements in extensions' tabs fix a problem with ESRGAN upscalers disappearing after UI reload implicit change: HTML element id for train tab from tab_ti to tab_train (will this break things?)
* | suggestions and fixes from the PRAUTOMATIC2023-05-108-16/+12
| |
* | manual fixes for some C408AUTOMATIC2023-05-104-8/+8
| |
* | fixes for B007AUTOMATIC2023-05-1019-52/+48
| |
* | ruff manual fixesAUTOMATIC2023-05-1010-25/+39
| |
* | ruff auto fixesAUTOMATIC2023-05-1018-32/+32
| |
* | F401 fixes for ruffAUTOMATIC2023-05-1014-20/+16
| |
* | imports cleanup for ruffAUTOMATIC2023-05-1036-85/+21
| |
* | manual fixes for ruffAUTOMATIC2023-05-1016-105/+101
| |
* | autofixes from ruffAUTOMATIC2023-05-1015-32/+30
| |
* | fix an issue preventing the program from starting if the user specifies a ↵AUTOMATIC2023-05-101-2/+2
| | | | | | | | bad gradio theme
* | Merge pull request #10232 from akx/effAUTOMATIC11112023-05-0931-98/+118
|\ \ | | | | | | Fix up string formatting/concatenation to f-strings where feasible
| * | Fix up string formatting/concatenation to f-strings where feasibleAarni Koskela2023-05-0931-98/+118
| | |
* | | Merge pull request #10209 from AUTOMATIC1111/quicksettings-migrationAUTOMATIC11112023-05-091-0/+4
|\ \ \ | |/ / |/| | 1.1.1 quicksettings list migration
| * | 1.1.1 quicksettings list migrationw-e-w2023-05-091-0/+4
| | |
* | | refresh fixSakura-Luna2023-05-091-4/+1
|/ /
* | prevent Reload UI button/link from reloading the page when it's not yet readyAUTOMATIC2023-05-091-0/+2
| |
* | Merge pull request #10201 from brkirch/mps-nan-fixesAUTOMATIC11112023-05-092-2/+10
|\ \ | | | | | | Fix MPS on PyTorch 2.0.1, Intel Macs
| * | Fix generation with k-diffusion/UniPC on x64 Macsbrkirch2023-05-091-0/+5
| | |
| * | Remove PyTorch 2.0 checkbrkirch2023-05-091-2/+2
| | | | | | | | | | | | Apparently the commit in the main branch of pytorch/pytorch that fixes this issue didn't make it into PyTorch 2.0.1, and since it is unclear exactly which release will have it we'll just always apply the workaround so a crash doesn't occur regardless.
| * | Fix for Unet NaNsbrkirch2023-05-081-0/+3
| | |
* | | add links to wiki for filename pattern settingsAUTOMATIC2023-05-081-0/+14
| | | | | | | | | | | | add extended info for quicksettings setting
* | | use multiselect for quicksettings (this also resets the existing setting)AUTOMATIC2023-05-082-3/+3
| | |
* | | do not show licenses page when user selects Show all pages in settingsAUTOMATIC2023-05-081-2/+2
| | |
* | | put infotext options into their own category in settings tabAUTOMATIC2023-05-081-4/+7
| | |
* | | add version to infotext, footer and console output when startingAUTOMATIC2023-05-083-3/+15
| | |
* | | use file modification time instead of current time for #9760AUTOMATIC2023-05-081-1/+2
| | |
* | | Merge pull request #9760 from Sakura-Luna/refreshAUTOMATIC11112023-05-082-0/+3
|\ \ \ | | | | | | | | Fix gallery not being refreshed correctly
| * | | Reopen image fixSakura-Luna2023-05-051-0/+1
| | | |
| * | | Refresh fixSakura-Luna2023-05-041-1/+2
| | | |
| * | | Use a new way to solve webpage refreshSakura-Luna2023-05-041-1/+2
| | | |
| * | | Revert "Fix gallery not being refreshed correctly"Sakura-Luna2023-05-041-4/+0
| | | | | | | | | | | | | | | | This reverts commit 2c24e09dfc431ef7617134a807bf741f0b0c9fa3.