├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Dockerfile ├── Dockerfile.devbase ├── Dockerfile.protoc ├── LICENSE ├── NOTICE ├── README.md ├── client.py ├── config └── .gitkeep ├── docker_support ├── CMakeFile.txt.diff ├── bitsandbytes.sm89.diff ├── build_protoc.sh ├── cpp_extension.py ├── cuda_archs.sh └── run.sh ├── environment.yaml ├── gyre ├── __init__.py ├── cache.py ├── civitai.py ├── ckpt_utils.py ├── config │ ├── custom │ │ └── .gitkeep │ ├── dist_hashes.json │ ├── engines.yaml │ ├── engines │ │ ├── depth.yaml │ │ ├── hintsets-sd21.yaml │ │ ├── hintsets.yaml │ │ ├── stable-diffusion-v1-4.yaml │ │ ├── stable-diffusion-v1-5.yaml │ │ ├── stable-diffusion-v2.yaml │ │ └── upscaler.yaml │ ├── examples.yaml │ ├── extras │ │ ├── chillout.yaml │ │ ├── deliberate.yaml │ │ ├── dreamlike.yaml │ │ ├── fish.yaml │ │ ├── inkpunk.yaml │ │ ├── liberty.yaml │ │ ├── lykon-dream.yaml │ │ ├── mistoon.yaml │ │ ├── orangemix.yaml │ │ ├── realistic-vision.yaml │ │ ├── reality-engine.yaml │ │ ├── waifu.yaml │ │ └── yuzu-lemon-tea.yaml │ ├── limit_vram.yaml │ ├── models │ │ ├── clip.yaml │ │ ├── coadapter.yaml │ │ ├── controlnet-11.yaml │ │ ├── controlnet-sd21.yaml │ │ ├── controlnet.yaml │ │ ├── depth.yaml │ │ ├── hinters.yaml │ │ ├── t2i.yaml │ │ └── vae.yaml │ ├── templates │ │ ├── stable-diffusion-v1.yaml │ │ └── stable-diffusion-v2.yaml │ └── user_tweaks.yaml ├── constants.py ├── debug_recorder.py ├── engines_yaml.py ├── generated │ ├── __init__.py │ ├── dashboard_pb2.py │ ├── dashboard_pb2.pyi │ ├── dashboard_pb2_grpc.py │ ├── engines_pb2.py │ ├── engines_pb2.pyi │ ├── engines_pb2_grpc.py │ ├── generation_pb2.py │ ├── generation_pb2.pyi │ ├── generation_pb2_grpc.py │ ├── stablecabal.openapi.json │ ├── stablecabal.swagger.json │ ├── tensors_pb2.py │ ├── tensors_pb2.pyi │ └── tensors_pb2_grpc.py ├── hints.py ├── http │ ├── grpc_gateway.py │ ├── grpc_gateway_controller.py │ ├── json_api_controller.py │ ├── reverse_proxy.py │ ├── stability_rest_api.py │ ├── status_controller.html │ └── status_controller.py ├── images.py ├── images_shuffle.py ├── ldm_config │ ├── v1-inference.yaml │ ├── v2-inference-v.yaml │ └── v2-inference.yaml ├── logging.py ├── manager.py ├── match_histograms.py ├── monitoring_queue.py ├── patching.py ├── pipeline │ ├── __init__.py │ ├── attention_replacer.py │ ├── common_scheduler.py │ ├── controlnet │ │ ├── __init__.py │ │ ├── models.py │ │ └── unet_patcher.py │ ├── depth │ │ ├── diffusers_depth_pipeline.py │ │ ├── midas_depth_pipeline.py │ │ ├── midas_model_wrapper.py │ │ ├── zoe_depth_pipeline.py │ │ └── zoe_model_wrapper.py │ ├── diffusers_types.py │ ├── easing.py │ ├── hinters │ │ ├── baenormal │ │ │ ├── NNET.py │ │ │ ├── baseline.py │ │ │ └── submodules │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ └── submodules.py │ │ ├── baenormal_loader.py │ │ ├── baenormal_pipeline.py │ │ ├── dexined_pipeline.py │ │ ├── hed_pipeline.py │ │ ├── informative_drawing_pipeline.py │ │ ├── inspyrenet │ │ │ ├── InSPyReNet.py │ │ │ ├── README.md │ │ │ ├── backbones │ │ │ │ └── SwinTransformer.py │ │ │ └── modules │ │ │ │ ├── attention_module.py │ │ │ │ ├── context_module.py │ │ │ │ ├── decoder_module.py │ │ │ │ └── layers.py │ │ ├── inspyrenet_pipeline.py │ │ ├── mm_loader.py │ │ ├── mmpose_pipeline.py │ │ ├── mmseg_pipeline.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── boxfilter.py │ │ │ ├── guided_filter.py │ │ │ ├── hed.py │ │ │ ├── informative_drawings.py │ │ │ ├── mbv2_mlsd_large.py │ │ │ └── uniformer.py │ ├── kschedulers │ │ ├── __init__.py │ │ ├── scheduling_dpm2_ancestral_discrete.py │ │ ├── scheduling_dpm2_discrete.py │ │ ├── scheduling_euler_ancestral_discrete.py │ │ ├── scheduling_euler_discrete.py │ │ ├── scheduling_heun_discrete.py │ │ └── scheduling_utils.py │ ├── latent_debugger.py │ ├── lora.py │ ├── lycoris.py │ ├── model_loader_base.py │ ├── model_utils.py │ ├── models │ │ ├── __init__.py │ │ ├── memory_efficient_cross_attention.py │ │ └── structured_cross_attention.py │ ├── patch_tqdm.py │ ├── pipeline_meta.py │ ├── pipeline_wrapper.py │ ├── prompt_types.py │ ├── randtools.py │ ├── safety_checkers.py │ ├── samplers.py │ ├── schedulers │ │ ├── sample_dpmpp_2m.py │ │ └── scheduling_ddim.py │ ├── t2i_adapter │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── models.py │ │ ├── unet_patcher.py │ │ └── utils.py │ ├── text_embedding │ │ ├── __init__.py │ │ ├── basic_text_embedding.py │ │ ├── lpw_text_embedding.py │ │ ├── structured_text_embedding.py │ │ ├── text_embedding.py │ │ └── text_encoder_alt_layer.py │ ├── textual_inversion.py │ ├── unet │ │ ├── cfg.py │ │ ├── clipguided.py │ │ ├── core.py │ │ ├── graft.py │ │ ├── hires_fix.py │ │ ├── hires_fix_other.py │ │ ├── hires_fix_resize.py │ │ └── types.py │ ├── unified_pipeline.py │ ├── upscalers │ │ ├── diffusers_upscaler_wrapper.py │ │ ├── models │ │ │ ├── esrgan_plus.py │ │ │ ├── hat_arch.py │ │ │ └── network_swinir.py │ │ ├── upscaler_loader.py │ │ ├── upscaler_pipeline.py │ │ └── utils.py │ ├── vae_approximator.py │ └── xformers_utils.py ├── protobuf_safetensors.py ├── protobuf_tensors.py ├── ram_monitor.py ├── resize_right.py ├── resources │ ├── __init__.py │ └── civitai.py ├── server.py ├── services │ ├── __init__.py │ ├── dashboard.py │ ├── engines.py │ ├── exception_to_grpc.py │ └── generate.py ├── sonora │ ├── __init__.py │ ├── __version__.py │ ├── aio.py │ ├── asgi.py │ ├── client.py │ ├── echotest.py │ ├── protocol.py │ └── wsgi.py ├── src │ ├── README.md │ └── __init__.py ├── torch_safe_unpickler.py └── utils.py ├── nonfree ├── README.md ├── tome_memory_efficient_cross_attention.py ├── tome_patcher.py └── tome_unet.py ├── openapiconfig.yaml ├── pyproject.toml ├── requirements.txt ├── scripts ├── convert_basicsr_model.py └── convert_mm_model.py ├── server.py ├── stablecabal.png ├── tests ├── VRAMUsageMonitor.py ├── batch_independance.py ├── engines.basic.yaml ├── engines.clip.yaml ├── engines.inpaint.yaml ├── engines.sd14.yaml ├── graftedpaint.engine.yaml ├── graftedpaint.image_512_512.png ├── graftedpaint.image_768_600.png ├── graftedpaint.image_768_768.png ├── graftedpaint.py ├── happy_path.engines.yaml ├── happy_path.image_512.png ├── happy_path.image_768.png ├── happy_path.py ├── image.png ├── mask.png ├── prompt_weights.engine.yaml ├── prompt_weights.py ├── schedulers.py └── test_harness.py └── weights └── .gitkeep /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.devbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/Dockerfile.devbase -------------------------------------------------------------------------------- /Dockerfile.protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/Dockerfile.protoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/client.py -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker_support/CMakeFile.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/CMakeFile.txt.diff -------------------------------------------------------------------------------- /docker_support/bitsandbytes.sm89.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/bitsandbytes.sm89.diff -------------------------------------------------------------------------------- /docker_support/build_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/build_protoc.sh -------------------------------------------------------------------------------- /docker_support/cpp_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/cpp_extension.py -------------------------------------------------------------------------------- /docker_support/cuda_archs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/cuda_archs.sh -------------------------------------------------------------------------------- /docker_support/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/docker_support/run.sh -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/environment.yaml -------------------------------------------------------------------------------- /gyre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/__init__.py -------------------------------------------------------------------------------- /gyre/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/cache.py -------------------------------------------------------------------------------- /gyre/civitai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/civitai.py -------------------------------------------------------------------------------- /gyre/ckpt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/ckpt_utils.py -------------------------------------------------------------------------------- /gyre/config/custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/config/dist_hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/dist_hashes.json -------------------------------------------------------------------------------- /gyre/config/engines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines.yaml -------------------------------------------------------------------------------- /gyre/config/engines/depth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/depth.yaml -------------------------------------------------------------------------------- /gyre/config/engines/hintsets-sd21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/hintsets-sd21.yaml -------------------------------------------------------------------------------- /gyre/config/engines/hintsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/hintsets.yaml -------------------------------------------------------------------------------- /gyre/config/engines/stable-diffusion-v1-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/stable-diffusion-v1-4.yaml -------------------------------------------------------------------------------- /gyre/config/engines/stable-diffusion-v1-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/stable-diffusion-v1-5.yaml -------------------------------------------------------------------------------- /gyre/config/engines/stable-diffusion-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/stable-diffusion-v2.yaml -------------------------------------------------------------------------------- /gyre/config/engines/upscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/engines/upscaler.yaml -------------------------------------------------------------------------------- /gyre/config/examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/examples.yaml -------------------------------------------------------------------------------- /gyre/config/extras/chillout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/chillout.yaml -------------------------------------------------------------------------------- /gyre/config/extras/deliberate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/deliberate.yaml -------------------------------------------------------------------------------- /gyre/config/extras/dreamlike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/dreamlike.yaml -------------------------------------------------------------------------------- /gyre/config/extras/fish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/fish.yaml -------------------------------------------------------------------------------- /gyre/config/extras/inkpunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/inkpunk.yaml -------------------------------------------------------------------------------- /gyre/config/extras/liberty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/liberty.yaml -------------------------------------------------------------------------------- /gyre/config/extras/lykon-dream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/lykon-dream.yaml -------------------------------------------------------------------------------- /gyre/config/extras/mistoon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/mistoon.yaml -------------------------------------------------------------------------------- /gyre/config/extras/orangemix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/orangemix.yaml -------------------------------------------------------------------------------- /gyre/config/extras/realistic-vision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/realistic-vision.yaml -------------------------------------------------------------------------------- /gyre/config/extras/reality-engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/reality-engine.yaml -------------------------------------------------------------------------------- /gyre/config/extras/waifu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/waifu.yaml -------------------------------------------------------------------------------- /gyre/config/extras/yuzu-lemon-tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/extras/yuzu-lemon-tea.yaml -------------------------------------------------------------------------------- /gyre/config/limit_vram.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/limit_vram.yaml -------------------------------------------------------------------------------- /gyre/config/models/clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/clip.yaml -------------------------------------------------------------------------------- /gyre/config/models/coadapter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/coadapter.yaml -------------------------------------------------------------------------------- /gyre/config/models/controlnet-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/controlnet-11.yaml -------------------------------------------------------------------------------- /gyre/config/models/controlnet-sd21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/controlnet-sd21.yaml -------------------------------------------------------------------------------- /gyre/config/models/controlnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/controlnet.yaml -------------------------------------------------------------------------------- /gyre/config/models/depth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/depth.yaml -------------------------------------------------------------------------------- /gyre/config/models/hinters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/hinters.yaml -------------------------------------------------------------------------------- /gyre/config/models/t2i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/t2i.yaml -------------------------------------------------------------------------------- /gyre/config/models/vae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/models/vae.yaml -------------------------------------------------------------------------------- /gyre/config/templates/stable-diffusion-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/templates/stable-diffusion-v1.yaml -------------------------------------------------------------------------------- /gyre/config/templates/stable-diffusion-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/templates/stable-diffusion-v2.yaml -------------------------------------------------------------------------------- /gyre/config/user_tweaks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/config/user_tweaks.yaml -------------------------------------------------------------------------------- /gyre/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/constants.py -------------------------------------------------------------------------------- /gyre/debug_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/debug_recorder.py -------------------------------------------------------------------------------- /gyre/engines_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/engines_yaml.py -------------------------------------------------------------------------------- /gyre/generated/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/__init__.py -------------------------------------------------------------------------------- /gyre/generated/dashboard_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/dashboard_pb2.py -------------------------------------------------------------------------------- /gyre/generated/dashboard_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/dashboard_pb2.pyi -------------------------------------------------------------------------------- /gyre/generated/dashboard_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/dashboard_pb2_grpc.py -------------------------------------------------------------------------------- /gyre/generated/engines_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/engines_pb2.py -------------------------------------------------------------------------------- /gyre/generated/engines_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/engines_pb2.pyi -------------------------------------------------------------------------------- /gyre/generated/engines_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/engines_pb2_grpc.py -------------------------------------------------------------------------------- /gyre/generated/generation_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/generation_pb2.py -------------------------------------------------------------------------------- /gyre/generated/generation_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/generation_pb2.pyi -------------------------------------------------------------------------------- /gyre/generated/generation_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/generation_pb2_grpc.py -------------------------------------------------------------------------------- /gyre/generated/stablecabal.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/stablecabal.openapi.json -------------------------------------------------------------------------------- /gyre/generated/stablecabal.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/stablecabal.swagger.json -------------------------------------------------------------------------------- /gyre/generated/tensors_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/tensors_pb2.py -------------------------------------------------------------------------------- /gyre/generated/tensors_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/tensors_pb2.pyi -------------------------------------------------------------------------------- /gyre/generated/tensors_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/generated/tensors_pb2_grpc.py -------------------------------------------------------------------------------- /gyre/hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/hints.py -------------------------------------------------------------------------------- /gyre/http/grpc_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/grpc_gateway.py -------------------------------------------------------------------------------- /gyre/http/grpc_gateway_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/grpc_gateway_controller.py -------------------------------------------------------------------------------- /gyre/http/json_api_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/json_api_controller.py -------------------------------------------------------------------------------- /gyre/http/reverse_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/reverse_proxy.py -------------------------------------------------------------------------------- /gyre/http/stability_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/stability_rest_api.py -------------------------------------------------------------------------------- /gyre/http/status_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/status_controller.html -------------------------------------------------------------------------------- /gyre/http/status_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/http/status_controller.py -------------------------------------------------------------------------------- /gyre/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/images.py -------------------------------------------------------------------------------- /gyre/images_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/images_shuffle.py -------------------------------------------------------------------------------- /gyre/ldm_config/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/ldm_config/v1-inference.yaml -------------------------------------------------------------------------------- /gyre/ldm_config/v2-inference-v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/ldm_config/v2-inference-v.yaml -------------------------------------------------------------------------------- /gyre/ldm_config/v2-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/ldm_config/v2-inference.yaml -------------------------------------------------------------------------------- /gyre/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/logging.py -------------------------------------------------------------------------------- /gyre/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/manager.py -------------------------------------------------------------------------------- /gyre/match_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/match_histograms.py -------------------------------------------------------------------------------- /gyre/monitoring_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/monitoring_queue.py -------------------------------------------------------------------------------- /gyre/patching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/patching.py -------------------------------------------------------------------------------- /gyre/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/pipeline/attention_replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/attention_replacer.py -------------------------------------------------------------------------------- /gyre/pipeline/common_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/common_scheduler.py -------------------------------------------------------------------------------- /gyre/pipeline/controlnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/controlnet/__init__.py -------------------------------------------------------------------------------- /gyre/pipeline/controlnet/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/controlnet/models.py -------------------------------------------------------------------------------- /gyre/pipeline/controlnet/unet_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/controlnet/unet_patcher.py -------------------------------------------------------------------------------- /gyre/pipeline/depth/diffusers_depth_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/depth/diffusers_depth_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/depth/midas_depth_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/depth/midas_depth_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/depth/midas_model_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/depth/midas_model_wrapper.py -------------------------------------------------------------------------------- /gyre/pipeline/depth/zoe_depth_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/depth/zoe_depth_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/depth/zoe_model_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/depth/zoe_model_wrapper.py -------------------------------------------------------------------------------- /gyre/pipeline/diffusers_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/diffusers_types.py -------------------------------------------------------------------------------- /gyre/pipeline/easing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/easing.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal/NNET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal/NNET.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal/baseline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal/submodules/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal/submodules/decoder.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal/submodules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal/submodules/encoder.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal/submodules/submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal/submodules/submodules.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal_loader.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/baenormal_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/baenormal_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/dexined_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/dexined_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/hed_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/hed_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/informative_drawing_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/informative_drawing_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/InSPyReNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/InSPyReNet.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/README.md -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/backbones/SwinTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/backbones/SwinTransformer.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/modules/attention_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/modules/attention_module.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/modules/context_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/modules/context_module.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/modules/decoder_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/modules/decoder_module.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet/modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet/modules/layers.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/inspyrenet_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/inspyrenet_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/mm_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/mm_loader.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/mmpose_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/mmpose_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/mmseg_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/mmseg_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .mbv2_mlsd_large import MobileV2_MLSD_Large 2 | -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/boxfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/boxfilter.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/guided_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/guided_filter.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/hed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/hed.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/informative_drawings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/informative_drawings.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/mbv2_mlsd_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/mbv2_mlsd_large.py -------------------------------------------------------------------------------- /gyre/pipeline/hinters/models/uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/hinters/models/uniformer.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/__init__.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_dpm2_ancestral_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_dpm2_ancestral_discrete.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_dpm2_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_dpm2_discrete.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_euler_ancestral_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_euler_ancestral_discrete.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_euler_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_euler_discrete.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_heun_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_heun_discrete.py -------------------------------------------------------------------------------- /gyre/pipeline/kschedulers/scheduling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/kschedulers/scheduling_utils.py -------------------------------------------------------------------------------- /gyre/pipeline/latent_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/latent_debugger.py -------------------------------------------------------------------------------- /gyre/pipeline/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/lora.py -------------------------------------------------------------------------------- /gyre/pipeline/lycoris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/lycoris.py -------------------------------------------------------------------------------- /gyre/pipeline/model_loader_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/model_loader_base.py -------------------------------------------------------------------------------- /gyre/pipeline/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/model_utils.py -------------------------------------------------------------------------------- /gyre/pipeline/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/pipeline/models/memory_efficient_cross_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/models/memory_efficient_cross_attention.py -------------------------------------------------------------------------------- /gyre/pipeline/models/structured_cross_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/models/structured_cross_attention.py -------------------------------------------------------------------------------- /gyre/pipeline/patch_tqdm.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/pipeline/pipeline_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/pipeline_meta.py -------------------------------------------------------------------------------- /gyre/pipeline/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/pipeline_wrapper.py -------------------------------------------------------------------------------- /gyre/pipeline/prompt_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/prompt_types.py -------------------------------------------------------------------------------- /gyre/pipeline/randtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/randtools.py -------------------------------------------------------------------------------- /gyre/pipeline/safety_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/safety_checkers.py -------------------------------------------------------------------------------- /gyre/pipeline/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/samplers.py -------------------------------------------------------------------------------- /gyre/pipeline/schedulers/sample_dpmpp_2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/schedulers/sample_dpmpp_2m.py -------------------------------------------------------------------------------- /gyre/pipeline/schedulers/scheduling_ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/schedulers/scheduling_ddim.py -------------------------------------------------------------------------------- /gyre/pipeline/t2i_adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/t2i_adapter/__init__.py -------------------------------------------------------------------------------- /gyre/pipeline/t2i_adapter/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/t2i_adapter/adapter.py -------------------------------------------------------------------------------- /gyre/pipeline/t2i_adapter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/t2i_adapter/models.py -------------------------------------------------------------------------------- /gyre/pipeline/t2i_adapter/unet_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/t2i_adapter/unet_patcher.py -------------------------------------------------------------------------------- /gyre/pipeline/t2i_adapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/t2i_adapter/utils.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/__init__.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/basic_text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/basic_text_embedding.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/lpw_text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/lpw_text_embedding.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/structured_text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/structured_text_embedding.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/text_embedding.py -------------------------------------------------------------------------------- /gyre/pipeline/text_embedding/text_encoder_alt_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/text_embedding/text_encoder_alt_layer.py -------------------------------------------------------------------------------- /gyre/pipeline/textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/textual_inversion.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/cfg.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/clipguided.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/clipguided.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/core.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/graft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/graft.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/hires_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/hires_fix.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/hires_fix_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/hires_fix_other.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/hires_fix_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/hires_fix_resize.py -------------------------------------------------------------------------------- /gyre/pipeline/unet/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unet/types.py -------------------------------------------------------------------------------- /gyre/pipeline/unified_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/unified_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/diffusers_upscaler_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/diffusers_upscaler_wrapper.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/models/esrgan_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/models/esrgan_plus.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/models/hat_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/models/hat_arch.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/models/network_swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/models/network_swinir.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/upscaler_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/upscaler_loader.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/upscaler_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/upscaler_pipeline.py -------------------------------------------------------------------------------- /gyre/pipeline/upscalers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/upscalers/utils.py -------------------------------------------------------------------------------- /gyre/pipeline/vae_approximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/vae_approximator.py -------------------------------------------------------------------------------- /gyre/pipeline/xformers_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/pipeline/xformers_utils.py -------------------------------------------------------------------------------- /gyre/protobuf_safetensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/protobuf_safetensors.py -------------------------------------------------------------------------------- /gyre/protobuf_tensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/protobuf_tensors.py -------------------------------------------------------------------------------- /gyre/ram_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/ram_monitor.py -------------------------------------------------------------------------------- /gyre/resize_right.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/resize_right.py -------------------------------------------------------------------------------- /gyre/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/resources/__init__.py -------------------------------------------------------------------------------- /gyre/resources/civitai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/resources/civitai.py -------------------------------------------------------------------------------- /gyre/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/server.py -------------------------------------------------------------------------------- /gyre/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/services/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/services/dashboard.py -------------------------------------------------------------------------------- /gyre/services/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/services/engines.py -------------------------------------------------------------------------------- /gyre/services/exception_to_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/services/exception_to_grpc.py -------------------------------------------------------------------------------- /gyre/services/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/services/generate.py -------------------------------------------------------------------------------- /gyre/sonora/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyre/sonora/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/__version__.py -------------------------------------------------------------------------------- /gyre/sonora/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/aio.py -------------------------------------------------------------------------------- /gyre/sonora/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/asgi.py -------------------------------------------------------------------------------- /gyre/sonora/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/client.py -------------------------------------------------------------------------------- /gyre/sonora/echotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/echotest.py -------------------------------------------------------------------------------- /gyre/sonora/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/protocol.py -------------------------------------------------------------------------------- /gyre/sonora/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/sonora/wsgi.py -------------------------------------------------------------------------------- /gyre/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/src/README.md -------------------------------------------------------------------------------- /gyre/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/src/__init__.py -------------------------------------------------------------------------------- /gyre/torch_safe_unpickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/torch_safe_unpickler.py -------------------------------------------------------------------------------- /gyre/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/gyre/utils.py -------------------------------------------------------------------------------- /nonfree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/nonfree/README.md -------------------------------------------------------------------------------- /nonfree/tome_memory_efficient_cross_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/nonfree/tome_memory_efficient_cross_attention.py -------------------------------------------------------------------------------- /nonfree/tome_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/nonfree/tome_patcher.py -------------------------------------------------------------------------------- /nonfree/tome_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/nonfree/tome_unet.py -------------------------------------------------------------------------------- /openapiconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/openapiconfig.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/convert_basicsr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/scripts/convert_basicsr_model.py -------------------------------------------------------------------------------- /scripts/convert_mm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/scripts/convert_mm_model.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/server.py -------------------------------------------------------------------------------- /stablecabal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/stablecabal.png -------------------------------------------------------------------------------- /tests/VRAMUsageMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/VRAMUsageMonitor.py -------------------------------------------------------------------------------- /tests/batch_independance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/batch_independance.py -------------------------------------------------------------------------------- /tests/engines.basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/engines.basic.yaml -------------------------------------------------------------------------------- /tests/engines.clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/engines.clip.yaml -------------------------------------------------------------------------------- /tests/engines.inpaint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/engines.inpaint.yaml -------------------------------------------------------------------------------- /tests/engines.sd14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/engines.sd14.yaml -------------------------------------------------------------------------------- /tests/graftedpaint.engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/graftedpaint.engine.yaml -------------------------------------------------------------------------------- /tests/graftedpaint.image_512_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/graftedpaint.image_512_512.png -------------------------------------------------------------------------------- /tests/graftedpaint.image_768_600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/graftedpaint.image_768_600.png -------------------------------------------------------------------------------- /tests/graftedpaint.image_768_768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/graftedpaint.image_768_768.png -------------------------------------------------------------------------------- /tests/graftedpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/graftedpaint.py -------------------------------------------------------------------------------- /tests/happy_path.engines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/happy_path.engines.yaml -------------------------------------------------------------------------------- /tests/happy_path.image_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/happy_path.image_512.png -------------------------------------------------------------------------------- /tests/happy_path.image_768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/happy_path.image_768.png -------------------------------------------------------------------------------- /tests/happy_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/happy_path.py -------------------------------------------------------------------------------- /tests/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/image.png -------------------------------------------------------------------------------- /tests/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/mask.png -------------------------------------------------------------------------------- /tests/prompt_weights.engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/prompt_weights.engine.yaml -------------------------------------------------------------------------------- /tests/prompt_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/prompt_weights.py -------------------------------------------------------------------------------- /tests/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/schedulers.py -------------------------------------------------------------------------------- /tests/test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stablecabal/gyre/HEAD/tests/test_harness.py -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------