Update README.md
Browse files
README.md
CHANGED
@@ -98,32 +98,20 @@ cite as:
|
|
98 |
}
|
99 |
```
|
100 |
|
101 |
-
## Dataset Features
|
102 |
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
-
- **`image`**
|
106 |
-
RGB JPEG images of individual insect specimens.
|
107 |
-
|
108 |
-
- **Metadata fields**
|
109 |
-
- **Indexing fields**
|
110 |
-
- `processid`: A unique number assigned by BOLD (International Barcode of Life Consortium).
|
111 |
-
- `sampleid`: A unique identifier given by the collector.
|
112 |
-
- **Taxonomic labels**
|
113 |
-
- `phylum`, `class`, `order`, `family`, `subfamily`, `genus`, `species`: Hierarchical taxonomic classification
|
114 |
-
- **Genetic information**
|
115 |
-
- `dna_bin`: Barcode Index Number
|
116 |
-
- `dna_barcode`: DNA barcode sequence
|
117 |
-
- **Geographic data**
|
118 |
-
- `country`, `province_state`: Collection location
|
119 |
-
- `coord-lat`, `coord-lon`: Latitude and longitude coordinates
|
120 |
-
- **Specimen size data**
|
121 |
-
- `image_measurement_value`: Measured image property (e.g., pixel area)
|
122 |
-
- `area_fraction`: Fraction of the image occupied by the specimen
|
123 |
-
- `scale_factor`: Relative size normalization factor
|
124 |
-
- **Split and localization**
|
125 |
-
- `split`: Data partition label (e.g., train, test, val)
|
126 |
-
- `chunk`: Subdirectory label for scalable storage
|
127 |
|
128 |
## Usage
|
129 |
|
@@ -146,6 +134,9 @@ ds = load_dataset("dataset.py", name="cropped_256_eval", split="validation", tru
|
|
146 |
|
147 |
### 📑 Configurations
|
148 |
|
|
|
|
|
|
|
149 |
| **`name`** | **Available `split` values** |
|
150 |
|--------------------------------------------- |------------------------------------------------------------------- |
|
151 |
| `cropped_256`, `original_256` | `pretrain`, `train`, `validation`, `test`, `val_unseen`, `test_unseen`, `key_unseen`, `other_heldout` |
|
|
|
98 |
}
|
99 |
```
|
100 |
|
|
|
101 |
|
102 |
+
## Dataset Fields
|
103 |
+
|
104 |
+
| **Field Group** | **Field(s)** | **Description** |
|
105 |
+
|---------------------|------------------------------------------------------------------------------|---------------------------------------------------------------|
|
106 |
+
| **Image** | `image` | RGB JPEG image of an individual insect specimen. |
|
107 |
+
| **Indexing** | `processid`, `sampleid` | Unique identifiers from BOLD and the collector. |
|
108 |
+
| **Taxonomy** | `phylum`, `class`, `order`, `family`, `subfamily`, `genus`, `species` | Hierarchical taxonomic classification. |
|
109 |
+
| **Genetics** | `dna_bin`, `dna_barcode` | Barcode Index Number and DNA sequence. |
|
110 |
+
| **Geography** | `country`, `province_state`, `coord-lat`, `coord-lon` | Collection location and geographic coordinates. |
|
111 |
+
| **Specimen Size** | `image_measurement_value`, `area_fraction`, `scale_factor` | Image-based size measures and normalization factors. |
|
112 |
+
| **Splits & Storage**| `split`, `chunk` | Data partition (e.g., train/test) and storage subdirectory. |
|
113 |
+
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
## Usage
|
117 |
|
|
|
134 |
|
135 |
### 📑 Configurations
|
136 |
|
137 |
+
Each configuration loads specimen images along with associated metadata fields:
|
138 |
+
|
139 |
+
|
140 |
| **`name`** | **Available `split` values** |
|
141 |
|--------------------------------------------- |------------------------------------------------------------------- |
|
142 |
| `cropped_256`, `original_256` | `pretrain`, `train`, `validation`, `test`, `val_unseen`, `test_unseen`, `key_unseen`, `other_heldout` |
|