File size: 455 Bytes
5df0a02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
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}")
```