pdf-backend / download_model.py
Tejaswi Panchagnula
Backend with proper LFS
64602d3
raw
history blame contribute delete
250 Bytes
from huggingface_hub import hf_hub_download
print("Downloading model...")
# Downloads the FFDNet-L model to the current folder
hf_hub_download(repo_id="jbarrow/FFDNet-L", filename="FFDNet-L.pt", local_dir=".")
print("Model downloaded successfully!")