egrace479 commited on
Commit
a940a7c
·
verified ·
1 Parent(s): 8ce1d35

Update description for publication of repo (#12)

Browse files

- Update description for publication of repo (eb5da85c6af1208e8469c667e642269056794225)
- Update licensing section to reflect licensing of images shared in this dataset (f6112527b2cbaf72e5f04847ee80926a882d6f37)
- Add description for two files not previously described (7ef909d9a5df47081dab2368521cf2bcae8383c0)

Files changed (1) hide show
  1. README.md +201 -13
README.md CHANGED
@@ -1,13 +1,124 @@
1
  ---
2
  language:
3
  - en
4
- pretty_name: TreeOfLife10M EDA
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
6
- # TreeOfLife10M EDA Repo
7
 
8
- This repo contains the analysis of the TreeOfLife10M dataset as it's being crafted and refined.
9
 
10
- ## Data
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  The `data` folder contains
13
  - `catalog.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the associated taxa information for the image. This is the file that will be updated, while preserving the `catalog-v1-dev.csv` file for ease of comparison. [`v3.3`](https://huggingface.co/datasets/imageomics/ToL-EDA/blob/d6b583841aed8c0df314e718735756b76164a933/data/catalog.csv) is the version of the catalog that was used for training [BioCLIP v1](https://doi.org/10.57967/hf/1511) (it has the ~30K images we could not re-align).
@@ -17,10 +128,17 @@ images, and images that have labels.
17
  - `catalog-v1-dev.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the associated taxa information for the image. This file will be maintained for v1 reference, and as such will not be updated.
18
  - `taxa_counts.csv`: count of distinct lower taxa within each higher taxon from `kingdom` down to
19
  `genus` in `catalog-v1-dev.csv`, though the genus count was interrupted and therefore is incomplete.
 
20
  - `avg_std_byClass.csv`: average and standard distribution of images in `catalog-v1-dev.csv` given by class (taxonomic rank). This is for both all images, and images that have labels. Note that kingdoms had not been merged and no standardization was performed on the taxonomic hierarchy prior to creation of this file.
21
- - `tol_hierarchy_test.csv`: Subset of `catalog-v1-dev.csv` for testing the [`check_taxa` script](https://github.com/Imageomics/open_clip/blob/main/scripts/evobio10m/check_taxa.py) to ensure the hierarchy is properly filled in after data generation.
 
22
 
23
- ## Rare Species
 
 
 
 
 
24
  All these files were generated in `eol_realign/notebooks/re-gen_rs_catalog.ipynb`.
25
  - `licenses.csv`: Licensing information for all rarespecies images (includes MD5s and links to catalog and manifest on `rarespecies_id`).
26
  - `rarespecies_manifest.csv`: Full manifest information for all images included in rarespecies catalog (may have some extra info from realign).
@@ -28,12 +146,12 @@ All these files were generated in `eol_realign/notebooks/re-gen_rs_catalog.ipynb
28
  For evaluation, Lisa generated a `metadata.csv` that cut the `rarespecies-catalog.csv` down to just the taxonomic columns with index, changing `class` to `cls`, `common` to `common_name`, and creating a `filepath` column (`"2024-03-20/" + <eol_content_id> + "_" + <eol_page_id> + "_eol-full-size-copy.jpg"`), with a `class` column indicating the `sciName` (though this could use a different ID depending on the evaluation).
29
 
30
 
31
- ## EOL Re-align
32
 
33
  More detail on the background of this process can be found in the `links_align_reduced` and `links_rs_duplicates` notebooks, as well as [PR #5](https://huggingface.co/datasets/imageomics/ToL-EDA/discussions/5).
34
 
35
  * **Data:**
36
- More information on all the datacan be found in the `links_align_reduced` and `links_rs_duplicates` notebooks. Just those of primary import and potential continued use are listed here.
37
 
38
  - `checksums_media_cargo_archive.csv`: MD5 of all EOL images in our cargo archive.
39
  - `full_owner_manifset.csv`: Record of all images from EOL that could potentially be used in the TreeOfLife-10M dataset, this has all the non-taxonomic EOL metadata for the EOL images included in the TreeOfLife-10M catalog (12,330,062 entries, gets reduced down during catalog re-generation), with MD5s aligned to `filename` (`<eol_content_id>_<eol_page_id>_eol-full-size-copy.jpg`).
@@ -54,7 +172,7 @@ For evaluation, Lisa generated a `metadata.csv` that cut the `rarespecies-catalo
54
  - `make_licenses.py`: Adds license URLs to make the full manifest and license file.
55
  - `match_owners.py`: Adds extra licensing information toward making the full manifest. Uses `eol_realign/data/eol-cargo-archive_catalog_combined-manifest-checksums_links.csv`, makes `eol_realign/data/combined_manifest.csv` for generating final catalog.
56
 
57
- ## Notebooks
58
 
59
  The `notebooks` folder contains
60
  - `ToL_catalog_EDA.ipynb`: more full EDA of TreeOfLife10M dataset using `catalog.csv`. To be updated as `catalog.csv` is updated, i.e., as the dataset is updated.
@@ -66,16 +184,86 @@ The `notebooks` folder contains
66
  - `BioCLIP_taxa_viz_bySource.ipynb`: generates data visualizations, in particular, the generation of visualizations in `visuals` folder and some histograms. The treemaps produced in the notebook are interactive.
67
  - `ToL_EDA.ipynb`: more full EDA of TreeOfLife10M dataset. Explores the labeling inconsistencies for
68
  direction of standardization efforts. Maintained for v1 reference, should not be updated.
69
- - `missing_taxa_testGen.ipynb`: generates `tol_hierarchy_test.csv` to test [`check_taxa` script](https://github.com/Imageomics/open_clip/blob/main/scripts/evobio10m/check_taxa.py). Also observes species labeled as `(unidentified)` in EOL data.
 
70
 
71
  **Note:** run `pip install -r requirements.txt` before starting the visualization notebooks. EDA notebooks only require `pandas` and `seaborn`.
72
 
73
- ## Visuals
74
 
75
- Visualizations generated to demonstrate the distribution and diversity within the phyla of TreeOfLife10M.
76
  - `category-v1-visuals`: visualizations made for the original `catalog-v1-dev.csv` using `BioCLIP_taxa_viz_bySource.ipynb`.
77
  There is also one for just the iNat21 data included.
78
  - `kingdom_ToL_tree.html`: interactive treemap from `kingdom` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
79
- - `kingdom_ToL_tree.pdf`: static treemap from `kingdom` to `family`to demonstrate the distribution of the data. 2:1 aspect ratio.
80
  - `phyla_ToL_tree.html`: interactive treemap from `phylum` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
81
  - `kingdom_ToL_tree.pdf`: static treemap from `phylum` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  language:
3
  - en
4
+ pretty_name: TreeOfLife-10M Exploratory Data Analysis
5
+ description: >-
6
+ Real-time exploratory data analysis of the TreeOfLife-10M and Rare Species
7
+ datasets during their creation and refinement. It is not intended for re-use
8
+ as a dataset, but is shared in the spirit of open-science to provide further
9
+ insight into the creation of the TreeOfLife-10M dataset and the Rare Species
10
+ benchmark.
11
+ tags:
12
+ - EDA
13
+ - imageomics
14
+ - biology
15
+ - rare-species
16
+ - plants
17
+ - animals
18
+ - fungi
19
+ - reference
20
+ viewer: false
21
  ---
22
+ # TreeOfLife-10M EDA Repo
23
 
24
+ This repo contains the real-time exploratory data analysis of the [TreeOfLife-10M](https://huggingface.co/datasets/imageomics/TreeOfLife-10M) and [Rare Species](https://huggingface.co/datasets/imageomics/rare-species) datasets during their creation and refinement. It is not intended for re-use as a dataset, but is shared in the spirit of open-science to provide further insight into the creation of the TreeOfLife-10M dataset and the Rare Species benchmark.
25
 
26
+ ## Dataset Details
27
+
28
+ ### Dataset Description
29
+
30
+ - **Curated by:** Elizabeth G. Campolongo and Matthew J. Thompson
31
+ - **Homepage:** [BioCLIP Project Page](https://imageomics.github.io/bioclip/)
32
+ - **Repository:** [BioCLIP project repo](https://github.com/Imageomics/BioCLIP)
33
+ - **Paper:** [BioCLIP: A Vision Foundation Model for the Tree of Life](https://arxiv.org/abs/2311.18803)
34
+
35
+
36
+ ## Dataset Structure
37
+
38
+ As noted above, this dataset consists primarily of the exploratory data analysis during creation of the [TreeOfLife-10M](https://huggingface.co/datasets/imageomics/TreeOfLife-10M) and [Rare Species](https://huggingface.co/datasets/imageomics/rare-species) datasets. More detailed descriptions of its contents are provided below.
39
+
40
+ ```
41
+ data/
42
+ taxa_files/
43
+ sample_images/
44
+ 20507360_64639770_eol-full-size-copy.jpg
45
+ 22255430_64639830_eol-full-size-copy.jpg
46
+ 29906970_65415246_eol-full-size-copy.jpg
47
+ 29907020_65415246_eol-full-size-copy.jpg
48
+ 30038365_65415248_eol-full-size-copy.jpg
49
+ 8757019_49951271_eol-full-size-copy.jpg
50
+ 8757071_49951271_eol-full-size-copy.jpg
51
+ 8757093_49951271_eol-full-size-copy.jpg
52
+ 8757102_49951271_eol-full-size-copy.jpg
53
+ 8791997_49952170_eol-full-size-copy.jpg
54
+ 8792002_49952170_eol-full-size-copy.jpg
55
+ 8922943_49955771_eol-full-size-copy.jpg
56
+ ToL_hybrids_Arthropoda.csv
57
+ sample_arthropoda_mislabels.txt
58
+ README.md # Hemihomonym description and explanation
59
+ avg_std_byClass.csv
60
+ catalog-v1-dev.csv
61
+ catalog.csv
62
+ licenses.csv
63
+ missing_taxa_output.txt
64
+ predicted-catalog.csv
65
+ stats_avg_std_byClass.csv
66
+ taxa_counts.csv
67
+ tol_hierarchy_test.csv
68
+ eol_realign/
69
+ data/
70
+ checksums_media_cargo_archive.csv
71
+ combined-manifest-licenses.csv
72
+ combined_manifest.csv
73
+ combined_manifest_with_checksums.csv
74
+ eol-cargo-archive_catalog_combined-manifest-checksums_links.csv
75
+ eol-cargo-archive_combined-manifest-checksums_links.csv
76
+ full_owner_manifest.csv
77
+ links_cargo_manifest_IDmismatch.csv
78
+ links_inner.csv
79
+ links_manifest_cargo_on_md5.csv
80
+ mismatched_rarespecies.csv
81
+ rarespecies_full_manifest.csv
82
+ rs_links.csv
83
+ notebooks/
84
+ catalog-cargo-manifest_test.ipynb
85
+ links_align_reduced.ipynb
86
+ links_align_reduced.py
87
+ links_rs_duplicates.ipynb
88
+ links_rs_duplicates.py
89
+ re-gen_rs_catalog.ipynb
90
+ re-gen_tol_catalog.ipynb
91
+ scripts/
92
+ make_licenses.py
93
+ match_owners.py
94
+ notebooks/
95
+ BioCLIP_data_viz.ipynb
96
+ BioCLIP_taxa_viz.ipynb
97
+ BioCLIP_taxa_viz.py
98
+ BioCLIP_taxa_viz_bySource.ipynb
99
+ ToL_EDA.ipynb
100
+ ToL_catalog_EDA.ipynb
101
+ ToL_catalog_EDA.py
102
+ ToL_predicted-catalog_EDA.ipynb
103
+ ToL_predicted-catalog_EDA.py
104
+ make_ToL_hybrids_Arthropoda_EDA.ipynb
105
+ missing_taxa_testGen.ipynb
106
+ rare_species/
107
+ data/
108
+ licenses.csv
109
+ rarespecies-catalog.csv
110
+ rarespecies_manifest.csv
111
+ visuals/
112
+ category-v1-visuals/ # "catalog v1" visualizations, don't match published dataset
113
+ kingdom_ToL_tree.html
114
+ kingdom_ToL_tree.pdf
115
+ phyla_ToL_tree.html
116
+ phyla_ToL_tree.pdf
117
+ requirements.txt # installation of these packages is sufficient for all code (notebooks & scripts) in this repo
118
+ ```
119
+
120
+
121
+ ### Data
122
 
123
  The `data` folder contains
124
  - `catalog.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the associated taxa information for the image. This is the file that will be updated, while preserving the `catalog-v1-dev.csv` file for ease of comparison. [`v3.3`](https://huggingface.co/datasets/imageomics/ToL-EDA/blob/d6b583841aed8c0df314e718735756b76164a933/data/catalog.csv) is the version of the catalog that was used for training [BioCLIP v1](https://doi.org/10.57967/hf/1511) (it has the ~30K images we could not re-align).
 
128
  - `catalog-v1-dev.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the associated taxa information for the image. This file will be maintained for v1 reference, and as such will not be updated.
129
  - `taxa_counts.csv`: count of distinct lower taxa within each higher taxon from `kingdom` down to
130
  `genus` in `catalog-v1-dev.csv`, though the genus count was interrupted and therefore is incomplete.
131
+ - `missing_taxa_output.txt`: output from the [check taxa script](https://github.com/Imageomics/bioclip/blob/main/scripts/evobio10m/check_taxa.py), record of versions of catalog checked are indicated before the printout (text was copied from the terminal).
132
  - `avg_std_byClass.csv`: average and standard distribution of images in `catalog-v1-dev.csv` given by class (taxonomic rank). This is for both all images, and images that have labels. Note that kingdoms had not been merged and no standardization was performed on the taxonomic hierarchy prior to creation of this file.
133
+ - `tol_hierarchy_test.csv`: Subset of `catalog-v1-dev.csv` for testing the [`check_taxa` script](https://github.com/Imageomics/bioclip/blob/main/scripts/evobio10m/check_taxa.py) to ensure the hierarchy is properly filled in after data generation.
134
+ - `licenses.csv`: licensing information for all images in the catalog. This should match the published [licenses.csv](https://huggingface.co/datasets/imageomics/TreeOfLife-10M/blob/main/metadata/licenses.csv) (SHA256 match), described in the [metadata section of the TreeOfLife-10M Dataset Card](https://huggingface.co/datasets/imageomics/TreeOfLife-10M#metadata-files).
135
 
136
+ #### Taxa Files
137
+
138
+ This subfolder of `data/` explores instances of hemihomonyms (taxa in different kingdoms with matching Genus-species) in the dataset. One thought is that this may be part of the reason we had so many misclassifications into _Arthropoda_.
139
+ There is a notebook that partially explores this (`notebooks/make_ToL_hybrids_Arthropoda_EDA.ipynb`) and two associated files (`data/taxa_files/ToL_hybrids_Arthropoda.csv` and `data/taxa_files/sample_arthropoda_mislabels.txt` which is a list of filenames for the sample images in `data/taxa_files/sample_images/`). More details are provided in the [taxa_files README](https://huggingface.co/datasets/imageomics/ToL-EDA/tree/main/taxa_files/README.md). This discovery lead to the re-resolution of the TreeOfLife-10M taxonomy from the original published dataset ([TreeOfLife-10M (Revision 69ca82e), DOI: 10.57967/hf/1972](https://huggingface.co/datasets/imageomics/TreeOfLife-10M/tree/69ca82e7481dcae0764f7c5452ea32b3a41cf620), the reproducibility + embeddings update to the original is [Revision ffa2a31, DOI: 10.57967/hf/7542](https://huggingface.co/datasets/imageomics/TreeOfLife-10M/tree/ffa2a318a1396f2f9e456ba171d3b5b5d8b4f051)).
140
+
141
+ ### Rare Species
142
  All these files were generated in `eol_realign/notebooks/re-gen_rs_catalog.ipynb`.
143
  - `licenses.csv`: Licensing information for all rarespecies images (includes MD5s and links to catalog and manifest on `rarespecies_id`).
144
  - `rarespecies_manifest.csv`: Full manifest information for all images included in rarespecies catalog (may have some extra info from realign).
 
146
  For evaluation, Lisa generated a `metadata.csv` that cut the `rarespecies-catalog.csv` down to just the taxonomic columns with index, changing `class` to `cls`, `common` to `common_name`, and creating a `filepath` column (`"2024-03-20/" + <eol_content_id> + "_" + <eol_page_id> + "_eol-full-size-copy.jpg"`), with a `class` column indicating the `sciName` (though this could use a different ID depending on the evaluation).
147
 
148
 
149
+ ### EOL Re-align
150
 
151
  More detail on the background of this process can be found in the `links_align_reduced` and `links_rs_duplicates` notebooks, as well as [PR #5](https://huggingface.co/datasets/imageomics/ToL-EDA/discussions/5).
152
 
153
  * **Data:**
154
+ More information on all the data can be found in the `links_align_reduced` and `links_rs_duplicates` notebooks. Just those of primary import and potential continued use are listed here.
155
 
156
  - `checksums_media_cargo_archive.csv`: MD5 of all EOL images in our cargo archive.
157
  - `full_owner_manifset.csv`: Record of all images from EOL that could potentially be used in the TreeOfLife-10M dataset, this has all the non-taxonomic EOL metadata for the EOL images included in the TreeOfLife-10M catalog (12,330,062 entries, gets reduced down during catalog re-generation), with MD5s aligned to `filename` (`<eol_content_id>_<eol_page_id>_eol-full-size-copy.jpg`).
 
172
  - `make_licenses.py`: Adds license URLs to make the full manifest and license file.
173
  - `match_owners.py`: Adds extra licensing information toward making the full manifest. Uses `eol_realign/data/eol-cargo-archive_catalog_combined-manifest-checksums_links.csv`, makes `eol_realign/data/combined_manifest.csv` for generating final catalog.
174
 
175
+ ### Notebooks
176
 
177
  The `notebooks` folder contains
178
  - `ToL_catalog_EDA.ipynb`: more full EDA of TreeOfLife10M dataset using `catalog.csv`. To be updated as `catalog.csv` is updated, i.e., as the dataset is updated.
 
184
  - `BioCLIP_taxa_viz_bySource.ipynb`: generates data visualizations, in particular, the generation of visualizations in `visuals` folder and some histograms. The treemaps produced in the notebook are interactive.
185
  - `ToL_EDA.ipynb`: more full EDA of TreeOfLife10M dataset. Explores the labeling inconsistencies for
186
  direction of standardization efforts. Maintained for v1 reference, should not be updated.
187
+ - `make_ToL_hybrids_Arthropoda_EDA.ipynb`:
188
+ - `missing_taxa_testGen.ipynb`: generates `tol_hierarchy_test.csv` to test [`check_taxa` script](https://github.com/Imageomics/bioclip/blob/main/scripts/evobio10m/check_taxa.py). Also observes species labeled as `(unidentified)` in EOL data.
189
 
190
  **Note:** run `pip install -r requirements.txt` before starting the visualization notebooks. EDA notebooks only require `pandas` and `seaborn`.
191
 
192
+ ### Visuals
193
 
194
+ Visualizations generated to demonstrate the distribution and diversity within the phyla of TreeOfLife10M. These were created using the [`taxa_viz` script](https://github.com/Imageomics/bioclip/blob/main/scripts/evobio10m/taxa_viz.py).
195
  - `category-v1-visuals`: visualizations made for the original `catalog-v1-dev.csv` using `BioCLIP_taxa_viz_bySource.ipynb`.
196
  There is also one for just the iNat21 data included.
197
  - `kingdom_ToL_tree.html`: interactive treemap from `kingdom` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
198
+ - `kingdom_ToL_tree.pdf`: static treemap from `kingdom` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
199
  - `phyla_ToL_tree.html`: interactive treemap from `phylum` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
200
  - `kingdom_ToL_tree.pdf`: static treemap from `phylum` to `family` to demonstrate the distribution of the data. 2:1 aspect ratio.
201
+
202
+
203
+ ## Licensing Information
204
+
205
+ The images shared in this repository (`data/taxa_files/sample_images/`) are shared under their original licenses as indicated in [`data/taxa_files/metadata.csv`](https://huggingface.co/datasets/imageomics/ToL-EDA/tree/main/data/taxa_files/metadata.csv).
206
+
207
+ The code in this repository is shared under an [MIT license](https://huggingface.co/datasets/imageomics/ToL-EDA/blob/main/LICENSE.md).
208
+
209
+ For more information on the dataset licensing and that of images mentioned or referenced throughout this repository, please see the [TreeOfLife-10M](https://huggingface.co/datasets/imageomics/TreeOfLife-10M) license files. The data (images and text) contain a variety of licensing restrictions mostly within the CC family. Each image and text in this dataset is provided under the least restrictive terms allowed by its licensing requirements as provided to us (i.e, we impose no additional restrictions past those specified by licenses in the license file).
210
+
211
+ Please see the [iNat21 terms of use](https://github.com/visipedia/inat_comp/tree/master/2021#terms-of-use) for full information on use of their images.
212
+
213
+ All BIOSCAN-1M images are licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/).
214
+
215
+ EOL images contain a variety of licenses ranging from [CC0](https://creativecommons.org/publicdomain/zero/1.0/) to [CC BY-NC-SA](https://creativecommons.org/licenses/by-nc-sa/4.0/). For license and citation information by image, see the associated license files.
216
+
217
+ ## Acknowledgements
218
+
219
+ This work was supported by the [Imageomics Institute](https://imageomics.org), which is funded by the US National Science Foundation's Harnessing the Data Revolution (HDR) program under [Award #2118240](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2118240) (Imageomics: A New Frontier of Biological Information Powered by Knowledge-Guided Machine Learning). Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.
220
+
221
+ ## Citation
222
+
223
+ As noted in the description of this dataset, it is not a finished product intended for re-use, but is provided in as an act of open-science. If the exploration or scripts are re-used, please cite our paper:
224
+ ```
225
+ @inproceedings{stevens2024bioclip,
226
+ title = {{B}io{CLIP}: A Vision Foundation Model for the Tree of Life},
227
+ author = {Samuel Stevens and Jiaman Wu and Matthew J Thompson and Elizabeth G Campolongo and Chan Hee Song and David Edward Carlyn and Li Dong and Wasila M Dahdul and Charles Stewart and Tanya Berger-Wolf and Wei-Lun Chao and Yu Su},
228
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
229
+ year = {2024},
230
+ pages = {19412-19424}
231
+ }
232
+ ```
233
+
234
+ See also the citation instructions for [TreeOfLife-10M](https://huggingface.co/datasets/imageomics/TreeOfLife-10M#citation-information) and the [Rare Species Benchmark](https://huggingface.co/datasets/imageomics/rare-species), and please be sure to also cite the original data sources and all constituent parts as appropriate.
235
+
236
+ - iNat21:
237
+ ```
238
+ @misc{inat2021,
239
+ author={Van Horn, Grant and Mac Aodha, Oisin},
240
+ title={iNat Challenge 2021 - FGVC8},
241
+ publisher={Kaggle},
242
+ year={2021},
243
+ url={https://kaggle.com/competitions/inaturalist-2021}
244
+ }
245
+ ```
246
+ - BIOSCAN-1M:
247
+ ```
248
+ @inproceedings{gharaee2023step,
249
+ title={A Step Towards Worldwide Biodiversity Assessment: The {BIOSCAN-1M} Insect Dataset},
250
+ booktitle = {Advances in Neural Information Processing Systems ({NeurIPS}) Datasets \& Benchmarks Track},
251
+ author={Gharaee, Z. and Gong, Z. and Pellegrino, N. and Zarubiieva, I. and Haurum, J. B. and Lowe, S. C. and McKeown, J. T. A. and Ho, C. Y. and McLeod, J. and Wei, Y. C. and Agda, J. and Ratnasingham, S. and Steinke, D. and Chang, A. X. and Taylor, G. W. and Fieguth, P.},
252
+ year={2023},
253
+ }
254
+ ```
255
+ - EOL: Encyclopedia of Life. Available from http://eol.org. Accessed 29 July 2023.
256
+ For license and citation information by image, see our [license file](https://huggingface.co/datasets/imageomics/treeoflife-10m/blob/main/metadata/licenses.csv).
257
+
258
+
259
+ - ITIS: Retrieved July, 20 2023, from the Integrated Taxonomic Information System (ITIS) on-line database, www.itis.gov, CC0
260
+ https://doi.org/10.5066/F7KH0KBK
261
+
262
+
263
+ ## Dataset Card Author
264
+
265
+ Elizabeth G. Campolongo
266
+
267
+ ## Dataset Card Contact
268
+
269
+ Please use the [Community Tab](https://huggingface.co/datasets/imageomics/ToL-EDA/discussions) for questions. More information on the _published_ project is available on our [project website](https://imageomics.github.io/bioclip/) and at the references therein.