2025-03-19 10:33:32 +01:00
|
|
|
_base_ = [ # inherit grammer from mmengine
|
|
|
|
|
"768px.py",
|
|
|
|
|
"plugins/t2i2v.py",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# # update the inference scaling parameters
|
|
|
|
|
sampling_option = dict(
|
|
|
|
|
method="i2v_inference_scaling",
|
|
|
|
|
vbench_dimension_list=['subject_consistency', 'background_consistency', 'motion_smoothness', 'dynamic_degree', 'aesthetic_quality', 'imaging_quality'],
|
|
|
|
|
do_inference_scaling=True,
|
2025-03-20 04:38:07 +01:00
|
|
|
num_subtree=3,
|
2025-03-19 10:33:32 +01:00
|
|
|
backward_scale=1.0,
|
|
|
|
|
forward_scale=0.5,
|
2025-03-20 04:38:07 +01:00
|
|
|
scaling_steps=[1,3,6,10,13],
|
2025-03-19 10:33:32 +01:00
|
|
|
vbench_gpus=[6,7],
|
2025-03-20 04:38:07 +01:00
|
|
|
)
|