Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -80,6 +80,9 @@ The accompanying model trained on this dataset can be found here [EarthSpeciesPr
|
|
| 80 |
* Shared by: Earth Species Project
|
| 81 |
* Language(s) (NLP): English
|
| 82 |
|
|
|
|
|
|
|
|
|
|
| 83 |
|
| 84 |
## Usage
|
| 85 |
```python
|
|
@@ -93,8 +96,9 @@ print(dataset)
|
|
| 93 |
```python
|
| 94 |
import numpy as np
|
| 95 |
|
|
|
|
| 96 |
x = ds[0]
|
| 97 |
-
audio =
|
| 98 |
print(audio.shape)
|
| 99 |
# (503808,)
|
| 100 |
|
|
|
|
| 80 |
* Shared by: Earth Species Project
|
| 81 |
* Language(s) (NLP): English
|
| 82 |
|
| 83 |
+
### Coverage of taxonomic groups
|
| 84 |
+
The NatureLM-audio-training dataset, though diverse, still leans toward bird species.
|
| 85 |
+
![Species distribution][naturelm-audio-training_data_hierarchy_sunburst.png]
|
| 86 |
|
| 87 |
## Usage
|
| 88 |
```python
|
|
|
|
| 96 |
```python
|
| 97 |
import numpy as np
|
| 98 |
|
| 99 |
+
# Inspect the first example in the dataset
|
| 100 |
x = ds[0]
|
| 101 |
+
audio = x["audio"]["array"]
|
| 102 |
print(audio.shape)
|
| 103 |
# (503808,)
|
| 104 |
|