aboutsummaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* fixed indentationFlorian Horn2022-10-271-1/+1
|
* added save button and shortcut (s) to Modal ViewFlorian Horn2022-10-271-3/+5
|
* typo: cmd_opts.embedding_dir to cmd_opts.embeddings_dirDepFA2022-10-261-1/+1
|
* add script callback for before image save and change callback for after ↵AUTOMATIC2022-10-262-26/+64
| | | | image save to use a class with parameters
* add override_settings to API as an alternative to #3629AUTOMATIC2022-10-262-7/+22
|
* Implement PR #3625 but for embeddings.timntorres2022-10-261-1/+1
|
* Implement PR #3309 but for embeddings.timntorres2022-10-261-1/+8
|
* Implement PR #3189 but for embeddings.timntorres2022-10-261-5/+5
|
* patch bug (SeverianVoid's comment on 5245c7a)timntorres2022-10-261-1/+1
|
* img2img, use smartphone photos' EXIF orientationtimntorres2022-10-261-0/+8
|
* fix typo in on_save_imaged/on_image_saved; hope no extension is using it yetAUTOMATIC2022-10-261-1/+1
|
* default_time_format if format is blankw-e-w2022-10-261-1/+1
|
* images: allow nested bracket in filename patternMilly2022-10-261-7/+4
|
* cleanStephen2022-10-262-5/+1
|
* [Bugfix][API] - Fix API response for colab usersStephen2022-10-262-8/+19
|
* enable creating embedding with --medvramAUTOMATIC2022-10-261-0/+3
|
* Merge pull request #3139 from captin411/focal-point-croppingAUTOMATIC11112022-10-263-5/+392
|\ | | | | [Preprocess image] New option to auto crop based on complexity, edges, faces
| * update default weightscaptin4112022-10-262-9/+9
| |
| * download better face detection module dynamicallycaptin4112022-10-252-2/+31
| |
| * Focal crop UI elementscaptin4112022-10-252-15/+31
| |
| * Merge branch 'master' into focal-point-croppingcaptin4112022-10-2534-884/+2120
| |\
| * | improve debug markers, fix algo weightingcaptin4112022-10-251-78/+129
| | |
| * | auto cropping now works with non square cropscaptin4112022-10-231-240/+269
| | |
| * | improve face detection a lotcaptin4112022-10-201-37/+62
| | |
| * | face detection algo, configurability, reusabilitycaptin4112022-10-202-136/+230
| | | | | | | | | | | | | | | | | | | | | Try to move the crop in the direction of a face if it is present More internal configuration options for choosing weights of each of the algorithm's findings Move logic into its module
| * | fix entropy point calculationcaptin4112022-10-191-15/+19
| | |
| * | UI changes for focal point image croppingcaptin4112022-10-191-1/+3
| | |
| * | Add auto focal point cropping to Preprocess imagescaptin4112022-10-191-5/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This algorithm plots a bunch of points of interest on the source image and averages their locations to find a center. Most points come from OpenCV. One point comes from an entropy model. OpenCV points account for 50% of the weight and the entropy based point is the other 50%. The center of all weighted points is calculated and a bounding box is drawn as close to centered over that point as possible.
* | | remove duplicate keys and lowercaseAngelBottomless2022-10-261-1/+1
| | |
* | | Weight initialization and More activation funcAngelBottomless2022-10-263-11/+44
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | add weight init add weight init option in create_hypernetwork fstringify hypernet info save weight initialization info for further debugging fill bias with zero for He/Xavier initialize LayerNorm with Normal fix loading weight_init
* | update callbacks code for #3549AUTOMATIC2022-10-251-6/+16
| |
* | fix default filename patternw-e-w2022-10-251-1/+3
| |
* | MPS Upscalers Fixbrkirch2022-10-254-4/+7
| | | | | | | | Get ESRGAN, SCUNet, and SwinIR working correctly on MPS by ensuring memory is contiguous for tensor views before sending to MPS device.
* | Remove BSRGAN from --use-cpu, add SwinIRbrkirch2022-10-253-10/+10
| |
* | Merge branch 'master' into on-image-saved-callbackAUTOMATIC11112022-10-259-542/+207
|\ \
| * | do not stop execution when script's callback misbehaves and report which ↵AUTOMATIC2022-10-251-9/+36
| | | | | | | | | | | | script it was
| * | fix #3145 #3093ritosonn2022-10-251-2/+2
| | |
| * | UnknownTimeZoneErrorw-e-w2022-10-241-1/+4
| | |
| * | rename api/processing to api/models for #3511AUTOMATIC2022-10-242-1/+1
| | |
| * | add an option to skip adding number to filenames when saving.AUTOMATIC2022-10-242-123/+135
| | | | | | | | | | | | rework filename pattern function go through the pattern once and not calculate any of replacements until they are actually encountered in the pattern.
| * | use the same datetime object for [date] and [datetime]w-e-w2022-10-241-2/+3
| | |
| * | replace_datetime() can now accept a datetime parameterw-e-w2022-10-241-5/+11
| | |
| * | remove lowercasing file_decoration as it is not needed anymorew-e-w2022-10-241-1/+1
| | |
| * | add sanitize_filename() to datetimew-e-w2022-10-241-0/+1
| | |
| * | replace "srt.replace()" in apply_filename_pattern() with equivalent re.sub()w-e-w2022-10-241-18/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the file_decoration passed into apply_filename_pattern() is formatted to lowercase to increase compatibility the use of case sensitive srt.replace() but because the newly implemented "time format" is case sensitive the lowercasing the file_decoration will cause time format to be broken in order to resolve this issue I decided to replace every srt.replace() and in if "str" in x to regular expression (case insensitive) equivalent
| * | filename pattern [datetime], extended customizable Format and Time Zonew-e-w2022-10-241-1/+53
| | | | | | | | | | | | | | | | | | | | | format: [datetime] [datetime<Format>] [datetime<Format><Time Zone>]
| * | modify unnecessary sting assignment as it's going to get overwrittenw-e-w2022-10-241-2/+2
| | |
| * | move "file_decoration" initialize sectionw-e-w2022-10-241-12/+12
| | | | | | | | | | | | | | | into "if forced_filename is None:" no need to initialize it if it's not going to be used
| * | indent=4 config.jsonw-e-w2022-10-241-1/+1
| | |
| * | remove erroneous dir in the extension directoryAUTOMATIC2022-10-241-1/+1
| | | | | | | | | | | | | | | remove loading .js files from scripts dir (they go into javascript) load scripts after models, for scripts that depend on loaded models