Siando commited on
Commit
e4dcc41
·
verified ·
1 Parent(s): d8a0f88

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -43,14 +43,14 @@ The repository includes two parallel directory trees, each containing the same 1
43
 
44
  ```
45
  EuroCoinDataset/
46
- ├── Dataset_Status/ # Organised by issuing country (23 sub-folders)
47
  │ ├── Andorra/
48
  │ ├── Austria/
49
  │ ├── Belgium/
50
  │ ├── ...
51
  │ └── Vatican-City/
52
 
53
- └── Dataset_Value/ # Organised by denomination (8 sub-folders)
54
  ├── 1-cent/
55
  ├── 2-cent/
56
  ├── 5-cent/
@@ -63,8 +63,8 @@ EuroCoinDataset/
63
 
64
  ### File naming convention
65
 
66
- - `Dataset_Status`: `<Country>_<index>.<ext>` (e.g., `Germany_42.jpg`)
67
- - `Dataset_Value`: `<denomination>-<Country>_<index>.<ext>` (e.g., `2-euro-Germany_42.jpg`)
68
 
69
  Images are provided in `.jpg` and `.jpeg` format at their original resolution as retrieved from the web.
70
 
@@ -134,7 +134,7 @@ The dataset was used in the following peer-reviewed study to benchmark deep lear
134
  - Several CNN architectures were evaluated (custom CNNs and pre-trained models via transfer learning).
135
  - Best models achieved high top-1 accuracy on both country and denomination classification tasks.
136
  - The dataset was split into training, validation, and test sets with stratified sampling.
137
- - The dual-folder structure (`Dataset_Status` / `Dataset_Value`) allows straightforward use for either single-label or multi-label classification scenarios.
138
 
139
  ---
140
 
 
43
 
44
  ```
45
  EuroCoinDataset/
46
+ ├── country_dataset/ # Organised by issuing country (23 sub-folders)
47
  │ ├── Andorra/
48
  │ ├── Austria/
49
  │ ├── Belgium/
50
  │ ├── ...
51
  │ └── Vatican-City/
52
 
53
+ └── denomination_dataset/ # Organised by denomination (8 sub-folders)
54
  ├── 1-cent/
55
  ├── 2-cent/
56
  ├── 5-cent/
 
63
 
64
  ### File naming convention
65
 
66
+ - `country_dataset`: `<Country>_<index>.<ext>` (e.g., `Germany_42.jpg`)
67
+ - `denomination_dataset`: `<denomination>-<Country>_<index>.<ext>` (e.g., `2-euro-Germany_42.jpg`)
68
 
69
  Images are provided in `.jpg` and `.jpeg` format at their original resolution as retrieved from the web.
70
 
 
134
  - Several CNN architectures were evaluated (custom CNNs and pre-trained models via transfer learning).
135
  - Best models achieved high top-1 accuracy on both country and denomination classification tasks.
136
  - The dataset was split into training, validation, and test sets with stratified sampling.
137
+ - The dual-folder structure (`country_dataset` / `denomination_dataset`) allows straightforward use for either single-label or multi-label classification scenarios.
138
 
139
  ---
140