Update README.md
Browse files
README.md
CHANGED
@@ -10,4 +10,26 @@ size_categories:
|
|
10 |
- 1K<n<10K
|
11 |
---
|
12 |
|
13 |
-
This repository contains the JPEG version of Mini-DDBS breast cancer dataset from [Kaggle](https://www.kaggle.com/datasets/cheddad/miniddsm2/data). Sinced the whole dataset is 50GB only the JPEG version is extracted and uploaded here for faster retrieving.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
- 1K<n<10K
|
11 |
---
|
12 |
|
13 |
+
This repository contains the JPEG version of Mini-DDBS breast cancer dataset from [Kaggle](https://www.kaggle.com/datasets/cheddad/miniddsm2/data). Sinced the whole dataset is 50GB only the JPEG version is extracted and uploaded here for faster retrieving.
|
14 |
+
|
15 |
+
You can use Git Clone to download the whole data or the zip version (although zip version are recommended):
|
16 |
+
|
17 |
+
To access the data:
|
18 |
+
|
19 |
+
- Using Git Clone
|
20 |
+
|
21 |
+
```bash
|
22 |
+
git clone https://huggingface.co/datasets/keanteng/miniddbs-jpeg
|
23 |
+
```
|
24 |
+
|
25 |
+
- Using Python
|
26 |
+
```python
|
27 |
+
from huggingface_hub import hf_hub_download
|
28 |
+
|
29 |
+
# Replace with the actual repository ID and filename
|
30 |
+
repo_id = "keanteng/bsd100-set5-set14"
|
31 |
+
filename = "BSD100.zip" # or Set5.zip and Set14.zip
|
32 |
+
|
33 |
+
local_filepath = hf_hub_download(repo_id=repo_id, filename=filename)
|
34 |
+
print(f"File downloaded to: {local_filepath}")
|
35 |
+
```
|