nkundiushuti commited on
Commit
5947705
·
verified ·
1 Parent(s): 69d3f0e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -11
README.md CHANGED
@@ -1,19 +1,21 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: metadata.parquet
7
  ---
8
 
9
  # BEANS-Next
10
 
11
  Audio files live under `audio/`. Metadata is in `metadata.parquet` with a
12
  `file_name` column (repo-relative paths) so the Hugging Face Dataset Viewer can
13
- play clips—**only** `file_name` uses that convention; tier 4 rows instead use
14
- `context_audio_paths` (list) and `query_audio_path` so the viewer is not confused
15
- by several `*_file_name`-like columns. Column `task` is the benchmark task id
16
- (same strings as the old `subset` column in other layouts). Column `tier` is an
17
- integer in ``{1,2,3,4}`` (legacy Parquet may still use directory strings; loaders
18
- normalize both). Example:
 
 
19
  `dataset["train"].filter(lambda x: x["task"] == "crow-description")`.
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
+ tags:
4
+ - audio
5
+ - bioacoustics
6
+ pretty_name: BEANS-Next
7
  ---
8
 
9
  # BEANS-Next
10
 
11
  Audio files live under `audio/`. Metadata is in `metadata.parquet` with a
12
  `file_name` column (repo-relative paths) so the Hugging Face Dataset Viewer can
13
+ play clips. Column `task` is the benchmark task id (same strings as the old
14
+ `subset` column in other layouts). Column `tier` is an integer in `{1,2,3,4}`.
15
+
16
+ Tier-4 multiaudio rows also include:
17
+ - `context_source_paths` (list of repo-relative `audio/*.wav` paths)
18
+ - `query_source_path` (repo-relative `audio/*.wav` path)
19
+
20
+ Example:
21
  `dataset["train"].filter(lambda x: x["task"] == "crow-description")`.