Upload README.md with huggingface_hub
#1
by ch0t0n - opened
- .gitattributes +1 -0
- README.md +99 -0
- annotations.coco.json +3 -0
- images.tar.gz +3 -0
- masks.tar.gz +3 -0
- species_labels.csv +0 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
annotations.coco.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,102 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pretty_name: BeeMachine Partwhole Dataset
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-segmentation
|
| 6 |
+
- image-classification
|
| 7 |
+
tags:
|
| 8 |
+
- biology
|
| 9 |
+
- entomology
|
| 10 |
+
- bumble-bee
|
| 11 |
+
- fine-grained
|
| 12 |
+
- part-segmentation
|
| 13 |
+
- citizen-science
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
---
|
| 17 |
+
|
| 18 |
+
# BeeMachine Partwhole Dataset
|
| 19 |
+
|
| 20 |
+
Pixel-level anatomical part annotations for bumble bee photographs used by the BeeMachine identification service and by the IAAI-27 evaluation of anatomy-guided learning strategies.
|
| 21 |
+
|
| 22 |
+
## Summary
|
| 23 |
+
|
| 24 |
+
| Property | Value |
|
| 25 |
+
|---|---|
|
| 26 |
+
| Images | 7,716 |
|
| 27 |
+
| Species | 160 |
|
| 28 |
+
| Part classes | background, abdomen, head, thorax |
|
| 29 |
+
| Mask format | integer PNG (`*_m.png`), same stem as the RGB image |
|
| 30 |
+
| Labels | `species_labels.csv` (`images`, `species`) |
|
| 31 |
+
|
| 32 |
+
## Directory layout
|
| 33 |
+
|
| 34 |
+
Files in this repository:
|
| 35 |
+
|
| 36 |
+
```
|
| 37 |
+
README.md
|
| 38 |
+
species_labels.csv # image filename → species
|
| 39 |
+
annotations.coco.json # COCO-format segmentation export
|
| 40 |
+
images.tar.gz # RGB photographs (flat directory `images/`)
|
| 41 |
+
masks.tar.gz # integer part masks (flat directory `masks/`)
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
After download, unpack next to the CSV:
|
| 45 |
+
|
| 46 |
+
```bash
|
| 47 |
+
tar -xzf images.tar.gz
|
| 48 |
+
tar -xzf masks.tar.gz
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
This yields:
|
| 52 |
+
|
| 53 |
+
```
|
| 54 |
+
images/ # RGB photographs (flat)
|
| 55 |
+
masks/ # integer part masks, one {stem}_m.png per image
|
| 56 |
+
species_labels.csv
|
| 57 |
+
annotations.coco.json
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
Mask class IDs:
|
| 62 |
+
|
| 63 |
+
| ID | Label |
|
| 64 |
+
|---:|---|
|
| 65 |
+
| 0 | background |
|
| 66 |
+
| 1 | abdomen |
|
| 67 |
+
| 2 | head |
|
| 68 |
+
| 3 | thorax |
|
| 69 |
+
|
| 70 |
+
## Intended use
|
| 71 |
+
|
| 72 |
+
Train and evaluate part segmenters that supply anatomical masks to species classifiers. In the associated paper, this corpus is the Stage A segmentation set only; species classification is trained on a separate, larger originals-only BeeMachine classification corpus.
|
| 73 |
+
|
| 74 |
+
**Note:** The full BeeMachine classification dataset is very large and is not hosted here; it will be available upon request.
|
| 75 |
+
|
| 76 |
+
## Splits
|
| 77 |
+
|
| 78 |
+
The paper uses a frozen species-stratified 75% / 15% / 10% train / validation / test split (seed 42). Those fold filenames are distributed with the supplementary code under `outputs/beemachine/frozen_splits/`. Train-only six-fold geometric augmentation (original, flips, 90/180/270° rotations) is generated from the frozen training fold and is not shipped here.
|
| 79 |
+
|
| 80 |
+
## Source photographs
|
| 81 |
+
|
| 82 |
+
Images were collected from citizen-science and museum archives used by BeeMachine (including Bumble Bee Watch, iNaturalist, and BugGuide). Part masks were annotated for head, thorax, and abdomen. Copyright in the underlying photographs remains with the original rights holders; redistribution here is for non-commercial research.
|
| 83 |
+
|
| 84 |
+
## Citation
|
| 85 |
+
|
| 86 |
+
If you use this dataset, please cite the BeeMachine paper and the IAAI-27 evaluation that releases these part annotations:
|
| 87 |
+
|
| 88 |
+
```bibtex
|
| 89 |
+
@article{spiesman2021beemachine,
|
| 90 |
+
author = {Spiesman, Brian J. and Gratton, Claudio and Hatfield, Richard G. and Hsu, William H. and Jepsen, Sarina and McCornack, Brian and Patel, Krishna and Wang, Guanjie},
|
| 91 |
+
title = {Assessing the Potential for Deep Learning and Computer Vision to Identify Bumble Bee Species from Images},
|
| 92 |
+
journal = {Scientific Reports},
|
| 93 |
+
volume = {11},
|
| 94 |
+
pages = {7580},
|
| 95 |
+
year = {2021},
|
| 96 |
+
doi = {10.1038/s41598-021-87210-1}
|
| 97 |
+
}
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
## License
|
| 101 |
+
|
| 102 |
+
MIT for the annotation files and packaging in this repository. Photograph copyrights remain with their original owners.
|
annotations.coco.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d6aa7850b9de1fca31d568d6110d5c2a2d8a5def605de11633b74cca6b28439
|
| 3 |
+
size 118795420
|
images.tar.gz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51a2dff49ed5f8ce3d5d55d583228c525f6b6b3ac8305528db40d540c70fe18e
|
| 3 |
+
size 316670016
|
masks.tar.gz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e8308778ef639a61d3f5f85de2294c959ee51a5862617c1f3575e5ca7167ff6
|
| 3 |
+
size 37097790
|
species_labels.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|