pablo
add diffusers fork
a63d2a4
raw
history blame contribute delete
No virus
528 Bytes
# In this file, we define download_model
# It runs during container build time to get model weights built into the container
import torch
def download_model():
# do a dry run of loading the huggingface model, which will download weights
path = {"midas": ["ckpt/dpt_hybrid-midas-501f0c75.pt","https://huggingface.co/lllyasviel/ControlNet/resolve/main/annotator/ckpts/dpt_hybrid-midas-501f0c75.pt"]}
torch.hub.download_url_to_file(path["midas"][1], path["midas"][0])
if __name__ == "__main__":
download_model()