Datasets:
parquet-converter
commited on
Commit
•
17d6fd8
1
Parent(s):
b966160
Update parquet files
Browse files- ASCEND.py +0 -139
- ASCEND.py.lock +0 -0
- README.md +0 -116
- dataset_infos.json +0 -1
- waves.tar.bz2 → main/ascend-test.parquet +2 -2
- main/ascend-train-00000-of-00002.parquet +3 -0
- main/ascend-train-00001-of-00002.parquet +3 -0
- main/ascend-validation.parquet +3 -0
- speakers.csv +0 -24
- test_metadata.csv +0 -0
- train_metadata.csv +0 -0
- validation_metadata.csv +0 -0
ASCEND.py
DELETED
@@ -1,139 +0,0 @@
|
|
1 |
-
# coding=utf-8
|
2 |
-
# Copyright 2021 The HuggingFace Datasets Authors and the current dataset script contributor.
|
3 |
-
#
|
4 |
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
-
# you may not use this file except in compliance with the License.
|
6 |
-
# You may obtain a copy of the License at
|
7 |
-
#
|
8 |
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
-
#
|
10 |
-
# Unless required by applicable law or agreed to in writing, software
|
11 |
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
-
# See the License for the specific language governing permissions and
|
14 |
-
# limitations under the License.
|
15 |
-
""" Common Voice Dataset"""
|
16 |
-
|
17 |
-
from datasets import AutomaticSpeechRecognition
|
18 |
-
|
19 |
-
|
20 |
-
import datasets
|
21 |
-
import os
|
22 |
-
import pandas as pd
|
23 |
-
|
24 |
-
|
25 |
-
_CITATION = """\
|
26 |
-
@inproceedings{lovenia2021ascend,
|
27 |
-
title = {ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in Multi-turn Conversation},
|
28 |
-
author = {Lovenia, Holy and Cahyawijaya, Samuel and Winata, Genta Indra and Xu, Peng and Yan, Xu and Liu, Zihan and Frieske, Rita and Yu, Tiezheng and Dai, Wenliang and Barezi, Elham J and others},
|
29 |
-
booktitle = {Proceedings of the International Conference on Language Resources and Evaluation, {LREC} 2022, 20-25 June 2022, Lu Palais du Pharo, France},
|
30 |
-
publisher = {European Language Resources Association},
|
31 |
-
year = {2022},
|
32 |
-
pages = {}
|
33 |
-
}
|
34 |
-
"""
|
35 |
-
|
36 |
-
_DESCRIPTION = """\
|
37 |
-
ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resource of spontaneous multi-turn conversational dialogue Chinese-English code-switching corpus collected in Hong Kong. ASCEND consists of 10.62 hours of spontaneous speech with a total of ~12.3K utterances. The corpus is split into 3 sets: training, validation, and test with a ratio of 8:1:1 while maintaining a balanced gender proportion on each set.
|
38 |
-
"""
|
39 |
-
|
40 |
-
_HOMEPAGE = "https://huggingface.co/datasets/CAiRE/ASCEND"
|
41 |
-
|
42 |
-
_URL = "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/"
|
43 |
-
_URLS = {
|
44 |
-
"train": _URL + "train_metadata.csv",
|
45 |
-
"test": _URL + "test_metadata.csv",
|
46 |
-
"validation": _URL + "validation_metadata.csv",
|
47 |
-
"waves": "https://huggingface.co/datasets/CAiRE/ASCEND/resolve/main/waves.tar.bz2",
|
48 |
-
}
|
49 |
-
|
50 |
-
|
51 |
-
class ASCENDConfig(datasets.BuilderConfig):
|
52 |
-
"""BuilderConfig for ASCEND."""
|
53 |
-
|
54 |
-
def __init__(self, name="main", **kwargs):
|
55 |
-
"""
|
56 |
-
Args:
|
57 |
-
**kwargs: keyword arguments forwarded to super.
|
58 |
-
"""
|
59 |
-
super(ASCENDConfig, self).__init__(name, **kwargs)
|
60 |
-
|
61 |
-
|
62 |
-
class ASCEND(datasets.GeneratorBasedBuilder):
|
63 |
-
"""ASCEND: A Spontaneous Chinese-English Dataset for code-switching. Snapshot date: 5 January 2022."""
|
64 |
-
|
65 |
-
BUILDER_CONFIGS = [
|
66 |
-
ASCENDConfig(
|
67 |
-
name="main",
|
68 |
-
version=datasets.Version("1.0.0", ""),
|
69 |
-
description=_DESCRIPTION,
|
70 |
-
)
|
71 |
-
]
|
72 |
-
|
73 |
-
def _info(self):
|
74 |
-
features = datasets.Features(
|
75 |
-
{
|
76 |
-
"id": datasets.Value("string"),
|
77 |
-
"path": datasets.Value("string"),
|
78 |
-
"audio": datasets.Audio(sampling_rate=16_000),
|
79 |
-
"transcription": datasets.Value("string"),
|
80 |
-
"duration": datasets.Value("float32"),
|
81 |
-
"language": datasets.Value("string"),
|
82 |
-
"original_speaker_id": datasets.Value("int64"),
|
83 |
-
"session_id": datasets.Value("int64"),
|
84 |
-
"topic": datasets.Value("string"),
|
85 |
-
}
|
86 |
-
)
|
87 |
-
return datasets.DatasetInfo(
|
88 |
-
description=_DESCRIPTION,
|
89 |
-
features=features,
|
90 |
-
supervised_keys=None,
|
91 |
-
homepage=_HOMEPAGE,
|
92 |
-
citation=_CITATION,
|
93 |
-
task_templates=[AutomaticSpeechRecognition(audio_column="audio", transcription_column="transcription")],
|
94 |
-
)
|
95 |
-
|
96 |
-
def _split_generators(self, dl_manager):
|
97 |
-
downloaded_files = dl_manager.download_and_extract(_URLS)
|
98 |
-
|
99 |
-
return [
|
100 |
-
datasets.SplitGenerator(
|
101 |
-
name=datasets.Split.TRAIN,
|
102 |
-
gen_kwargs={
|
103 |
-
"metadata_path": downloaded_files["train"],
|
104 |
-
"wave_path": downloaded_files["waves"],
|
105 |
-
},
|
106 |
-
),
|
107 |
-
datasets.SplitGenerator(
|
108 |
-
name=datasets.Split.TEST,
|
109 |
-
gen_kwargs={
|
110 |
-
"metadata_path": downloaded_files["test"],
|
111 |
-
"wave_path": downloaded_files["waves"],
|
112 |
-
},
|
113 |
-
),
|
114 |
-
datasets.SplitGenerator(
|
115 |
-
name=datasets.Split.VALIDATION,
|
116 |
-
gen_kwargs={
|
117 |
-
"metadata_path": downloaded_files["validation"],
|
118 |
-
"wave_path": downloaded_files["waves"],
|
119 |
-
},
|
120 |
-
),
|
121 |
-
]
|
122 |
-
|
123 |
-
def _generate_examples(self, metadata_path, wave_path):
|
124 |
-
print(metadata_path)
|
125 |
-
metadata_df = pd.read_csv(metadata_path)
|
126 |
-
|
127 |
-
for index, row in metadata_df.iterrows():
|
128 |
-
example = {
|
129 |
-
"id": str(index).zfill(5),
|
130 |
-
"path": os.path.join(wave_path, row["file_name"]),
|
131 |
-
"audio": os.path.join(wave_path, row["file_name"]),
|
132 |
-
"transcription": row["transcription"],
|
133 |
-
"duration": row["duration"],
|
134 |
-
"language": row["language"],
|
135 |
-
"original_speaker_id": row["original_speaker_id"],
|
136 |
-
"session_id": row["session_id"],
|
137 |
-
"topic": row["topic"],
|
138 |
-
}
|
139 |
-
yield index, example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ASCEND.py.lock
DELETED
File without changes
|
README.md
DELETED
@@ -1,116 +0,0 @@
|
|
1 |
-
---
|
2 |
-
annotations_creators:
|
3 |
-
- expert-generated
|
4 |
-
language_creators:
|
5 |
-
- crowdsourced
|
6 |
-
language:
|
7 |
-
- en
|
8 |
-
- zh
|
9 |
-
license:
|
10 |
-
- cc-by-sa-4.0
|
11 |
-
multilinguality:
|
12 |
-
- multilingual
|
13 |
-
size_categories:
|
14 |
-
- 10K<n<100K
|
15 |
-
source_datasets:
|
16 |
-
- original
|
17 |
-
task_categories:
|
18 |
-
- automatic-speech-recognition
|
19 |
-
task_ids: []
|
20 |
-
pretty_name: 'ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in
|
21 |
-
Multi-turn Conversation'
|
22 |
-
tags:
|
23 |
-
- speech-recognition
|
24 |
-
- code-switching
|
25 |
-
---
|
26 |
-
|
27 |
-
# Dataset Card for ASCEND
|
28 |
-
|
29 |
-
## Table of Contents
|
30 |
-
- [Dataset Description](#dataset-description)
|
31 |
-
- [Dataset Summary](#dataset-summary)
|
32 |
-
- [Supported Tasks](#supported-tasks-and-leaderboards)
|
33 |
-
- [Languages](#languages)
|
34 |
-
- [Usage](#usage)
|
35 |
-
- [Dataset Structure](#dataset-structure)
|
36 |
-
- [Data Splits](#data-instances)
|
37 |
-
- [Additional Information](#additional-information)
|
38 |
-
- [Licensing Information](#licensing-information)
|
39 |
-
- [Citation Information](#citation-information)
|
40 |
-
|
41 |
-
## Dataset Description
|
42 |
-
|
43 |
-
- **Homepage:** [Needs More Information]
|
44 |
-
- **Repository:** [Needs More Information]
|
45 |
-
- **Paper:** https://arxiv.org/abs/2112.06223
|
46 |
-
- **Leaderboard:** [Needs More Information]
|
47 |
-
- **Point of Contact:** [Needs More Information]
|
48 |
-
|
49 |
-
### Dataset Summary
|
50 |
-
|
51 |
-
ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resource of spontaneous multi-turn conversational dialogue Chinese-English code-switching corpus collected in Hong Kong. ASCEND consists of 10.62 hours of spontaneous speech with a total of ~12.3K utterances. The corpus is split into 3 sets: training, validation, and test with a ratio of 8:1:1 while maintaining a balanced gender proportion on each set.
|
52 |
-
|
53 |
-
### Supported Tasks and Leaderboards
|
54 |
-
|
55 |
-
Code-switching
|
56 |
-
|
57 |
-
### Languages
|
58 |
-
|
59 |
-
Chinese and English
|
60 |
-
|
61 |
-
## Usage
|
62 |
-
|
63 |
-
To obtain the full dataset (complete with train, validation, and test set), simply run this:
|
64 |
-
|
65 |
-
```
|
66 |
-
import datasets
|
67 |
-
dataset = datasets.load_dataset("CAiRE/ASCEND")
|
68 |
-
```
|
69 |
-
|
70 |
-
## Dataset Structure
|
71 |
-
|
72 |
-
A typical data point comprises the path to the audio file, the loaded audio array, and its transcription. Additional fields include datapoint id, duration, language, speaker id, session id, and topic.
|
73 |
-
|
74 |
-
```
|
75 |
-
{
|
76 |
-
'id': '00644',
|
77 |
-
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/ses2_spk3_L13101_189.900_5.490.wav',
|
78 |
-
'audio': {
|
79 |
-
'path': '.cache/huggingface/datasets/downloads/extracted/f0b33b5266cd9452ee310eef3577cf7adb7f29aa54dbff74b9a8ee406a55d614/waves/ses2_spk3_L13101_189.900_5.490.wav',
|
80 |
-
'array': array([-6.1035156e-05, -1.8310547e-04, 3.0517578e-05, ...,
|
81 |
-
0.0000000e+00, -3.0517578e-05, 0.0000000e+00
|
82 |
-
], dtype = float32),
|
83 |
-
'sampling_rate': 16000
|
84 |
-
},
|
85 |
-
'transcription': '因为你不可能邀你的female friends去说走我们去play basketball',
|
86 |
-
'duration': 5.489999771118164,
|
87 |
-
'language': 'mixed',
|
88 |
-
'original_speaker_id': 3,
|
89 |
-
'session_id': 2,
|
90 |
-
'topic': 'sports'
|
91 |
-
}
|
92 |
-
```
|
93 |
-
|
94 |
-
### Data Splits
|
95 |
-
|
96 |
-
Number of utterances: 9,869 train, 1,130 validation, and 1,315 test.
|
97 |
-
|
98 |
-
## Additional Information
|
99 |
-
|
100 |
-
For comprehensive explanations, please check [our paper](https://arxiv.org/pdf/2112.06223.pdf).
|
101 |
-
|
102 |
-
### Licensing Information
|
103 |
-
|
104 |
-
Creative Common Attribution Share-Alike 4.0 International (CC-BY-SA 4.0)
|
105 |
-
|
106 |
-
### Citation Information
|
107 |
-
|
108 |
-
If you use our dataset, please cite us:
|
109 |
-
|
110 |
-
```
|
111 |
-
@inproceedings{lovenia2022ascend,
|
112 |
-
title={ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in Multi-turn Conversation},
|
113 |
-
author={Lovenia, Holy and Cahyawijaya, Samuel and Winata, Genta Indra and Xu, Peng and Yan, Xu and Liu, Zihan and Frieske, Rita and Yu, Tiezheng and Dai, Wenliang and Barezi, Elham J and others},
|
114 |
-
booktitle={Proceedings of the 13th Language Resources and Evaluation Conference (LREC)},
|
115 |
-
year={2022}
|
116 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dataset_infos.json
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"train": {"description": "ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resource of spontaneous multi-turn conversational dialogue Chinese-English code-switching corpus collected in Hong Kong. ASCEND consists of 10.62 hours of spontaneous speech with a total of ~12.3K utterances. The corpus is split into 3 sets: training, validation, and test with a ratio of 8:1:1 while maintaining a balanced gender proportion on each set.\n", "citation": "@inproceedings{lovenia2021ascend,\n title = {ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in Multi-turn Conversation},\n author = {Lovenia, Holy and Cahyawijaya, Samuel and Winata, Genta Indra and Xu, Peng and Yan, Xu and Liu, Zihan and Frieske, Rita and Yu, Tiezheng and Dai, Wenliang and Barezi, Elham J and others},\n booktitle = {Proceedings of the International Conference on Language Resources and Evaluation, {LREC} 2022, 20-25 June 2022, Lu Palais du Pharo, France},\n publisher = {European Language Resources Association},\n year = {2022},\n pages = {}\n}\n", "homepage": "https://huggingface.co/datasets/CAiRE/ASCEND", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "path": {"dtype": "string", "id": null, "_type": "Value"}, "audio": {"sampling_rate": 16000, "mono": true, "decode": true, "id": null, "_type": "Audio"}, "transcription": {"dtype": "string", "id": null, "_type": "Value"}, "duration": {"dtype": "float32", "id": null, "_type": "Value"}, "language": {"dtype": "string", "id": null, "_type": "Value"}, "original_speaker_id": {"dtype": "int64", "id": null, "_type": "Value"}, "session_id": {"dtype": "int64", "id": null, "_type": "Value"}, "topic": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": [{"task": "automatic-speech-recognition", "audio_column": "audio", "transcription_column": "transcription"}], "builder_name": "ascend", "config_name": "train", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 4316724, "num_examples": 9869, "dataset_name": "ascend"}, "test": {"name": "test", "num_bytes": 559170, "num_examples": 1315, "dataset_name": "ascend"}, "validation": {"name": "validation", "num_bytes": 489562, "num_examples": 1130, "dataset_name": "ascend"}}, "download_checksums": {"https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/train_metadata.csv": {"num_bytes": 1081181, "checksum": "4cbdf90fe9bf53640bfc285e2539b468a6e412daeb17c36a1b5da478cd9f5b29"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/test_metadata.csv": {"num_bytes": 127658, "checksum": "15689bc1c1a0bc29b250f63221576392b627da9cc1d80e51bb1a422118b9732c"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/validation_metadata.csv": {"num_bytes": 118552, "checksum": "6e53e362991b23ffa49ed991c6062a51d8f286747f341e566c897c02bee72459"}, "https://huggingface.co/datasets/CAiRE/ASCEND/resolve/main/waves.tar.bz2": {"num_bytes": 929707032, "checksum": "b35cc295f1310535a8e250d534aee0adeb90bccbc027a442cdbef81146894529"}}, "download_size": 931034423, "post_processing_size": null, "dataset_size": 5365456, "size_in_bytes": 936399879}, "validation": {"description": "ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resource of spontaneous multi-turn conversational dialogue Chinese-English code-switching corpus collected in Hong Kong. ASCEND consists of 10.62 hours of spontaneous speech with a total of ~12.3K utterances. The corpus is split into 3 sets: training, validation, and test with a ratio of 8:1:1 while maintaining a balanced gender proportion on each set.\n", "citation": "@inproceedings{lovenia2021ascend,\n title = {ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in Multi-turn Conversation},\n author = {Lovenia, Holy and Cahyawijaya, Samuel and Winata, Genta Indra and Xu, Peng and Yan, Xu and Liu, Zihan and Frieske, Rita and Yu, Tiezheng and Dai, Wenliang and Barezi, Elham J and others},\n booktitle = {Proceedings of the International Conference on Language Resources and Evaluation, {LREC} 2022, 20-25 June 2022, Lu Palais du Pharo, France},\n publisher = {European Language Resources Association},\n year = {2022},\n pages = {}\n}\n", "homepage": "https://huggingface.co/datasets/CAiRE/ASCEND", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "path": {"dtype": "string", "id": null, "_type": "Value"}, "audio": {"sampling_rate": 16000, "mono": true, "decode": true, "id": null, "_type": "Audio"}, "transcription": {"dtype": "string", "id": null, "_type": "Value"}, "duration": {"dtype": "float32", "id": null, "_type": "Value"}, "language": {"dtype": "string", "id": null, "_type": "Value"}, "original_speaker_id": {"dtype": "int64", "id": null, "_type": "Value"}, "session_id": {"dtype": "int64", "id": null, "_type": "Value"}, "topic": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": [{"task": "automatic-speech-recognition", "audio_column": "audio", "transcription_column": "transcription"}], "builder_name": "ascend", "config_name": "validation", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 4316724, "num_examples": 9869, "dataset_name": "ascend"}, "test": {"name": "test", "num_bytes": 559170, "num_examples": 1315, "dataset_name": "ascend"}, "validation": {"name": "validation", "num_bytes": 489562, "num_examples": 1130, "dataset_name": "ascend"}}, "download_checksums": {"https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/train_metadata.csv": {"num_bytes": 1081181, "checksum": "4cbdf90fe9bf53640bfc285e2539b468a6e412daeb17c36a1b5da478cd9f5b29"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/test_metadata.csv": {"num_bytes": 127658, "checksum": "15689bc1c1a0bc29b250f63221576392b627da9cc1d80e51bb1a422118b9732c"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/validation_metadata.csv": {"num_bytes": 118552, "checksum": "6e53e362991b23ffa49ed991c6062a51d8f286747f341e566c897c02bee72459"}, "https://huggingface.co/datasets/CAiRE/ASCEND/resolve/main/waves.tar.bz2": {"num_bytes": 929707032, "checksum": "b35cc295f1310535a8e250d534aee0adeb90bccbc027a442cdbef81146894529"}}, "download_size": 931034423, "post_processing_size": null, "dataset_size": 5365456, "size_in_bytes": 936399879}, "test": {"description": "ASCEND (A Spontaneous Chinese-English Dataset) introduces a high-quality resource of spontaneous multi-turn conversational dialogue Chinese-English code-switching corpus collected in Hong Kong. ASCEND consists of 10.62 hours of spontaneous speech with a total of ~12.3K utterances. The corpus is split into 3 sets: training, validation, and test with a ratio of 8:1:1 while maintaining a balanced gender proportion on each set.\n", "citation": "@inproceedings{lovenia2021ascend,\n title = {ASCEND: A Spontaneous Chinese-English Dataset for Code-switching in Multi-turn Conversation},\n author = {Lovenia, Holy and Cahyawijaya, Samuel and Winata, Genta Indra and Xu, Peng and Yan, Xu and Liu, Zihan and Frieske, Rita and Yu, Tiezheng and Dai, Wenliang and Barezi, Elham J and others},\n booktitle = {Proceedings of the International Conference on Language Resources and Evaluation, {LREC} 2022, 20-25 June 2022, Lu Palais du Pharo, France},\n publisher = {European Language Resources Association},\n year = {2022},\n pages = {}\n}\n", "homepage": "https://huggingface.co/datasets/CAiRE/ASCEND", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "path": {"dtype": "string", "id": null, "_type": "Value"}, "audio": {"sampling_rate": 16000, "mono": true, "decode": true, "id": null, "_type": "Audio"}, "transcription": {"dtype": "string", "id": null, "_type": "Value"}, "duration": {"dtype": "float32", "id": null, "_type": "Value"}, "language": {"dtype": "string", "id": null, "_type": "Value"}, "original_speaker_id": {"dtype": "int64", "id": null, "_type": "Value"}, "session_id": {"dtype": "int64", "id": null, "_type": "Value"}, "topic": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": [{"task": "automatic-speech-recognition", "audio_column": "audio", "transcription_column": "transcription"}], "builder_name": "ascend", "config_name": "test", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 4316724, "num_examples": 9869, "dataset_name": "ascend"}, "test": {"name": "test", "num_bytes": 559170, "num_examples": 1315, "dataset_name": "ascend"}, "validation": {"name": "validation", "num_bytes": 489562, "num_examples": 1130, "dataset_name": "ascend"}}, "download_checksums": {"https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/train_metadata.csv": {"num_bytes": 1081181, "checksum": "4cbdf90fe9bf53640bfc285e2539b468a6e412daeb17c36a1b5da478cd9f5b29"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/test_metadata.csv": {"num_bytes": 127658, "checksum": "15689bc1c1a0bc29b250f63221576392b627da9cc1d80e51bb1a422118b9732c"}, "https://huggingface.co/datasets/CAiRE/ASCEND/raw/main/validation_metadata.csv": {"num_bytes": 118552, "checksum": "6e53e362991b23ffa49ed991c6062a51d8f286747f341e566c897c02bee72459"}, "https://huggingface.co/datasets/CAiRE/ASCEND/resolve/main/waves.tar.bz2": {"num_bytes": 929707032, "checksum": "b35cc295f1310535a8e250d534aee0adeb90bccbc027a442cdbef81146894529"}}, "download_size": 931034423, "post_processing_size": null, "dataset_size": 5365456, "size_in_bytes": 936399879}}
|
|
|
|
waves.tar.bz2 → main/ascend-test.parquet
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:319874806f6e41d7c5b7f3261fcfc9d2a59e7a4ba55da7eea5a8c2f9be6c0eba
|
3 |
+
size 105681288
|
main/ascend-train-00000-of-00002.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bb94578d122449e7a241307dc2e5810bd09f7db1dd33b08916a60c3b5174ec29
|
3 |
+
size 620996221
|
main/ascend-train-00001-of-00002.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2274ed235f7d07fd67f63eec1fd173d49c1211fc28d50c324567ce5d4340b9ad
|
3 |
+
size 389831689
|
main/ascend-validation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9b51a5c8fe834428c563daca0dce84215e479f2f864da4805860fe88017931e
|
3 |
+
size 106469443
|
speakers.csv
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
speaker_id,age,gender,split,years_in_english_study,english_score
|
2 |
-
1,23,female,train,17,6
|
3 |
-
2,22,male,train,13,6
|
4 |
-
3,25,male,test,15,6
|
5 |
-
4,24,male,train,10,7.5
|
6 |
-
5,24,female,train,12,7
|
7 |
-
6,30,female,train,12,7
|
8 |
-
7,23,female,val,17,7
|
9 |
-
8,23,female,train,15,6
|
10 |
-
9,27,male,train,12,6
|
11 |
-
10,23,male,train,12,6
|
12 |
-
11,23,female,train,16,8
|
13 |
-
12,23,male,val,10,5.5
|
14 |
-
13,23,female,train,16,7
|
15 |
-
14,22,female,train,12,6.5
|
16 |
-
15,19,female,train,8,7
|
17 |
-
16,26,male,train,15,6.5
|
18 |
-
17,24,female,test,11,6.5
|
19 |
-
18,23,male,train,5,6.5
|
20 |
-
19,26,male,train,16,7
|
21 |
-
20,26,female,val,18,7.5
|
22 |
-
21,23,female,train,15,6.5
|
23 |
-
24,27,male,train,17,6
|
24 |
-
26,23,female,train,10,7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test_metadata.csv
DELETED
The diff for this file is too large to render.
See raw diff
|
|
train_metadata.csv
DELETED
The diff for this file is too large to render.
See raw diff
|
|
validation_metadata.csv
DELETED
The diff for this file is too large to render.
See raw diff
|
|