added config files
parent
ff6cc394cb
commit
fb68c0ab06
@ -1,35 +1,12 @@
|
||||
__pycache__
|
||||
*.ckpt
|
||||
*.safetensors
|
||||
*.pth
|
||||
/ESRGAN/*
|
||||
/SwinIR/*
|
||||
/repositories
|
||||
/venv
|
||||
/tmp
|
||||
/model.ckpt
|
||||
/models/**/*
|
||||
/GFPGANv1.3.pth
|
||||
/gfpgan/weights/*.pth
|
||||
/ui-config.json
|
||||
/outputs
|
||||
/config.json
|
||||
/log
|
||||
/webui.settings.bat
|
||||
/embeddings
|
||||
/styles.csv
|
||||
/params.txt
|
||||
/styles.csv.bak
|
||||
/webui-user.bat
|
||||
/webui-user.sh
|
||||
/interrogate
|
||||
/user.css
|
||||
/.idea
|
||||
notification.mp3
|
||||
/SwinIR
|
||||
/textual_inversion
|
||||
.vscode
|
||||
/extensions
|
||||
/test/stdout.txt
|
||||
/test/stderr.txt
|
||||
/cache.json
|
||||
|
||||
@ -1,161 +0,0 @@
|
||||
# Stable Diffusion web UI
|
||||
A browser interface based on Gradio library for Stable Diffusion.
|
||||
|
||||

|
||||
|
||||
## Features
|
||||
[Detailed feature showcase with images](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features):
|
||||
- Original txt2img and img2img modes
|
||||
- One click install and run script (but you still must install python and git)
|
||||
- Outpainting
|
||||
- Inpainting
|
||||
- Color Sketch
|
||||
- Prompt Matrix
|
||||
- Stable Diffusion Upscale
|
||||
- Attention, specify parts of text that the model should pay more attention to
|
||||
- a man in a `((tuxedo))` - will pay more attention to tuxedo
|
||||
- a man in a `(tuxedo:1.21)` - alternative syntax
|
||||
- select text and press `Ctrl+Up` or `Ctrl+Down` to automatically adjust attention to selected text (code contributed by anonymous user)
|
||||
- Loopback, run img2img processing multiple times
|
||||
- X/Y/Z plot, a way to draw a 3 dimensional plot of images with different parameters
|
||||
- Textual Inversion
|
||||
- have as many embeddings as you want and use any names you like for them
|
||||
- use multiple embeddings with different numbers of vectors per token
|
||||
- works with half precision floating point numbers
|
||||
- train embeddings on 8GB (also reports of 6GB working)
|
||||
- Extras tab with:
|
||||
- GFPGAN, neural network that fixes faces
|
||||
- CodeFormer, face restoration tool as an alternative to GFPGAN
|
||||
- RealESRGAN, neural network upscaler
|
||||
- ESRGAN, neural network upscaler with a lot of third party models
|
||||
- SwinIR and Swin2SR ([see here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/2092)), neural network upscalers
|
||||
- LDSR, Latent diffusion super resolution upscaling
|
||||
- Resizing aspect ratio options
|
||||
- Sampling method selection
|
||||
- Adjust sampler eta values (noise multiplier)
|
||||
- More advanced noise setting options
|
||||
- Interrupt processing at any time
|
||||
- 4GB video card support (also reports of 2GB working)
|
||||
- Correct seeds for batches
|
||||
- Live prompt token length validation
|
||||
- Generation parameters
|
||||
- parameters you used to generate images are saved with that image
|
||||
- in PNG chunks for PNG, in EXIF for JPEG
|
||||
- can drag the image to PNG info tab to restore generation parameters and automatically copy them into UI
|
||||
- can be disabled in settings
|
||||
- drag and drop an image/text-parameters to promptbox
|
||||
- Read Generation Parameters Button, loads parameters in promptbox to UI
|
||||
- Settings page
|
||||
- Running arbitrary python code from UI (must run with `--allow-code` to enable)
|
||||
- Mouseover hints for most UI elements
|
||||
- Possible to change defaults/mix/max/step values for UI elements via text config
|
||||
- Tiling support, a checkbox to create images that can be tiled like textures
|
||||
- Progress bar and live image generation preview
|
||||
- Can use a separate neural network to produce previews with almost none VRAM or compute requirement
|
||||
- Negative prompt, an extra text field that allows you to list what you don't want to see in generated image
|
||||
- Styles, a way to save part of prompt and easily apply them via dropdown later
|
||||
- Variations, a way to generate same image but with tiny differences
|
||||
- Seed resizing, a way to generate same image but at slightly different resolution
|
||||
- CLIP interrogator, a button that tries to guess prompt from an image
|
||||
- Prompt Editing, a way to change prompt mid-generation, say to start making a watermelon and switch to anime girl midway
|
||||
- Batch Processing, process a group of files using img2img
|
||||
- Img2img Alternative, reverse Euler method of cross attention control
|
||||
- Highres Fix, a convenience option to produce high resolution pictures in one click without usual distortions
|
||||
- Reloading checkpoints on the fly
|
||||
- Checkpoint Merger, a tab that allows you to merge up to 3 checkpoints into one
|
||||
- [Custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Scripts) with many extensions from community
|
||||
- [Composable-Diffusion](https://energy-based-model.github.io/Compositional-Visual-Generation-with-Composable-Diffusion-Models/), a way to use multiple prompts at once
|
||||
- separate prompts using uppercase `AND`
|
||||
- also supports weights for prompts: `a cat :1.2 AND a dog AND a penguin :2.2`
|
||||
- No token limit for prompts (original stable diffusion lets you use up to 75 tokens)
|
||||
- DeepDanbooru integration, creates danbooru style tags for anime prompts
|
||||
- [xformers](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers), major speed increase for select cards: (add `--xformers` to commandline args)
|
||||
- via extension: [History tab](https://github.com/yfszzx/stable-diffusion-webui-images-browser): view, direct and delete images conveniently within the UI
|
||||
- Generate forever option
|
||||
- Training tab
|
||||
- hypernetworks and embeddings options
|
||||
- Preprocessing images: cropping, mirroring, autotagging using BLIP or deepdanbooru (for anime)
|
||||
- Clip skip
|
||||
- Hypernetworks
|
||||
- Loras (same as Hypernetworks but more pretty)
|
||||
- A sparate UI where you can choose, with preview, which embeddings, hypernetworks or Loras to add to your prompt
|
||||
- Can select to load a different VAE from settings screen
|
||||
- Estimated completion time in progress bar
|
||||
- API
|
||||
- Support for dedicated [inpainting model](https://github.com/runwayml/stable-diffusion#inpainting-with-stable-diffusion) by RunwayML
|
||||
- via extension: [Aesthetic Gradients](https://github.com/AUTOMATIC1111/stable-diffusion-webui-aesthetic-gradients), a way to generate images with a specific aesthetic by using clip images embeds (implementation of [https://github.com/vicgalle/stable-diffusion-aesthetic-gradients](https://github.com/vicgalle/stable-diffusion-aesthetic-gradients))
|
||||
- [Stable Diffusion 2.0](https://github.com/Stability-AI/stablediffusion) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#stable-diffusion-20) for instructions
|
||||
- [Alt-Diffusion](https://arxiv.org/abs/2211.06679) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#alt-diffusion) for instructions
|
||||
- Now without any bad letters!
|
||||
- Load checkpoints in safetensors format
|
||||
- Eased resolution restriction: generated image's domension must be a multiple of 8 rather than 64
|
||||
- Now with a license!
|
||||
- Reorder elements in the UI from settings screen
|
||||
|
||||
## Installation and Running
|
||||
Make sure the required [dependencies](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Dependencies) are met and follow the instructions available for both [NVidia](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs) (recommended) and [AMD](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-AMD-GPUs) GPUs.
|
||||
|
||||
Alternatively, use online services (like Google Colab):
|
||||
|
||||
- [List of Online Services](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services)
|
||||
|
||||
### Automatic Installation on Windows
|
||||
1. Install [Python 3.10.6](https://www.python.org/downloads/windows/), checking "Add Python to PATH".
|
||||
2. Install [git](https://git-scm.com/download/win).
|
||||
3. Download the stable-diffusion-webui repository, for example by running `git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git`.
|
||||
4. Run `webui-user.bat` from Windows Explorer as normal, non-administrator, user.
|
||||
|
||||
### Automatic Installation on Linux
|
||||
1. Install the dependencies:
|
||||
```bash
|
||||
# Debian-based:
|
||||
sudo apt install wget git python3 python3-venv
|
||||
# Red Hat-based:
|
||||
sudo dnf install wget git python3
|
||||
# Arch-based:
|
||||
sudo pacman -S wget git python3
|
||||
```
|
||||
2. To install in `/home/$(whoami)/stable-diffusion-webui/`, run:
|
||||
```bash
|
||||
bash <(wget -qO- https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh)
|
||||
```
|
||||
3. Run `webui.sh`.
|
||||
### Installation on Apple Silicon
|
||||
|
||||
Find the instructions [here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon).
|
||||
|
||||
## Contributing
|
||||
Here's how to add code to this repo: [Contributing](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing)
|
||||
|
||||
## Documentation
|
||||
The documentation was moved from this README over to the project's [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki).
|
||||
|
||||
## Credits
|
||||
Licenses for borrowed code can be found in `Settings -> Licenses` screen, and also in `html/licenses.html` file.
|
||||
|
||||
- Stable Diffusion - https://github.com/CompVis/stable-diffusion, https://github.com/CompVis/taming-transformers
|
||||
- k-diffusion - https://github.com/crowsonkb/k-diffusion.git
|
||||
- GFPGAN - https://github.com/TencentARC/GFPGAN.git
|
||||
- CodeFormer - https://github.com/sczhou/CodeFormer
|
||||
- ESRGAN - https://github.com/xinntao/ESRGAN
|
||||
- SwinIR - https://github.com/JingyunLiang/SwinIR
|
||||
- Swin2SR - https://github.com/mv-lab/swin2sr
|
||||
- LDSR - https://github.com/Hafiidz/latent-diffusion
|
||||
- MiDaS - https://github.com/isl-org/MiDaS
|
||||
- Ideas for optimizations - https://github.com/basujindal/stable-diffusion
|
||||
- Cross Attention layer optimization - Doggettx - https://github.com/Doggettx/stable-diffusion, original idea for prompt editing.
|
||||
- Cross Attention layer optimization - InvokeAI, lstein - https://github.com/invoke-ai/InvokeAI (originally http://github.com/lstein/stable-diffusion)
|
||||
- Sub-quadratic Cross Attention layer optimization - Alex Birch (https://github.com/Birch-san/diffusers/pull/1), Amin Rezaei (https://github.com/AminRezaei0x443/memory-efficient-attention)
|
||||
- Textual Inversion - Rinon Gal - https://github.com/rinongal/textual_inversion (we're not using his code, but we are using his ideas).
|
||||
- Idea for SD upscale - https://github.com/jquesnelle/txt2imghd
|
||||
- Noise generation for outpainting mk2 - https://github.com/parlance-zz/g-diffuser-bot
|
||||
- CLIP interrogator idea and borrowing some code - https://github.com/pharmapsychotic/clip-interrogator
|
||||
- Idea for Composable Diffusion - https://github.com/energy-based-model/Compositional-Visual-Generation-with-Composable-Diffusion-Models-PyTorch
|
||||
- xformers - https://github.com/facebookresearch/xformers
|
||||
- DeepDanbooru - interrogator for anime diffusers https://github.com/KichangKim/DeepDanbooru
|
||||
- Sampling in float32 precision from a float16 UNet - marunine for the idea, Birch-san for the example Diffusers implementation (https://github.com/Birch-san/diffusers-play/tree/92feee6)
|
||||
- Instruct pix2pix - Tim Brooks (star), Aleksander Holynski (star), Alexei A. Efros (no star) - https://github.com/timothybrooks/instruct-pix2pix
|
||||
- Security advice - RyotaK
|
||||
- UniPC sampler - Wenliang Zhao - https://github.com/wl-zhao/UniPC
|
||||
- Initial Gradio script - posted on 4chan by an Anonymous user. Thank you Anonymous user.
|
||||
- (You)
|
||||
@ -0,0 +1,162 @@
|
||||
{
|
||||
"samples_save": true,
|
||||
"samples_format": "png",
|
||||
"samples_filename_pattern": "",
|
||||
"save_images_add_number": true,
|
||||
"grid_save": true,
|
||||
"grid_format": "png",
|
||||
"grid_extended_filename": false,
|
||||
"grid_only_if_multiple": true,
|
||||
"grid_prevent_empty_spots": false,
|
||||
"n_rows": -1,
|
||||
"enable_pnginfo": true,
|
||||
"save_txt": false,
|
||||
"save_images_before_face_restoration": false,
|
||||
"save_images_before_highres_fix": false,
|
||||
"save_images_before_color_correction": false,
|
||||
"save_mask": false,
|
||||
"save_mask_composite": false,
|
||||
"jpeg_quality": 80,
|
||||
"webp_lossless": false,
|
||||
"export_for_4chan": true,
|
||||
"img_downscale_threshold": 4.0,
|
||||
"target_side_length": 4000,
|
||||
"img_max_size_mp": 200,
|
||||
"use_original_name_batch": true,
|
||||
"use_upscaler_name_as_suffix": false,
|
||||
"save_selected_only": true,
|
||||
"do_not_add_watermark": false,
|
||||
"temp_dir": "",
|
||||
"clean_temp_dir_at_start": false,
|
||||
"outdir_samples": "",
|
||||
"outdir_txt2img_samples": "outputs/txt2img-images",
|
||||
"outdir_img2img_samples": "outputs/img2img-images",
|
||||
"outdir_extras_samples": "outputs/extras-images",
|
||||
"outdir_grids": "",
|
||||
"outdir_txt2img_grids": "outputs/txt2img-grids",
|
||||
"outdir_img2img_grids": "outputs/img2img-grids",
|
||||
"outdir_save": "log/images",
|
||||
"save_to_dirs": true,
|
||||
"grid_save_to_dirs": true,
|
||||
"use_save_to_dirs_for_ui": false,
|
||||
"directories_filename_pattern": "[date]",
|
||||
"directories_max_prompt_words": 8,
|
||||
"ESRGAN_tile": 192,
|
||||
"ESRGAN_tile_overlap": 8,
|
||||
"realesrgan_enabled_models": [
|
||||
"R-ESRGAN 4x+",
|
||||
"R-ESRGAN 4x+ Anime6B"
|
||||
],
|
||||
"upscaler_for_img2img": null,
|
||||
"face_restoration_model": "CodeFormer",
|
||||
"code_former_weight": 0.5,
|
||||
"face_restoration_unload": false,
|
||||
"show_warnings": false,
|
||||
"memmon_poll_rate": 8,
|
||||
"samples_log_stdout": false,
|
||||
"multiple_tqdm": true,
|
||||
"print_hypernet_extra": false,
|
||||
"unload_models_when_training": false,
|
||||
"pin_memory": false,
|
||||
"save_optimizer_state": false,
|
||||
"save_training_settings_to_txt": true,
|
||||
"dataset_filename_word_regex": "",
|
||||
"dataset_filename_join_string": " ",
|
||||
"training_image_repeats_per_epoch": 1,
|
||||
"training_write_csv_every": 500,
|
||||
"training_xattention_optimizations": false,
|
||||
"training_enable_tensorboard": false,
|
||||
"training_tensorboard_save_images": false,
|
||||
"training_tensorboard_flush_every": 120,
|
||||
"sd_model_checkpoint": "aresMix_v01.safetensors [6ecece11bf]",
|
||||
"sd_checkpoint_cache": 0,
|
||||
"sd_vae_checkpoint_cache": 0,
|
||||
"sd_vae": "vae-ft-mse-840000-ema-pruned.safetensors",
|
||||
"sd_vae_as_default": true,
|
||||
"inpainting_mask_weight": 1.0,
|
||||
"initial_noise_multiplier": 1.0,
|
||||
"img2img_color_correction": false,
|
||||
"img2img_fix_steps": false,
|
||||
"img2img_background_color": "#ffffff",
|
||||
"enable_quantization": false,
|
||||
"enable_emphasis": true,
|
||||
"enable_batch_seeds": true,
|
||||
"comma_padding_backtrack": 20,
|
||||
"CLIP_stop_at_last_layers": 1,
|
||||
"upcast_attn": false,
|
||||
"use_old_emphasis_implementation": false,
|
||||
"use_old_karras_scheduler_sigmas": false,
|
||||
"no_dpmpp_sde_batch_determinism": false,
|
||||
"use_old_hires_fix_width_height": false,
|
||||
"interrogate_keep_models_in_memory": false,
|
||||
"interrogate_return_ranks": false,
|
||||
"interrogate_clip_num_beams": 1,
|
||||
"interrogate_clip_min_length": 24,
|
||||
"interrogate_clip_max_length": 48,
|
||||
"interrogate_clip_dict_limit": 1500,
|
||||
"interrogate_clip_skip_categories": [],
|
||||
"interrogate_deepbooru_score_threshold": 0.5,
|
||||
"deepbooru_sort_alpha": true,
|
||||
"deepbooru_use_spaces": false,
|
||||
"deepbooru_escape": true,
|
||||
"deepbooru_filter_tags": "",
|
||||
"extra_networks_default_view": "cards",
|
||||
"extra_networks_default_multiplier": 1.0,
|
||||
"extra_networks_card_width": 0,
|
||||
"extra_networks_card_height": 0,
|
||||
"extra_networks_add_text_separator": " ",
|
||||
"sd_hypernetwork": "None",
|
||||
"return_grid": true,
|
||||
"return_mask": false,
|
||||
"return_mask_composite": false,
|
||||
"do_not_show_images": false,
|
||||
"add_model_hash_to_info": true,
|
||||
"add_model_name_to_info": true,
|
||||
"disable_weights_auto_swap": true,
|
||||
"send_seed": true,
|
||||
"send_size": true,
|
||||
"font": "",
|
||||
"js_modal_lightbox": true,
|
||||
"js_modal_lightbox_initially_zoomed": true,
|
||||
"show_progress_in_title": true,
|
||||
"samplers_in_dropdown": true,
|
||||
"dimensions_and_batch_together": true,
|
||||
"keyedit_precision_attention": 0.1,
|
||||
"keyedit_precision_extra": 0.05,
|
||||
"quicksettings": "sd_model_checkpoint",
|
||||
"hidden_tabs": [],
|
||||
"ui_reorder": "inpaint, sampler, checkboxes, hires_fix, dimensions, cfg, seed, batch, override_settings, scripts",
|
||||
"ui_extra_networks_tab_reorder": "",
|
||||
"localization": "None",
|
||||
"show_progressbar": true,
|
||||
"live_previews_enable": true,
|
||||
"show_progress_grid": true,
|
||||
"show_progress_every_n_steps": 10,
|
||||
"show_progress_type": "Approx NN",
|
||||
"live_preview_content": "Prompt",
|
||||
"live_preview_refresh_period": 1000,
|
||||
"hide_samplers": [],
|
||||
"eta_ddim": 0.0,
|
||||
"eta_ancestral": 1.0,
|
||||
"ddim_discretize": "uniform",
|
||||
"s_churn": 0.0,
|
||||
"s_tmin": 0.0,
|
||||
"s_noise": 1.0,
|
||||
"eta_noise_seed_delta": 0,
|
||||
"always_discard_next_to_last_sigma": false,
|
||||
"uni_pc_variant": "bh1",
|
||||
"uni_pc_skip_type": "time_uniform",
|
||||
"uni_pc_order": 3,
|
||||
"uni_pc_lower_order_final": true,
|
||||
"postprocessing_enable_in_main_ui": [],
|
||||
"postprocessing_operation_order": [],
|
||||
"upscaling_max_images_in_cache": 5,
|
||||
"disabled_extensions": [],
|
||||
"disable_all_extensions": "none",
|
||||
"sd_checkpoint_hash": "6ecece11bf069e9950746d33ab346826c5352acf047c64a3ab74c8884924adf0",
|
||||
"ldsr_steps": 100,
|
||||
"ldsr_cached": false,
|
||||
"SWIN_tile": 192,
|
||||
"SWIN_tile_overlap": 8,
|
||||
"sd_lora": "None"
|
||||
}
|
||||
@ -0,0 +1,591 @@
|
||||
{
|
||||
"txt2img/Prompt/visible": true,
|
||||
"txt2img/Prompt/value": "",
|
||||
"txt2img/Negative prompt/visible": true,
|
||||
"txt2img/Negative prompt/value": "",
|
||||
"txt2img/Styles/visible": true,
|
||||
"txt2img/Styles/value": [],
|
||||
"txt2img/Sampling method/visible": true,
|
||||
"txt2img/Sampling method/value": "Euler a",
|
||||
"txt2img/Sampling steps/visible": true,
|
||||
"txt2img/Sampling steps/value": 20,
|
||||
"txt2img/Sampling steps/minimum": 1,
|
||||
"txt2img/Sampling steps/maximum": 150,
|
||||
"txt2img/Sampling steps/step": 1,
|
||||
"txt2img/Restore faces/visible": true,
|
||||
"txt2img/Restore faces/value": false,
|
||||
"txt2img/Tiling/visible": true,
|
||||
"txt2img/Tiling/value": false,
|
||||
"txt2img/Hires. fix/visible": true,
|
||||
"txt2img/Hires. fix/value": false,
|
||||
"txt2img/Upscaler/visible": true,
|
||||
"txt2img/Upscaler/value": "Latent",
|
||||
"txt2img/Hires steps/visible": true,
|
||||
"txt2img/Hires steps/value": 0,
|
||||
"txt2img/Hires steps/minimum": 0,
|
||||
"txt2img/Hires steps/maximum": 150,
|
||||
"txt2img/Hires steps/step": 1,
|
||||
"txt2img/Denoising strength/visible": true,
|
||||
"txt2img/Denoising strength/value": 0.7,
|
||||
"txt2img/Denoising strength/minimum": 0.0,
|
||||
"txt2img/Denoising strength/maximum": 1.0,
|
||||
"txt2img/Denoising strength/step": 0.01,
|
||||
"txt2img/Upscale by/visible": true,
|
||||
"txt2img/Upscale by/value": 2.0,
|
||||
"txt2img/Upscale by/minimum": 1.0,
|
||||
"txt2img/Upscale by/maximum": 4.0,
|
||||
"txt2img/Upscale by/step": 0.05,
|
||||
"txt2img/Resize width to/visible": true,
|
||||
"txt2img/Resize width to/value": 0,
|
||||
"txt2img/Resize width to/minimum": 0,
|
||||
"txt2img/Resize width to/maximum": 2048,
|
||||
"txt2img/Resize width to/step": 8,
|
||||
"txt2img/Resize height to/visible": true,
|
||||
"txt2img/Resize height to/value": 0,
|
||||
"txt2img/Resize height to/minimum": 0,
|
||||
"txt2img/Resize height to/maximum": 2048,
|
||||
"txt2img/Resize height to/step": 8,
|
||||
"txt2img/Width/visible": true,
|
||||
"txt2img/Width/value": 512,
|
||||
"txt2img/Width/minimum": 64,
|
||||
"txt2img/Width/maximum": 2048,
|
||||
"txt2img/Width/step": 8,
|
||||
"txt2img/Height/visible": true,
|
||||
"txt2img/Height/value": 512,
|
||||
"txt2img/Height/minimum": 64,
|
||||
"txt2img/Height/maximum": 2048,
|
||||
"txt2img/Height/step": 8,
|
||||
"txt2img/Batch count/visible": true,
|
||||
"txt2img/Batch count/value": 1,
|
||||
"txt2img/Batch count/minimum": 1,
|
||||
"txt2img/Batch count/maximum": 100,
|
||||
"txt2img/Batch count/step": 1,
|
||||
"txt2img/Batch size/visible": true,
|
||||
"txt2img/Batch size/value": 1,
|
||||
"txt2img/Batch size/minimum": 1,
|
||||
"txt2img/Batch size/maximum": 8,
|
||||
"txt2img/Batch size/step": 1,
|
||||
"txt2img/CFG Scale/visible": true,
|
||||
"txt2img/CFG Scale/value": 7.0,
|
||||
"txt2img/CFG Scale/minimum": 1.0,
|
||||
"txt2img/CFG Scale/maximum": 30.0,
|
||||
"txt2img/CFG Scale/step": 0.5,
|
||||
"txt2img/Seed/visible": true,
|
||||
"txt2img/Seed/value": -1.0,
|
||||
"txt2img/Extra/visible": true,
|
||||
"txt2img/Extra/value": false,
|
||||
"txt2img/Variation seed/visible": true,
|
||||
"txt2img/Variation seed/value": -1.0,
|
||||
"txt2img/Variation strength/visible": true,
|
||||
"txt2img/Variation strength/value": 0.0,
|
||||
"txt2img/Variation strength/minimum": 0,
|
||||
"txt2img/Variation strength/maximum": 1,
|
||||
"txt2img/Variation strength/step": 0.01,
|
||||
"txt2img/Resize seed from width/visible": true,
|
||||
"txt2img/Resize seed from width/value": 0,
|
||||
"txt2img/Resize seed from width/minimum": 0,
|
||||
"txt2img/Resize seed from width/maximum": 2048,
|
||||
"txt2img/Resize seed from width/step": 8,
|
||||
"txt2img/Resize seed from height/visible": true,
|
||||
"txt2img/Resize seed from height/value": 0,
|
||||
"txt2img/Resize seed from height/minimum": 0,
|
||||
"txt2img/Resize seed from height/maximum": 2048,
|
||||
"txt2img/Resize seed from height/step": 8,
|
||||
"txt2img/Override settings/value": null,
|
||||
"txt2img/Script/visible": true,
|
||||
"txt2img/Script/value": "None",
|
||||
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/visible": true,
|
||||
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/value": false,
|
||||
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/visible": true,
|
||||
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/value": false,
|
||||
"customscript/prompt_matrix.py/txt2img/Select prompt/visible": true,
|
||||
"customscript/prompt_matrix.py/txt2img/Select prompt/value": "positive",
|
||||
"customscript/prompt_matrix.py/txt2img/Select joining char/visible": true,
|
||||
"customscript/prompt_matrix.py/txt2img/Select joining char/value": "comma",
|
||||
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/visible": true,
|
||||
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/value": 0,
|
||||
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/minimum": 0,
|
||||
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/maximum": 500,
|
||||
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/step": 2,
|
||||
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/visible": true,
|
||||
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/value": false,
|
||||
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/visible": true,
|
||||
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/value": false,
|
||||
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/visible": true,
|
||||
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/value": "",
|
||||
"customscript/xyz_grid.py/txt2img/X type/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/X type/value": "Seed",
|
||||
"customscript/xyz_grid.py/txt2img/X values/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/X values/value": "",
|
||||
"customscript/xyz_grid.py/txt2img/Y type/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Y type/value": "Nothing",
|
||||
"customscript/xyz_grid.py/txt2img/Y values/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Y values/value": "",
|
||||
"customscript/xyz_grid.py/txt2img/Z type/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Z type/value": "Nothing",
|
||||
"customscript/xyz_grid.py/txt2img/Z values/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Z values/value": "",
|
||||
"customscript/xyz_grid.py/txt2img/Draw legend/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Draw legend/value": true,
|
||||
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/value": false,
|
||||
"customscript/xyz_grid.py/txt2img/Include Sub Images/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Include Sub Images/value": false,
|
||||
"customscript/xyz_grid.py/txt2img/Include Sub Grids/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Include Sub Grids/value": false,
|
||||
"customscript/xyz_grid.py/txt2img/Grid margins (px)/visible": true,
|
||||
"customscript/xyz_grid.py/txt2img/Grid margins (px)/value": 0,
|
||||
"customscript/xyz_grid.py/txt2img/Grid margins (px)/minimum": 0,
|
||||
"customscript/xyz_grid.py/txt2img/Grid margins (px)/maximum": 500,
|
||||
"customscript/xyz_grid.py/txt2img/Grid margins (px)/step": 2,
|
||||
"img2img/Prompt/visible": true,
|
||||
"img2img/Prompt/value": "",
|
||||
"img2img/Negative prompt/visible": true,
|
||||
"img2img/Negative prompt/value": "",
|
||||
"img2img/Styles/visible": true,
|
||||
"img2img/Styles/value": [],
|
||||
"img2img/Input directory/visible": true,
|
||||
"img2img/Input directory/value": "",
|
||||
"img2img/Output directory/visible": true,
|
||||
"img2img/Output directory/value": "",
|
||||
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/visible": true,
|
||||
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/value": "",
|
||||
"img2img/Resize mode/visible": true,
|
||||
"img2img/Resize mode/value": "Just resize",
|
||||
"img2img/Mask blur/visible": true,
|
||||
"img2img/Mask blur/value": 4,
|
||||
"img2img/Mask blur/minimum": 0,
|
||||
"img2img/Mask blur/maximum": 64,
|
||||
"img2img/Mask blur/step": 1,
|
||||
"img2img/Mask transparency/value": 0,
|
||||
"img2img/Mask transparency/minimum": 0,
|
||||
"img2img/Mask transparency/maximum": 100,
|
||||
"img2img/Mask transparency/step": 1,
|
||||
"img2img/Mask mode/visible": true,
|
||||
"img2img/Mask mode/value": "Inpaint masked",
|
||||
"img2img/Masked content/visible": true,
|
||||
"img2img/Masked content/value": "original",
|
||||
"img2img/Inpaint area/visible": true,
|
||||
"img2img/Inpaint area/value": "Whole picture",
|
||||
"img2img/Only masked padding, pixels/visible": true,
|
||||
"img2img/Only masked padding, pixels/value": 32,
|
||||
"img2img/Only masked padding, pixels/minimum": 0,
|
||||
"img2img/Only masked padding, pixels/maximum": 256,
|
||||
"img2img/Only masked padding, pixels/step": 4,
|
||||
"img2img/Sampling method/visible": true,
|
||||
"img2img/Sampling method/value": "Euler a",
|
||||
"img2img/Sampling steps/visible": true,
|
||||
"img2img/Sampling steps/value": 20,
|
||||
"img2img/Sampling steps/minimum": 1,
|
||||
"img2img/Sampling steps/maximum": 150,
|
||||
"img2img/Sampling steps/step": 1,
|
||||
"img2img/Restore faces/visible": true,
|
||||
"img2img/Restore faces/value": false,
|
||||
"img2img/Tiling/visible": true,
|
||||
"img2img/Tiling/value": false,
|
||||
"img2img/Width/visible": true,
|
||||
"img2img/Width/value": 512,
|
||||
"img2img/Width/minimum": 64,
|
||||
"img2img/Width/maximum": 2048,
|
||||
"img2img/Width/step": 8,
|
||||
"img2img/Height/visible": true,
|
||||
"img2img/Height/value": 512,
|
||||
"img2img/Height/minimum": 64,
|
||||
"img2img/Height/maximum": 2048,
|
||||
"img2img/Height/step": 8,
|
||||
"img2img/Batch count/visible": true,
|
||||
"img2img/Batch count/value": 1,
|
||||
"img2img/Batch count/minimum": 1,
|
||||
"img2img/Batch count/maximum": 100,
|
||||
"img2img/Batch count/step": 1,
|
||||
"img2img/Batch size/visible": true,
|
||||
"img2img/Batch size/value": 1,
|
||||
"img2img/Batch size/minimum": 1,
|
||||
"img2img/Batch size/maximum": 8,
|
||||
"img2img/Batch size/step": 1,
|
||||
"img2img/CFG Scale/visible": true,
|
||||
"img2img/CFG Scale/value": 7.0,
|
||||
"img2img/CFG Scale/minimum": 1.0,
|
||||
"img2img/CFG Scale/maximum": 30.0,
|
||||
"img2img/CFG Scale/step": 0.5,
|
||||
"img2img/Image CFG Scale/value": 1.5,
|
||||
"img2img/Image CFG Scale/minimum": 0,
|
||||
"img2img/Image CFG Scale/maximum": 3.0,
|
||||
"img2img/Image CFG Scale/step": 0.05,
|
||||
"img2img/Denoising strength/visible": true,
|
||||
"img2img/Denoising strength/value": 0.75,
|
||||
"img2img/Denoising strength/minimum": 0.0,
|
||||
"img2img/Denoising strength/maximum": 1.0,
|
||||
"img2img/Denoising strength/step": 0.01,
|
||||
"img2img/Seed/visible": true,
|
||||
"img2img/Seed/value": -1.0,
|
||||
"img2img/Extra/visible": true,
|
||||
"img2img/Extra/value": false,
|
||||
"img2img/Variation seed/visible": true,
|
||||
"img2img/Variation seed/value": -1.0,
|
||||
"img2img/Variation strength/visible": true,
|
||||
"img2img/Variation strength/value": 0.0,
|
||||
"img2img/Variation strength/minimum": 0,
|
||||
"img2img/Variation strength/maximum": 1,
|
||||
"img2img/Variation strength/step": 0.01,
|
||||
"img2img/Resize seed from width/visible": true,
|
||||
"img2img/Resize seed from width/value": 0,
|
||||
"img2img/Resize seed from width/minimum": 0,
|
||||
"img2img/Resize seed from width/maximum": 2048,
|
||||
"img2img/Resize seed from width/step": 8,
|
||||
"img2img/Resize seed from height/visible": true,
|
||||
"img2img/Resize seed from height/value": 0,
|
||||
"img2img/Resize seed from height/minimum": 0,
|
||||
"img2img/Resize seed from height/maximum": 2048,
|
||||
"img2img/Resize seed from height/step": 8,
|
||||
"img2img/Override settings/value": null,
|
||||
"img2img/Script/visible": true,
|
||||
"img2img/Script/value": "None",
|
||||
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/value": true,
|
||||
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/value": true,
|
||||
"customscript/img2imgalt.py/img2img/Original prompt/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Original prompt/value": "",
|
||||
"customscript/img2imgalt.py/img2img/Original negative prompt/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Original negative prompt/value": "",
|
||||
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/value": true,
|
||||
"customscript/img2imgalt.py/img2img/Decode steps/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Decode steps/value": 50,
|
||||
"customscript/img2imgalt.py/img2img/Decode steps/minimum": 1,
|
||||
"customscript/img2imgalt.py/img2img/Decode steps/maximum": 150,
|
||||
"customscript/img2imgalt.py/img2img/Decode steps/step": 1,
|
||||
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/value": true,
|
||||
"customscript/img2imgalt.py/img2img/Decode CFG scale/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Decode CFG scale/value": 1.0,
|
||||
"customscript/img2imgalt.py/img2img/Decode CFG scale/minimum": 0.0,
|
||||
"customscript/img2imgalt.py/img2img/Decode CFG scale/maximum": 15.0,
|
||||
"customscript/img2imgalt.py/img2img/Decode CFG scale/step": 0.1,
|
||||
"customscript/img2imgalt.py/img2img/Randomness/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Randomness/value": 0.0,
|
||||
"customscript/img2imgalt.py/img2img/Randomness/minimum": 0.0,
|
||||
"customscript/img2imgalt.py/img2img/Randomness/maximum": 1.0,
|
||||
"customscript/img2imgalt.py/img2img/Randomness/step": 0.01,
|
||||
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/visible": true,
|
||||
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/value": false,
|
||||
"customscript/loopback.py/img2img/Loops/visible": true,
|
||||
"customscript/loopback.py/img2img/Loops/value": 4,
|
||||
"customscript/loopback.py/img2img/Loops/minimum": 1,
|
||||
"customscript/loopback.py/img2img/Loops/maximum": 32,
|
||||
"customscript/loopback.py/img2img/Loops/step": 1,
|
||||
"customscript/loopback.py/img2img/Final denoising strength/visible": true,
|
||||
"customscript/loopback.py/img2img/Final denoising strength/value": 0.5,
|
||||
"customscript/loopback.py/img2img/Final denoising strength/minimum": 0,
|
||||
"customscript/loopback.py/img2img/Final denoising strength/maximum": 1,
|
||||
"customscript/loopback.py/img2img/Final denoising strength/step": 0.01,
|
||||
"customscript/loopback.py/img2img/Denoising strength curve/visible": true,
|
||||
"customscript/loopback.py/img2img/Denoising strength curve/value": "Linear",
|
||||
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/visible": true,
|
||||
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/value": "None",
|
||||
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/visible": true,
|
||||
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/value": 128,
|
||||
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/minimum": 8,
|
||||
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/maximum": 256,
|
||||
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/step": 8,
|
||||
"customscript/outpainting_mk_2.py/img2img/Mask blur/visible": true,
|
||||
"customscript/outpainting_mk_2.py/img2img/Mask blur/value": 8,
|
||||
"customscript/outpainting_mk_2.py/img2img/Mask blur/minimum": 0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Mask blur/maximum": 64,
|
||||
"customscript/outpainting_mk_2.py/img2img/Mask blur/step": 1,
|
||||
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/visible": true,
|
||||
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/value": 1.0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/minimum": 0.0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/maximum": 4.0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/step": 0.01,
|
||||
"customscript/outpainting_mk_2.py/img2img/Color variation/visible": true,
|
||||
"customscript/outpainting_mk_2.py/img2img/Color variation/value": 0.05,
|
||||
"customscript/outpainting_mk_2.py/img2img/Color variation/minimum": 0.0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Color variation/maximum": 1.0,
|
||||
"customscript/outpainting_mk_2.py/img2img/Color variation/step": 0.01,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/visible": true,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/value": 128,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/minimum": 8,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/maximum": 256,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/step": 8,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Mask blur/visible": true,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Mask blur/value": 4,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Mask blur/minimum": 0,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Mask blur/maximum": 64,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Mask blur/step": 1,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Masked content/visible": true,
|
||||
"customscript/poor_mans_outpainting.py/img2img/Masked content/value": "fill",
|
||||
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/visible": true,
|
||||
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/value": false,
|
||||
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/visible": true,
|
||||
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/value": false,
|
||||
"customscript/prompt_matrix.py/img2img/Select prompt/visible": true,
|
||||
"customscript/prompt_matrix.py/img2img/Select prompt/value": "positive",
|
||||
"customscript/prompt_matrix.py/img2img/Select joining char/visible": true,
|
||||
"customscript/prompt_matrix.py/img2img/Select joining char/value": "comma",
|
||||
"customscript/prompt_matrix.py/img2img/Grid margins (px)/visible": true,
|
||||
"customscript/prompt_matrix.py/img2img/Grid margins (px)/value": 0,
|
||||
"customscript/prompt_matrix.py/img2img/Grid margins (px)/minimum": 0,
|
||||
"customscript/prompt_matrix.py/img2img/Grid margins (px)/maximum": 500,
|
||||
"customscript/prompt_matrix.py/img2img/Grid margins (px)/step": 2,
|
||||
"customscript/prompts_from_file.py/img2img/Iterate seed every line/visible": true,
|
||||
"customscript/prompts_from_file.py/img2img/Iterate seed every line/value": false,
|
||||
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/visible": true,
|
||||
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/value": false,
|
||||
"customscript/prompts_from_file.py/img2img/List of prompt inputs/visible": true,
|
||||
"customscript/prompts_from_file.py/img2img/List of prompt inputs/value": "",
|
||||
"customscript/sd_upscale.py/img2img/Tile overlap/visible": true,
|
||||
"customscript/sd_upscale.py/img2img/Tile overlap/value": 64,
|
||||
"customscript/sd_upscale.py/img2img/Tile overlap/minimum": 0,
|
||||
"customscript/sd_upscale.py/img2img/Tile overlap/maximum": 256,
|
||||
"customscript/sd_upscale.py/img2img/Tile overlap/step": 16,
|
||||
"customscript/sd_upscale.py/img2img/Scale Factor/visible": true,
|
||||
"customscript/sd_upscale.py/img2img/Scale Factor/value": 2.0,
|
||||
"customscript/sd_upscale.py/img2img/Scale Factor/minimum": 1.0,
|
||||
"customscript/sd_upscale.py/img2img/Scale Factor/maximum": 4.0,
|
||||
"customscript/sd_upscale.py/img2img/Scale Factor/step": 0.05,
|
||||
"customscript/sd_upscale.py/img2img/Upscaler/visible": true,
|
||||
"customscript/sd_upscale.py/img2img/Upscaler/value": "None",
|
||||
"customscript/xyz_grid.py/img2img/X type/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/X type/value": "Seed",
|
||||
"customscript/xyz_grid.py/img2img/X values/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/X values/value": "",
|
||||
"customscript/xyz_grid.py/img2img/Y type/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Y type/value": "Nothing",
|
||||
"customscript/xyz_grid.py/img2img/Y values/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Y values/value": "",
|
||||
"customscript/xyz_grid.py/img2img/Z type/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Z type/value": "Nothing",
|
||||
"customscript/xyz_grid.py/img2img/Z values/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Z values/value": "",
|
||||
"customscript/xyz_grid.py/img2img/Draw legend/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Draw legend/value": true,
|
||||
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/value": false,
|
||||
"customscript/xyz_grid.py/img2img/Include Sub Images/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Include Sub Images/value": false,
|
||||
"customscript/xyz_grid.py/img2img/Include Sub Grids/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Include Sub Grids/value": false,
|
||||
"customscript/xyz_grid.py/img2img/Grid margins (px)/visible": true,
|
||||
"customscript/xyz_grid.py/img2img/Grid margins (px)/value": 0,
|
||||
"customscript/xyz_grid.py/img2img/Grid margins (px)/minimum": 0,
|
||||
"customscript/xyz_grid.py/img2img/Grid margins (px)/maximum": 500,
|
||||
"customscript/xyz_grid.py/img2img/Grid margins (px)/step": 2,
|
||||
"extras/Input directory/visible": true,
|
||||
"extras/Input directory/value": "",
|
||||
"extras/Output directory/visible": true,
|
||||
"extras/Output directory/value": "",
|
||||
"extras/Show result images/visible": true,
|
||||
"extras/Show result images/value": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Resize/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Resize/value": 4,
|
||||
"customscript/postprocessing_upscale.py/extras/Resize/minimum": 1.0,
|
||||
"customscript/postprocessing_upscale.py/extras/Resize/maximum": 8.0,
|
||||
"customscript/postprocessing_upscale.py/extras/Resize/step": 0.05,
|
||||
"customscript/postprocessing_upscale.py/extras/Width/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Width/value": 512,
|
||||
"customscript/postprocessing_upscale.py/extras/Height/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Height/value": 512,
|
||||
"customscript/postprocessing_upscale.py/extras/Crop to fit/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Crop to fit/value": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 1/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 1/value": "None",
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2/value": "None",
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/visible": true,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/value": 0.0,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/minimum": 0.0,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/maximum": 1.0,
|
||||
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/step": 0.001,
|
||||
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/visible": true,
|
||||
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/value": 0,
|
||||
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/minimum": 0.0,
|
||||
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/maximum": 1.0,
|
||||
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/step": 0.001,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/visible": true,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/value": 0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/minimum": 0.0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/maximum": 1.0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/step": 0.001,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
|
||||
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
|
||||
"modelmerger/Primary model (A)/visible": true,
|
||||
"modelmerger/Primary model (A)/value": null,
|
||||
"modelmerger/Secondary model (B)/visible": true,
|
||||
"modelmerger/Secondary model (B)/value": null,
|
||||
"modelmerger/Tertiary model (C)/visible": true,
|
||||
"modelmerger/Tertiary model (C)/value": null,
|
||||
"modelmerger/Custom Name (Optional)/visible": true,
|
||||
"modelmerger/Custom Name (Optional)/value": "",
|
||||
"modelmerger/Multiplier (M) - set to 0 to get model A/visible": true,
|
||||
"modelmerger/Multiplier (M) - set to 0 to get model A/value": 0.3,
|
||||
"modelmerger/Multiplier (M) - set to 0 to get model A/minimum": 0.0,
|
||||
"modelmerger/Multiplier (M) - set to 0 to get model A/maximum": 1.0,
|
||||
"modelmerger/Multiplier (M) - set to 0 to get model A/step": 0.05,
|
||||
"modelmerger/Interpolation Method/visible": true,
|
||||
"modelmerger/Interpolation Method/value": "Weighted sum",
|
||||
"modelmerger/Checkpoint format/visible": true,
|
||||
"modelmerger/Checkpoint format/value": "ckpt",
|
||||
"modelmerger/Save as float16/visible": true,
|
||||
"modelmerger/Save as float16/value": false,
|
||||
"modelmerger/Copy config from/visible": true,
|
||||
"modelmerger/Copy config from/value": "A, B or C",
|
||||
"modelmerger/Bake in VAE/visible": true,
|
||||
"modelmerger/Bake in VAE/value": "None",
|
||||
"modelmerger/Discard weights with matching name/visible": true,
|
||||
"modelmerger/Discard weights with matching name/value": "",
|
||||
"train/Name/visible": true,
|
||||
"train/Name/value": "",
|
||||
"train/Initialization text/visible": true,
|
||||
"train/Initialization text/value": "*",
|
||||
"train/Number of vectors per token/visible": true,
|
||||
"train/Number of vectors per token/value": 1,
|
||||
"train/Number of vectors per token/minimum": 1,
|
||||
"train/Number of vectors per token/maximum": 75,
|
||||
"train/Number of vectors per token/step": 1,
|
||||
"train/Overwrite Old Embedding/visible": true,
|
||||
"train/Overwrite Old Embedding/value": false,
|
||||
"train/Enter hypernetwork layer structure/visible": true,
|
||||
"train/Enter hypernetwork layer structure/value": "1, 2, 1",
|
||||
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/visible": true,
|
||||
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/value": "linear",
|
||||
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/visible": true,
|
||||
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/value": "Normal",
|
||||
"train/Add layer normalization/visible": true,
|
||||
"train/Add layer normalization/value": false,
|
||||
"train/Use dropout/visible": true,
|
||||
"train/Use dropout/value": false,
|
||||
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/visible": true,
|
||||
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/value": "0, 0, 0",
|
||||
"train/Overwrite Old Hypernetwork/visible": true,
|
||||
"train/Overwrite Old Hypernetwork/value": false,
|
||||
"train/Source directory/visible": true,
|
||||
"train/Source directory/value": "",
|
||||
"train/Destination directory/visible": true,
|
||||
"train/Destination directory/value": "",
|
||||
"train/Width/visible": true,
|
||||
"train/Width/value": 512,
|
||||
"train/Width/minimum": 64,
|
||||
"train/Width/maximum": 2048,
|
||||
"train/Width/step": 8,
|
||||
"train/Height/visible": true,
|
||||
"train/Height/value": 512,
|
||||
"train/Height/minimum": 64,
|
||||
"train/Height/maximum": 2048,
|
||||
"train/Height/step": 8,
|
||||
"train/Existing Caption txt Action/visible": true,
|
||||
"train/Existing Caption txt Action/value": "ignore",
|
||||
"train/Create flipped copies/visible": true,
|
||||
"train/Create flipped copies/value": false,
|
||||
"train/Split oversized images/visible": true,
|
||||
"train/Split oversized images/value": false,
|
||||
"train/Auto focal point crop/visible": true,
|
||||
"train/Auto focal point crop/value": false,
|
||||
"train/Auto-sized crop/visible": true,
|
||||
"train/Auto-sized crop/value": false,
|
||||
"train/Use BLIP for caption/visible": true,
|
||||
"train/Use BLIP for caption/value": false,
|
||||
"train/Use deepbooru for caption/visible": true,
|
||||
"train/Use deepbooru for caption/value": false,
|
||||
"train/Split image threshold/visible": true,
|
||||
"train/Split image threshold/value": 0.5,
|
||||
"train/Split image threshold/minimum": 0.0,
|
||||
"train/Split image threshold/maximum": 1.0,
|
||||
"train/Split image threshold/step": 0.05,
|
||||
"train/Split image overlap ratio/visible": true,
|
||||
"train/Split image overlap ratio/value": 0.2,
|
||||
"train/Split image overlap ratio/minimum": 0.0,
|
||||
"train/Split image overlap ratio/maximum": 0.9,
|
||||
"train/Split image overlap ratio/step": 0.05,
|
||||
"train/Focal point face weight/visible": true,
|
||||
"train/Focal point face weight/value": 0.9,
|
||||
"train/Focal point face weight/minimum": 0.0,
|
||||
"train/Focal point face weight/maximum": 1.0,
|
||||
"train/Focal point face weight/step": 0.05,
|
||||
"train/Focal point entropy weight/visible": true,
|
||||
"train/Focal point entropy weight/value": 0.15,
|
||||
"train/Focal point entropy weight/minimum": 0.0,
|
||||
"train/Focal point entropy weight/maximum": 1.0,
|
||||
"train/Focal point entropy weight/step": 0.05,
|
||||
"train/Focal point edges weight/visible": true,
|
||||
"train/Focal point edges weight/value": 0.5,
|
||||
"train/Focal point edges weight/minimum": 0.0,
|
||||
"train/Focal point edges weight/maximum": 1.0,
|
||||
"train/Focal point edges weight/step": 0.05,
|
||||
"train/Create debug image/visible": true,
|
||||
"train/Create debug image/value": false,
|
||||
"train/Dimension lower bound/visible": true,
|
||||
"train/Dimension lower bound/value": 384,
|
||||
"train/Dimension lower bound/minimum": 64,
|
||||
"train/Dimension lower bound/maximum": 2048,
|
||||
"train/Dimension lower bound/step": 8,
|
||||
"train/Dimension upper bound/visible": true,
|
||||
"train/Dimension upper bound/value": 768,
|
||||
"train/Dimension upper bound/minimum": 64,
|
||||
"train/Dimension upper bound/maximum": 2048,
|
||||
"train/Dimension upper bound/step": 8,
|
||||
"train/Area lower bound/visible": true,
|
||||
"train/Area lower bound/value": 4096,
|
||||
"train/Area lower bound/minimum": 4096,
|
||||
"train/Area lower bound/maximum": 4194304,
|
||||
"train/Area lower bound/step": 1,
|
||||
"train/Area upper bound/visible": true,
|
||||
"train/Area upper bound/value": 409600,
|
||||
"train/Area upper bound/minimum": 4096,
|
||||
"train/Area upper bound/maximum": 4194304,
|
||||
"train/Area upper bound/step": 1,
|
||||
"train/Resizing objective/visible": true,
|
||||
"train/Resizing objective/value": "Maximize area",
|
||||
"train/Error threshold/visible": true,
|
||||
"train/Error threshold/value": 0.1,
|
||||
"train/Error threshold/minimum": 0,
|
||||
"train/Error threshold/maximum": 1,
|
||||
"train/Error threshold/step": 0.01,
|
||||
"train/Embedding/visible": true,
|
||||
"train/Embedding/value": null,
|
||||
"train/Hypernetwork/visible": true,
|
||||
"train/Hypernetwork/value": null,
|
||||
"train/Embedding Learning rate/visible": true,
|
||||
"train/Embedding Learning rate/value": "0.005",
|
||||
"train/Hypernetwork Learning rate/visible": true,
|
||||
"train/Hypernetwork Learning rate/value": "0.00001",
|
||||
"train/Gradient Clipping/visible": true,
|
||||
"train/Gradient Clipping/value": "disabled",
|
||||
"train/Batch size/visible": true,
|
||||
"train/Batch size/value": 1,
|
||||
"train/Gradient accumulation steps/visible": true,
|
||||
"train/Gradient accumulation steps/value": 1,
|
||||
"train/Dataset directory/visible": true,
|
||||
"train/Dataset directory/value": "",
|
||||
"train/Log directory/visible": true,
|
||||
"train/Log directory/value": "textual_inversion",
|
||||
"train/Prompt template/visible": true,
|
||||
"train/Prompt template/value": "style_filewords.txt",
|
||||
"train/Do not resize images/visible": true,
|
||||
"train/Do not resize images/value": false,
|
||||
"train/Max steps/visible": true,
|
||||
"train/Max steps/value": 100000,
|
||||
"train/Save an image to log directory every N steps, 0 to disable/visible": true,
|
||||
"train/Save an image to log directory every N steps, 0 to disable/value": 500,
|
||||
"train/Save a copy of embedding to log directory every N steps, 0 to disable/visible": true,
|
||||
"train/Save a copy of embedding to log directory every N steps, 0 to disable/value": 500,
|
||||
"train/Use PNG alpha channel as loss weight/visible": true,
|
||||
"train/Use PNG alpha channel as loss weight/value": false,
|
||||
"train/Save images with embedding in PNG chunks/visible": true,
|
||||
"train/Save images with embedding in PNG chunks/value": true,
|
||||
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/visible": true,
|
||||
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/value": false,
|
||||
"train/Shuffle tags by ',' when creating prompts./visible": true,
|
||||
"train/Shuffle tags by ',' when creating prompts./value": false,
|
||||
"train/Drop out tags when creating prompts./visible": true,
|
||||
"train/Drop out tags when creating prompts./value": 0,
|
||||
"train/Drop out tags when creating prompts./minimum": 0,
|
||||
"train/Drop out tags when creating prompts./maximum": 1,
|
||||
"train/Drop out tags when creating prompts./step": 0.1,
|
||||
"train/Choose latent sampling method/visible": true,
|
||||
"train/Choose latent sampling method/value": "once"
|
||||
}
|
||||
Loading…
Reference in New Issue