Spaces:
No application file
No application file
File size: 348 Bytes
6755a2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
LCMDir = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "../../checkpoints", "lcm"
)
MODEL_CFG = {
"lcm": {
os.path.join(LCMDir, "lcm-lora-sdv1-5/pytorch_lora_weights.safetensors"): {
"strength": 1.0,
"lora_block_weight": "ALL",
"strength_offset": 0,
},
},
}
|