Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: agpl-3.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: agpl-3.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
This repo contains BSD100, Set5 and Set14 for super resolution evaluation study. To access the zipped file:
|
| 6 |
+
|
| 7 |
+
```python
|
| 8 |
+
from huggingface_hub import hf_hub_download
|
| 9 |
+
|
| 10 |
+
# Replace with the actual repository ID and filename
|
| 11 |
+
repo_id = "keanteng/bsd100-set5-set14"
|
| 12 |
+
filename = "BSD100.zip" # or Set5.zip and Set14.zip
|
| 13 |
+
|
| 14 |
+
local_filepath = hf_hub_download(repo_id=repo_id, filename=filename)
|
| 15 |
+
print(f"File downloaded to: {local_filepath}")
|
| 16 |
+
```
|