-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
these packages are missing in the requirements.txt
pip install h5py
pip install opencv-python
in the gradio_demo.py :
from models.lora import replace_linear_with_lora
shuld be
from models_accessory.lora import replace_linear_with_lora
train_args = torch.load(os.path.join(args.ckpt, "model_args.pth"))
shuld be
train_args = torch.load(os.path.join(args.ckpt, "model_args.pth"), weights_only=False)
also its still using above 24gb vram so i could not test it further. quite surprising because way bigger models like flux work on my pc. maby adding a quantized version would help.
i have tired to add model offloading but the main model still used so much vram that i could not runn it.
Metadata
Metadata
Assignees
Labels
No labels