Datasets:

Multilinguality:
translation
Size Categories:
10K<n<100K
Language Creators:
expert-generated
Annotations Creators:
expert-generated
Source Datasets:
original
License:
albertvillanova HF staff commited on
Commit
ed6539d
1 Parent(s): 0f75b3a

Convert dataset to Parquet (#2)

Browse files

- Convert dataset to Parquet (89835d1cc6ea70d93839f6338a9d7dd6e69bedcf)
- Delete loading script (0feebfaaa053e2ba903133414784a568fcdbd273)
- Delete legacy dataset_infos.json (645577daa9c59eccafd6cad92543114be152476b)

README.md CHANGED
@@ -43,16 +43,25 @@ dataset_info:
43
  dtype: string
44
  splits:
45
  - name: train
46
- num_bytes: 4778409
47
  num_examples: 20000
48
  - name: test
49
- num_bytes: 493038
50
  num_examples: 2120
51
  - name: validation
52
- num_bytes: 477964
53
  num_examples: 2051
54
- download_size: 8135045
55
- dataset_size: 5749411
 
 
 
 
 
 
 
 
 
56
  ---
57
 
58
  # Dataset Card for Business Scene Dialogue
43
  dtype: string
44
  splits:
45
  - name: train
46
+ num_bytes: 4778291
47
  num_examples: 20000
48
  - name: test
49
+ num_bytes: 492986
50
  num_examples: 2120
51
  - name: validation
52
+ num_bytes: 477935
53
  num_examples: 2051
54
+ download_size: 1843443
55
+ dataset_size: 5749212
56
+ configs:
57
+ - config_name: default
58
+ data_files:
59
+ - split: train
60
+ path: data/train-*
61
+ - split: test
62
+ path: data/test-*
63
+ - split: validation
64
+ path: data/validation-*
65
  ---
66
 
67
  # Dataset Card for Business Scene Dialogue
bsd_ja_en.py DELETED
@@ -1,163 +0,0 @@
1
- # coding=utf-8
2
- # Copyright 2020 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
- """Japanese-English Business Scene Dialogue (BSD) dataset. """
16
-
17
-
18
- import json
19
-
20
- import datasets
21
-
22
-
23
- _CITATION = """\
24
- @inproceedings{rikters-etal-2019-designing,
25
- title = "Designing the Business Conversation Corpus",
26
- author = "Rikters, Matīss and
27
- Ri, Ryokan and
28
- Li, Tong and
29
- Nakazawa, Toshiaki",
30
- booktitle = "Proceedings of the 6th Workshop on Asian Translation",
31
- month = nov,
32
- year = "2019",
33
- address = "Hong Kong, China",
34
- publisher = "Association for Computational Linguistics",
35
- url = "https://www.aclweb.org/anthology/D19-5204",
36
- doi = "10.18653/v1/D19-5204",
37
- pages = "54--61"
38
- }
39
- """
40
-
41
-
42
- _DESCRIPTION = """\
43
- This is the Business Scene Dialogue (BSD) dataset,
44
- a Japanese-English parallel corpus containing written conversations
45
- in various business scenarios.
46
-
47
- The dataset was constructed in 3 steps:
48
- 1) selecting business scenes,
49
- 2) writing monolingual conversation scenarios according to the selected scenes, and
50
- 3) translating the scenarios into the other language.
51
-
52
- Half of the monolingual scenarios were written in Japanese
53
- and the other half were written in English.
54
-
55
- Fields:
56
- - id: dialogue identifier
57
- - no: sentence pair number within a dialogue
58
- - en_speaker: speaker name in English
59
- - ja_speaker: speaker name in Japanese
60
- - en_sentence: sentence in English
61
- - ja_sentence: sentence in Japanese
62
- - original_language: language in which monolingual scenario was written
63
- - tag: scenario
64
- - title: scenario title
65
- """
66
-
67
- _HOMEPAGE = "https://github.com/tsuruoka-lab/BSD"
68
-
69
- _LICENSE = "CC BY-NC-SA 4.0"
70
-
71
- _REPO = "https://raw.githubusercontent.com/tsuruoka-lab/BSD/master/"
72
-
73
- _URLs = {
74
- "train": _REPO + "train.json",
75
- "dev": _REPO + "dev.json",
76
- "test": _REPO + "test.json",
77
- }
78
-
79
-
80
- class BsdJaEn(datasets.GeneratorBasedBuilder):
81
- """Japanese-English Business Scene Dialogue (BSD) dataset."""
82
-
83
- VERSION = datasets.Version("1.0.0")
84
-
85
- def _info(self):
86
- features = datasets.Features(
87
- {
88
- "id": datasets.Value("string"),
89
- "tag": datasets.Value("string"),
90
- "title": datasets.Value("string"),
91
- "original_language": datasets.Value("string"),
92
- "no": datasets.Value("int32"),
93
- "en_speaker": datasets.Value("string"),
94
- "ja_speaker": datasets.Value("string"),
95
- "en_sentence": datasets.Value("string"),
96
- "ja_sentence": datasets.Value("string"),
97
- }
98
- )
99
- return datasets.DatasetInfo(
100
- description=_DESCRIPTION,
101
- features=features,
102
- supervised_keys=None,
103
- homepage=_HOMEPAGE,
104
- license=_LICENSE,
105
- citation=_CITATION,
106
- )
107
-
108
- def _split_generators(self, dl_manager):
109
- """Returns SplitGenerators."""
110
- data_dir = dl_manager.download_and_extract(_URLs)
111
-
112
- return [
113
- datasets.SplitGenerator(
114
- name=datasets.Split.TRAIN,
115
- gen_kwargs={
116
- "filepath": data_dir["train"],
117
- "split": "train",
118
- },
119
- ),
120
- datasets.SplitGenerator(
121
- name=datasets.Split.TEST,
122
- gen_kwargs={"filepath": data_dir["test"], "split": "test"},
123
- ),
124
- datasets.SplitGenerator(
125
- name=datasets.Split.VALIDATION,
126
- gen_kwargs={
127
- "filepath": data_dir["dev"],
128
- "split": "dev",
129
- },
130
- ),
131
- ]
132
-
133
- def _generate_examples(self, filepath, split):
134
- """Yields examples."""
135
-
136
- with open(filepath, encoding="utf-8") as f:
137
- data = json.load(f)
138
-
139
- for dialogue in data:
140
- id_ = dialogue["id"]
141
- tag = dialogue["tag"]
142
- title = dialogue["title"]
143
- original_language = dialogue["original_language"]
144
- conversation = dialogue["conversation"]
145
-
146
- for turn in conversation:
147
- sent_no = int(turn["no"])
148
- en_speaker = turn["en_speaker"]
149
- ja_speaker = turn["ja_speaker"]
150
- en_sentence = turn["en_sentence"]
151
- ja_sentence = turn["ja_sentence"]
152
-
153
- yield f"{id_}_{sent_no}", {
154
- "id": id_,
155
- "tag": tag,
156
- "title": title,
157
- "original_language": original_language,
158
- "no": sent_no,
159
- "en_speaker": en_speaker,
160
- "ja_speaker": ja_speaker,
161
- "en_sentence": en_sentence,
162
- "ja_sentence": ja_sentence,
163
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:933f2d25d1c62fb563fcf67892230d6941879b3deaf888ed4f6bb252e89d0f9a
3
+ size 171148
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73d758c92c7d5e156d8f07d39912bd068317d9f396cab5b6fc53b435a70a1296
3
+ size 1504882
data/validation-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34d6d252efc7d078a5cff0bb3450011cc0b2d75aef1b81a86e0523f8e9866616
3
+ size 167413
dataset_infos.json DELETED
@@ -1 +0,0 @@
1
- {"default": {"description": "This is the Business Scene Dialogue (BSD) dataset,\na Japanese-English parallel corpus containing written conversations\nin various business scenarios.\n\nThe dataset was constructed in 3 steps:\n 1) selecting business scenes,\n 2) writing monolingual conversation scenarios according to the selected scenes, and\n 3) translating the scenarios into the other language.\n\nHalf of the monolingual scenarios were written in Japanese\nand the other half were written in English.\n\nFields:\n- id: dialogue identifier\n- no: sentence pair number within a dialogue\n- en_speaker: speaker name in English\n- ja_speaker: speaker name in Japanese\n- en_sentence: sentence in English\n- ja_sentence: sentence in Japanese\n- original_language: language in which monolingual scenario was written\n- tag: scenario\n- title: scenario title\n", "citation": "@inproceedings{rikters-etal-2019-designing,\n title = \"Designing the Business Conversation Corpus\",\n author = \"Rikters, Mat\u012bss and\n Ri, Ryokan and\n Li, Tong and\n Nakazawa, Toshiaki\",\n booktitle = \"Proceedings of the 6th Workshop on Asian Translation\",\n month = nov,\n year = \"2019\",\n address = \"Hong Kong, China\",\n publisher = \"Association for Computational Linguistics\",\n url = \"https://www.aclweb.org/anthology/D19-5204\",\n doi = \"10.18653/v1/D19-5204\",\n pages = \"54--61\"\n}\n", "homepage": "https://github.com/tsuruoka-lab/BSD", "license": "CC BY-NC-SA 4.0", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "tag": {"dtype": "string", "id": null, "_type": "Value"}, "title": {"dtype": "string", "id": null, "_type": "Value"}, "original_language": {"dtype": "string", "id": null, "_type": "Value"}, "no": {"dtype": "int32", "id": null, "_type": "Value"}, "en_speaker": {"dtype": "string", "id": null, "_type": "Value"}, "ja_speaker": {"dtype": "string", "id": null, "_type": "Value"}, "en_sentence": {"dtype": "string", "id": null, "_type": "Value"}, "ja_sentence": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "builder_name": "bsd_ja_en", "config_name": "default", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 4778409, "num_examples": 20000, "dataset_name": "bsd_ja_en"}, "test": {"name": "test", "num_bytes": 493038, "num_examples": 2120, "dataset_name": "bsd_ja_en"}, "validation": {"name": "validation", "num_bytes": 477964, "num_examples": 2051, "dataset_name": "bsd_ja_en"}}, "download_checksums": {"https://raw.githubusercontent.com/tsuruoka-lab/BSD/master/train.json": {"num_bytes": 6740756, "checksum": "e011d1b02ed1acdbed5b677b54a3ceae26baaf6cd2a4fea64e4af4ff699c5ffb"}, "https://raw.githubusercontent.com/tsuruoka-lab/BSD/master/dev.json": {"num_bytes": 687409, "checksum": "43c11e7d9bdb4ab8ecc83114c82a77c596f98c8845af92fb74c8ca12cc9cfa5c"}, "https://raw.githubusercontent.com/tsuruoka-lab/BSD/master/test.json": {"num_bytes": 706880, "checksum": "9da3f8907147b2424671058c93d9f41179ddbd8d0c8298a3e8546c2703174d31"}}, "download_size": 8135045, "post_processing_size": null, "dataset_size": 5749411, "size_in_bytes": 13884456}}