Virtual-Try-On_with_AI / monkey_patch.py
Anurag181011's picture
added monkey patch
5b4140d
raw
history blame contribute delete
221 Bytes
import huggingface_hub
# Monkey-patch: if cached_download is missing, use hf_hub_download instead.
if not hasattr(huggingface_hub, "cached_download"):
huggingface_hub.cached_download = huggingface_hub.hf_hub_download