mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
Merge branch 'dev' into feat/filter-sampler-upscaler-choices
This commit is contained in:
@@ -723,6 +723,30 @@ try:
|
||||
image_hijack=False,
|
||||
vae_hijack=False,
|
||||
vae_remote=False),
|
||||
Model(name='MiniMax H3 Pruned SDNQ uint8',
|
||||
url='https://huggingface.co/MiniMaxAI/MiniMax-H3',
|
||||
repo='OzzyGT/MiniMax_H3_sdnq_8bit_pruned',
|
||||
repo_cls='MiniMaxH3ModularPipeline',
|
||||
workflow='fl2va',
|
||||
base=True,
|
||||
te_cls=None,
|
||||
dit_cls=None,
|
||||
te_hijack=False,
|
||||
image_hijack=False,
|
||||
vae_hijack=False,
|
||||
vae_remote=False),
|
||||
Model(name='MiniMax H3 Pruned SDNQ uint8 Ref2VA',
|
||||
url='https://huggingface.co/MiniMaxAI/MiniMax-H3',
|
||||
repo='OzzyGT/MiniMax_H3_sdnq_8bit_pruned',
|
||||
repo_cls='MiniMaxH3ModularPipeline',
|
||||
workflow='ref2va',
|
||||
base=True,
|
||||
te_cls=None,
|
||||
dit_cls=None,
|
||||
te_hijack=False,
|
||||
image_hijack=False,
|
||||
vae_hijack=False,
|
||||
vae_remote=False),
|
||||
Model(name='MiniMax H3',
|
||||
url='https://huggingface.co/MiniMaxAI/MiniMax-H3',
|
||||
repo='MiniMaxAI/MiniMax-H3',
|
||||
@@ -747,6 +771,18 @@ try:
|
||||
image_hijack=False,
|
||||
vae_hijack=False,
|
||||
vae_remote=False),
|
||||
Model(name='MiniMax H3 VDN',
|
||||
url='https://huggingface.co/OpenVDN/vdn-minimax-h3',
|
||||
repo='OpenVDN/vdn-minimax-h3',
|
||||
repo_cls='MiniMaxH3ModularPipeline',
|
||||
workflow='fl2va',
|
||||
base=True,
|
||||
te_cls=None,
|
||||
dit_cls=None,
|
||||
te_hijack=False,
|
||||
image_hijack=False,
|
||||
vae_hijack=False,
|
||||
vae_remote=False),
|
||||
],
|
||||
'Google Veo': [
|
||||
Model(name='Google Veo 3.1 T2V',
|
||||
|
||||
@@ -25,7 +25,7 @@ def apply_overrides(p, pipe, still: bool = False, audio: bool = True):
|
||||
while frames > max_frames:
|
||||
frames -= pipe.vae_frames_per_chunk
|
||||
if frames != getattr(p, 'frames', None):
|
||||
log.debug(f'Pipeline: cls={pipe.__class__.__name__} frames={getattr(p, "frames", None)} aligned={frames}')
|
||||
log.debug(f'Pipeline: cls={pipe.__class__.__name__} frames requested={getattr(p, "frames", None)} aligned={frames}')
|
||||
p.frames = frames
|
||||
p.task_args['num_frames'] = frames
|
||||
p.steps = max(2, p.steps)
|
||||
|
||||
Reference in New Issue
Block a user