CoolFace
Apppublic

batkovdev/i2v-vtk

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
batch_inference_example.yaml68 linesDownload Raw Back to configs
1T2V-Example:2  inference_config: "configs/inference/inference-t2v.yaml"3  motion_module:4    - "models/Motion_Module/xxx.ckpt"5  lcm_lora:6    - "models/LCM_LoRA/xxx.safetensors"7 8  dreambooth_path: "models/Personalized/xxx.safetensors"9  lora_model_path: ""10 11  seed:           [2, 0, 2 , 4]12  steps:          413  guidance_scale: 1.514  do_classifier_free_guidance: True15  H: 51216  W: 51217  L: 1618 19  prompt:20    - "xxx, specify your prompt here"21    - "xxx, specify your prompt here"22    - "xxx, specify your prompt here"23    - "xxx, specify your prompt here"24 25  n_prompt:26    - "xxx, specify your negative prompt here"27    - "xxx, specify your negative prompt here"28    - "xxx, specify your negative prompt here"29    - "xxx, specify your negative prompt here"30 31I2V-Example:32 33  inference_config: "configs/inference/inference-i2v.yaml"34  motion_module:35    - "models/Motion_Module/xxx.ckpt"36  lcm_lora:37    - "models/LCM_LoRA/xxx.safetensors"38 39  dreambooth_path: "models/Personalized/xxx.safetensors"40  lora_model_path: ""41 42  seed:           [2, 0, 2, 4]43  steps:          444  guidance_scale: 1 # should be  [1,2]45  do_classifier_free_guidance: True46  H: 51247  W: 51248  L: 1649 50  prompt:51    - "xxx, specify your prompt here"52    - "xxx, specify your prompt here"53    - "xxx, specify your prompt here"54    - "xxx, specify your prompt here"55 56  n_prompt:57    - "xxx, specify your negative prompt here"58    - "xxx, specify your negative prompt here"59    - "xxx, specify your negative prompt here"60    - "xxx, specify your negative prompt here"61 62  image_paths:63    - "xxx, specify your image paths here"64    - "xxx, specify your image paths here"65    - "xxx, specify your image paths here"66    - "xxx, specify your image paths here"67 68