Clarified some file descriptions and updated links now that check_taxa script has been merged in open_clip repo.
Browse files
README.md
CHANGED
|
@@ -10,38 +10,32 @@ This repo contains the analysis of the TreeOfLife10M dataset as it's being craft
|
|
| 10 |
### Data
|
| 11 |
|
| 12 |
The `data` folder contains
|
| 13 |
-
- `statistics.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the
|
| 14 |
-
associated taxa information for the image. This is the file that will be updated, while preserving the `v1-dev-names.csv` file for ease of comparison.
|
| 15 |
- `stats_avg_std_byClass.csv`: average and standard distribution of images given by class in `statistics.csv`. This is for both all
|
| 16 |
images, and images that have labels.
|
| 17 |
|
| 18 |
-
- `v1-dev-names.csv`: the metadata and identifiers for all images in the dataset. This includes original data source, unique identifier within TreeOfLife10M, and the
|
| 19 |
-
associated taxa information for the image.
|
| 20 |
- `taxa_counts.csv`: count of distinct lower taxa within each higher taxon from `kingdom` down to
|
| 21 |
-
`genus`, though the genus count was interrupted and therefore is incomplete.
|
| 22 |
-
- `avg_std_byClass.csv`: average and standard distribution of images given by class. This is for both all
|
| 23 |
-
|
| 24 |
-
been performed on the taxonomic hierarchy prior to creation of this file.
|
| 25 |
-
- `tol_hierarchy_test.csv`: Subset of `v1-dev-names.csv` for testing the [`check_taxa` script](https://github.com/Imageomics/open_clip/tree/main/scripts/evobio10m) to ensure the hierarchy is properly filled in after data generation.
|
| 26 |
|
| 27 |
|
| 28 |
### Notebooks
|
| 29 |
|
| 30 |
The `notebooks` folder contains
|
| 31 |
-
- `ToL_stats_EDA.ipynb`: more full EDA of TreeOfLife10M dataset using `statistics.csv`.
|
| 32 |
- `ToL_stats_EDA.py`: py file paired to `ToL_stats_EDA.ipynb` to facilitate diff checking in case of cell text changes in notebook.
|
| 33 |
|
| 34 |
-
- `BioCLIP_data_viz.ipynb`: notebook with quick basic stats for `v1-dev-names.csv`, generates
|
| 35 |
-
`
|
| 36 |
-
- `BioCLIP_taxa_viz_bySource.ipynb`: generates data visualizations, in particular, the generation of
|
| 37 |
-
visualizations in visuals and some histograms. The treemaps produced in the notebook are interactive.
|
| 38 |
- `ToL_EDA.ipynb`: more full EDA of TreeOfLife10M dataset. Explores the labeling inconsistencies for
|
| 39 |
-
direction of standardization efforts.
|
| 40 |
-
- `missing_taxa_testGen.ipynb`: generates `tol_hierarchy_test.csv` to test `check_taxa` script. Also observes species labeled as `(unidentified)` in EOL data.
|
| 41 |
|
| 42 |
-
Note: run `pip install -r requirements.txt` before starting the notebooks.
|
| 43 |
|
| 44 |
### Visuals
|
| 45 |
|
| 46 |
Visualizations generated to demonstrate the distribution and diversity within the phyla of TreeOfLife10M.
|
| 47 |
-
There is also one for just the iNat21 data included.
|
|
|
|
| 10 |
### Data
|
| 11 |
|
| 12 |
The `data` folder contains
|
| 13 |
+
- `statistics.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 `v1-dev-names.csv` file for ease of comparison.
|
|
|
|
| 14 |
- `stats_avg_std_byClass.csv`: average and standard distribution of images given by class in `statistics.csv`. This is for both all
|
| 15 |
images, and images that have labels.
|
| 16 |
|
| 17 |
+
- `v1-dev-names.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 `v1-dev-names.csv`, though the genus count was interrupted and therefore is incomplete.
|
| 20 |
+
- `avg_std_byClass.csv`: average and standard distribution of images in `v1-dev-names.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 `v1-dev-names.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 |
|
| 24 |
### Notebooks
|
| 25 |
|
| 26 |
The `notebooks` folder contains
|
| 27 |
+
- `ToL_stats_EDA.ipynb`: more full EDA of TreeOfLife10M dataset using `statistics.csv`. To be updated as `statistics.csv` is updated, i.e., as the dateset is updated.
|
| 28 |
- `ToL_stats_EDA.py`: py file paired to `ToL_stats_EDA.ipynb` to facilitate diff checking in case of cell text changes in notebook.
|
| 29 |
|
| 30 |
+
- `BioCLIP_data_viz.ipynb`: notebook with quick basic stats for `v1-dev-names.csv`, generates `taxa_counts.csv`.
|
| 31 |
+
- `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.
|
|
|
|
|
|
|
| 32 |
- `ToL_EDA.ipynb`: more full EDA of TreeOfLife10M dataset. Explores the labeling inconsistencies for
|
| 33 |
+
direction of standardization efforts. Maintained for v1 reference, should not be updated.
|
| 34 |
+
- `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.
|
| 35 |
|
| 36 |
+
**Note:** run `pip install -r requirements.txt` before starting the visualization notebooks.
|
| 37 |
|
| 38 |
### Visuals
|
| 39 |
|
| 40 |
Visualizations generated to demonstrate the distribution and diversity within the phyla of TreeOfLife10M.
|
| 41 |
+
There is also one for just the iNat21 data included.
|