| license: agpl-3.0 | |
| This repo contains BSD100, Set5 and Set14 for super resolution evaluation study. To access the zipped file: | |
| ```python | |
| from huggingface_hub import hf_hub_download | |
| # Replace with the actual repository ID and filename | |
| repo_id = "keanteng/bsd100-set5-set14" | |
| filename = "BSD100.zip" # or Set5.zip and Set14.zip | |
| local_filepath = hf_hub_download(repo_id=repo_id, filename=filename) | |
| print(f"File downloaded to: {local_filepath}") | |
| ``` |