Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,73 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- Embeddings
|
| 5 |
+
- ACAV100M
|
| 6 |
+
- AE29H_float32
|
| 7 |
+
- nanowakeword
|
| 8 |
+
- noice
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# AE29H_float32
|
| 12 |
+
|
| 13 |
+
**Audio Embeddings ~29 hours** dataset contains **precomputed audio embeddings** designed for training **NanoWakeWord** models. The embeddings are intended to be used as **general-purpose negative training data**, meaning the audio does **not contain the target wake word or phrase**.
|
| 14 |
+
|
| 15 |
+
Unlike raw audio datasets, the files in this dataset contain **low-dimensional audio embeddings** extracted from audio clips using a pre-trained speech embedding model. These embeddings can be directly used as input features when training wake-word detection models with NanoWakeWord.
|
| 16 |
+
|
| 17 |
+
The goal of this dataset is to provide **diverse background audio representations** (speech, environmental noise, music, etc.) that help wake-word models learn to avoid false activations.
|
| 18 |
+
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# Dataset Source
|
| 22 |
+
|
| 23 |
+
The embeddings were generated from a subset of the **ACAV100M** dataset.
|
| 24 |
+
|
| 25 |
+
ACAV100M is a very large automatically curated audio-visual dataset created from millions of internet videos and designed for large-scale audio-visual learning. It contains diverse real-world audio such as speech, environmental sounds, music, and background noise.
|
| 26 |
+
|
| 27 |
+
For this dataset:
|
| 28 |
+
|
| 29 |
+
* A **20K subset (~2 days of audio)** from ACAV100M.
|
| 30 |
+
* Audio clips were processed and converted into embeddings suitable for wake-word training.
|
| 31 |
+
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
# Dataset Statistics
|
| 35 |
+
|
| 36 |
+
* **Shape:**
|
| 37 |
+
|
| 38 |
+
```
|
| 39 |
+
(21115, 16, 96)
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
* **Total samples:**
|
| 43 |
+
**21,115**
|
| 44 |
+
|
| 45 |
+
* **Feature dimensions:**
|
| 46 |
+
* **Embedding size:** 96
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
---
|
| 50 |
+
|
| 51 |
+
# Data Type
|
| 52 |
+
|
| 53 |
+
```
|
| 54 |
+
dtype: float32
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
**Value range**
|
| 58 |
+
|
| 59 |
+
```
|
| 60 |
+
min: -77.23914
|
| 61 |
+
max: 95.59355
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
---
|
| 65 |
+
|
| 66 |
+
# Intended Use
|
| 67 |
+
|
| 68 |
+
This dataset is intended for:
|
| 69 |
+
|
| 70 |
+
* Training **NanoWakeWord wake-word detection models**
|
| 71 |
+
* Providing **negative training examples**
|
| 72 |
+
* Improving **false-positive robustness**
|
| 73 |
+
* Training models that operate directly on **audio embeddings**
|