OpenWhistle commited on
Commit
ba7bef2
·
verified ·
1 Parent(s): e473502

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - audio-classification
4
+ tags:
5
+ - dolphin
6
+ - bioacoustics
7
+ - whistle-detection
8
+ - audio
9
+ - spectrogram
10
+ dataset_info:
11
+ config_name: review-sample
12
+ features:
13
+ - name: audio
14
+ dtype:
15
+ audio:
16
+ decode: false
17
+ - name: spectrogram
18
+ dtype: image
19
+ - name: label
20
+ dtype:
21
+ class_label:
22
+ names:
23
+ '0': noise
24
+ '1': whistle
25
+ - name: file_name
26
+ dtype: string
27
+ - name: recording
28
+ dtype: string
29
+ - name: onset
30
+ dtype: float64
31
+ - name: offset
32
+ dtype: float64
33
+ splits:
34
+ - name: train
35
+ num_bytes: 37497957.0
36
+ num_examples: 376
37
+ - name: test
38
+ num_bytes: 10431395.0
39
+ num_examples: 104
40
+ download_size: 38245514
41
+ dataset_size: 47929352.0
42
+ configs:
43
+ - config_name: default
44
+ data_files:
45
+ - split: test
46
+ path: data/test-*
47
+ - split: train
48
+ path: data/train-*
49
+ - split: validation
50
+ path: data/validation-*
51
+ - config_name: review-sample
52
+ data_files:
53
+ - split: train
54
+ path: review-sample/train-*
55
+ - split: test
56
+ path: review-sample/test-*
57
+ ---
58
+
59
+ # OpenWhistle CNN Dataset
60
+
61
+ `OpenWhistleNeurIPS26/OpenWhistle-CNN` is the public CNN dataset used for binary
62
+ dolphin whistle detection. It contains audio windows, spectrogram images, and
63
+ binary labels:
64
+
65
+ - `noise` (`label=0`)
66
+ - `whistle` (`label=1`)
67
+
68
+ The main dataset is the complete session-disjoint dataset used for training and
69
+ evaluation. A smaller deterministic `review-sample` config is also provided so
70
+ reviewers can inspect representative examples quickly.
71
+
72
+ ## Dataset contents
73
+
74
+ - Hugging Face repo: `OpenWhistleNeurIPS26/OpenWhistle-CNN`
75
+ - Public columns: `audio`, `spectrogram`, `label`, `file_name`, `recording`, `onset`, `offset`
76
+
77
+ ## Full dataset splits
78
+
79
+ | Split | Rows | Noise | Whistle | Sessions | Window hours |
80
+ | --- | ---: | ---: | ---: | ---: | ---: |
81
+ | `train` | 53,828 | 26,914 | 26,914 | 195 | 5.980885 |
82
+ | `validation` | 5,980 | 2,990 | 2,990 | 26 | 0.664445 |
83
+ | `test` | 16,708 | 8,354 | 8,354 | 261 | 1.856444 |
84
+ | **Total** | **76,516** | **38,258** | **38,258** | **482** | **8.501775** |
85
+
86
+ The `train` and `validation` splits come from the non-2019/2020 pool. The
87
+ `test` split is a manual 2019-2020 test split built from the full classification
88
+ `all` config.
89
+
90
+ ## Review sample
91
+
92
+ The `review-sample` config is a small deterministic subset of the same public
93
+ dataset. It was created only to make review and manual inspection easier. It is
94
+ not a replacement for the full dataset used for model development or reporting.
95
+
96
+ ### How the review sample was created
97
+
98
+ The review sample was designed to preserve the structure of the full dataset
99
+ while keeping the download small enough for quick manual inspection. The sample
100
+ keeps the same binary label definition as the full dataset and preserves the
101
+ train/test separation: reviewer training examples are drawn from the original
102
+ training and validation data, while reviewer test examples are drawn only from
103
+ the original test data.
104
+
105
+ Within each reviewer split, examples were sampled separately for `noise`
106
+ (`label=0`) and `whistle` (`label=1`) so that both classes are equally
107
+ represented. This avoids a reviewer sample dominated by one class and makes it
108
+ easier to inspect positives and negatives side by side. The target sizes were
109
+ chosen to keep the same approximate train/test ratio as the full CNN dataset:
110
+ 376 examples for `train` and 104 examples for `test`, for 480 examples total.
111
+
112
+ Sampling was deterministic, using seed `42`, so the same review sample can be
113
+ rebuilt exactly from the prepared public dataset. The resulting config is named
114
+ `review-sample`.
115
+
116
+ ### Review sample size
117
+
118
+ | Split | Rows | Noise | Whistle | Source splits | Source rows |
119
+ | --- | ---: | ---: | ---: | --- | ---: |
120
+ | `train` | 376 | 188 | 188 | `train`, `validation` | 59,808 |
121
+ | `test` | 104 | 52 | 52 | `test` | 16,708 |
122
+ | **Total** | **480** | **240** | **240** | | |
123
+
124
+ ## Loading the data
125
+
126
+ ```python
127
+ from datasets import load_dataset
128
+
129
+ full = load_dataset("OpenWhistleNeurIPS26/OpenWhistle-CNN")
130
+ review = load_dataset("OpenWhistleNeurIPS26/OpenWhistle-CNN", "review-sample")
131
+ ```
artifacts/openwhistle_simple_metadata.csv ADDED
The diff for this file is too large to render. See raw diff
 
artifacts/summary.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "trainval_dataset_dir": "cnn_dataset/datasets/no_2019_2020_with_session_noise_split_audio",
3
+ "test_dataset_dir": "cnn_dataset/datasets/classification_test_with_session_noise_audio_v3",
4
+ "splits": [
5
+ {
6
+ "split_name": "train",
7
+ "rows": 53828,
8
+ "positives": 26914,
9
+ "noise": 26914,
10
+ "sessions": 195,
11
+ "window_hours": 5.980885373055554
12
+ },
13
+ {
14
+ "split_name": "validation",
15
+ "rows": 5980,
16
+ "positives": 2990,
17
+ "noise": 2990,
18
+ "sessions": 26,
19
+ "window_hours": 0.664445029166663
20
+ },
21
+ {
22
+ "split_name": "test",
23
+ "rows": 16708,
24
+ "positives": 8354,
25
+ "noise": 8354,
26
+ "sessions": 261,
27
+ "window_hours": 1.8564444458333356
28
+ }
29
+ ],
30
+ "total_rows": 76516,
31
+ "total_window_hours": 8.501774848055552
32
+ }
data/test-00000-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba78d68df68b791989957fc142b9dda8f13f522eb2f537f951387f02881e93a6
3
+ size 236229103
data/test-00001-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1421483b1c3c72e08d62cd7f91452b2e135aa721f6b8014067d93030625c8d6f
3
+ size 238537606
data/test-00002-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4250d5e366a60f5f10b4f73d7251cb5f710e01463cb4bcd5a13822d53ee64a73
3
+ size 239884146
data/test-00003-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4acf4ea003cc21f6b6133282d8f1745846df0ceb9fb94b805bd0e033e154ff04
3
+ size 237279681
data/train-00000-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c158491515c490e71f82d90910d9429d5d55eac47917872fb05ec4156b22b558
3
+ size 433692615
data/train-00001-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a95afaabdf7969e6c885ca6712db1075c6ba162363c0c4e5d5fca5213089f90b
3
+ size 412592730
data/train-00002-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a5195af479562b052fc05c04a73cc5d5dd0c1da8ab88bdf3e69799281247b0f
3
+ size 458065165
data/train-00003-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1382dcf1b299ada4d9786acbb72851a72b39ace657e606964b0f0e22c855439b
3
+ size 453617719
data/train-00004-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:568734389fe75fae90e1c25b8880fd6a37ef76720b1b0efb1e63a0a473ad9cd9
3
+ size 451342834
data/train-00005-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6804719886054b8d64dbc9477cceb3236c6d41f963a7fc77c24087e5c86afa
3
+ size 353640157
data/train-00006-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd2f0a432ad235196dc170fbf92c63e7569df40166a4cc85437dfded8bbb5a19
3
+ size 373495792
data/train-00007-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f07b38bd9cf0991d7a91877bacdd83f86929c8ebf8fe4a078eeb821e15a04d71
3
+ size 337989379
data/train-00008-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0041f65813b3115013e2d6997154de6d776156012155db866eaf6deda26ed1f1
3
+ size 419212690
data/train-00009-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2e78cd47973998e1a0a63aa330052943618e5b98cccf9ebbfd7fdc29ac59d58
3
+ size 421406105
data/train-00010-of-00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55ea34141144eab86d639b421ff9b1f77913e59c8909ede2dce2916e89ba5000
3
+ size 474692076
data/validation-00000-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af2acc5d0715487589ca1c5eaec51898a80703b9b359df344946b651811dbec0
3
+ size 268297764
data/validation-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f734b891cdd60208ab7017e7a72491d8116cf4aa90dabfe1023a5c8c7c62ee4c
3
+ size 275111906
review-sample/test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e72b96e7291f529d5fe7e7d382af9f5093c0e0834981efa0d9827a27fa0a878
3
+ size 5908132
review-sample/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b9b942bd20d88334289f92272c180d2d4fc60d75e722313355ec472e42e2b4
3
+ size 32337382