mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-17 17:43:30 +00:00
Compare commits
3 Commits
04b50d6260
...
23fe33adea
Author | SHA1 | Date | |
---|---|---|---|
![]() |
23fe33adea | ||
![]() |
c6ad7a4d01 | ||
![]() |
74458b7410 |
1
.github/workflows/stable-release.yml
vendored
1
.github/workflows/stable-release.yml
vendored
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
name: "Release Stable Version"
|
name: "Release Stable Version"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
@ -618,10 +618,10 @@ class PixArtAlpha(supported_models_base.BASE):
|
|||||||
}
|
}
|
||||||
|
|
||||||
sampling_settings = {
|
sampling_settings = {
|
||||||
"beta_schedule" : "sqrt_linear",
|
"beta_schedule": "sqrt_linear",
|
||||||
"linear_start" : 0.0001,
|
"linear_start": 0.0001,
|
||||||
"linear_end" : 0.02,
|
"linear_end": 0.02,
|
||||||
"timesteps" : 1000,
|
"timesteps": 1000,
|
||||||
}
|
}
|
||||||
|
|
||||||
unet_extra_config = {}
|
unet_extra_config = {}
|
||||||
@ -681,8 +681,8 @@ class HunyuanDiT1(HunyuanDiT):
|
|||||||
unet_extra_config = {}
|
unet_extra_config = {}
|
||||||
|
|
||||||
sampling_settings = {
|
sampling_settings = {
|
||||||
"linear_start" : 0.00085,
|
"linear_start": 0.00085,
|
||||||
"linear_end" : 0.03,
|
"linear_end": 0.03,
|
||||||
}
|
}
|
||||||
|
|
||||||
class Flux(supported_models_base.BASE):
|
class Flux(supported_models_base.BASE):
|
||||||
|
@ -449,8 +449,8 @@ PIXART_MAP_BLOCK = {
|
|||||||
("mlp.fc1.bias", "ff.net.0.proj.bias"),
|
("mlp.fc1.bias", "ff.net.0.proj.bias"),
|
||||||
("mlp.fc2.weight", "ff.net.2.weight"),
|
("mlp.fc2.weight", "ff.net.2.weight"),
|
||||||
("mlp.fc2.bias", "ff.net.2.bias"),
|
("mlp.fc2.bias", "ff.net.2.bias"),
|
||||||
("cross_attn.proj.weight" ,"attn2.to_out.0.weight"),
|
("cross_attn.proj.weight", "attn2.to_out.0.weight"),
|
||||||
("cross_attn.proj.bias" ,"attn2.to_out.0.bias"),
|
("cross_attn.proj.bias", "attn2.to_out.0.bias"),
|
||||||
}
|
}
|
||||||
|
|
||||||
def pixart_to_diffusers(mmdit_config, output_prefix=""):
|
def pixart_to_diffusers(mmdit_config, output_prefix=""):
|
||||||
|
@ -84,7 +84,7 @@ class CacheHelper:
|
|||||||
cache_helper = CacheHelper()
|
cache_helper = CacheHelper()
|
||||||
|
|
||||||
extension_mimetypes_cache = {
|
extension_mimetypes_cache = {
|
||||||
"webp" : "image",
|
"webp": "image",
|
||||||
}
|
}
|
||||||
|
|
||||||
def map_legacy(folder_name: str) -> str:
|
def map_legacy(folder_name: str) -> str:
|
||||||
|
4
nodes.py
4
nodes.py
@ -1989,7 +1989,7 @@ NODE_CLASS_MAPPINGS = {
|
|||||||
"ImageBatch": ImageBatch,
|
"ImageBatch": ImageBatch,
|
||||||
"ImagePadForOutpaint": ImagePadForOutpaint,
|
"ImagePadForOutpaint": ImagePadForOutpaint,
|
||||||
"EmptyImage": EmptyImage,
|
"EmptyImage": EmptyImage,
|
||||||
"ConditioningAverage": ConditioningAverage ,
|
"ConditioningAverage": ConditioningAverage,
|
||||||
"ConditioningCombine": ConditioningCombine,
|
"ConditioningCombine": ConditioningCombine,
|
||||||
"ConditioningConcat": ConditioningConcat,
|
"ConditioningConcat": ConditioningConcat,
|
||||||
"ConditioningSetArea": ConditioningSetArea,
|
"ConditioningSetArea": ConditioningSetArea,
|
||||||
@ -2076,7 +2076,7 @@ NODE_DISPLAY_NAME_MAPPINGS = {
|
|||||||
"LatentUpscaleBy": "Upscale Latent By",
|
"LatentUpscaleBy": "Upscale Latent By",
|
||||||
"LatentComposite": "Latent Composite",
|
"LatentComposite": "Latent Composite",
|
||||||
"LatentBlend": "Latent Blend",
|
"LatentBlend": "Latent Blend",
|
||||||
"LatentFromBatch" : "Latent From Batch",
|
"LatentFromBatch": "Latent From Batch",
|
||||||
"RepeatLatentBatch": "Repeat Latent Batch",
|
"RepeatLatentBatch": "Repeat Latent Batch",
|
||||||
# Image
|
# Image
|
||||||
"SaveImage": "Save Image",
|
"SaveImage": "Save Image",
|
||||||
|
Loading…
Reference in New Issue
Block a user