parquet-converter commited on
Commit
8993c37
•
1 Parent(s): 47a8e13

Update parquet files

Browse files
.gitattributes DELETED
@@ -1,45 +0,0 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bin.* filter=lfs diff=lfs merge=lfs -text
5
- *.bz2 filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.model filter=lfs diff=lfs merge=lfs -text
12
- *.msgpack filter=lfs diff=lfs merge=lfs -text
13
- *.onnx filter=lfs diff=lfs merge=lfs -text
14
- *.ot filter=lfs diff=lfs merge=lfs -text
15
- *.parquet filter=lfs diff=lfs merge=lfs -text
16
- *.pb filter=lfs diff=lfs merge=lfs -text
17
- *.pt filter=lfs diff=lfs merge=lfs -text
18
- *.pth filter=lfs diff=lfs merge=lfs -text
19
- *.rar filter=lfs diff=lfs merge=lfs -text
20
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
21
- *.tar.* filter=lfs diff=lfs merge=lfs -text
22
- *.tflite filter=lfs diff=lfs merge=lfs -text
23
- *.tgz filter=lfs diff=lfs merge=lfs -text
24
- *.wasm filter=lfs diff=lfs merge=lfs -text
25
- *.xz filter=lfs diff=lfs merge=lfs -text
26
- *.zip filter=lfs diff=lfs merge=lfs -text
27
- *.zstandard filter=lfs diff=lfs merge=lfs -text
28
- *tfevents* filter=lfs diff=lfs merge=lfs -text
29
- # Audio files - uncompressed
30
- *.pcm filter=lfs diff=lfs merge=lfs -text
31
- *.sam filter=lfs diff=lfs merge=lfs -text
32
- *.raw filter=lfs diff=lfs merge=lfs -text
33
- # Audio files - compressed
34
- *.aac filter=lfs diff=lfs merge=lfs -text
35
- *.flac filter=lfs diff=lfs merge=lfs -text
36
- *.mp3 filter=lfs diff=lfs merge=lfs -text
37
- *.ogg filter=lfs diff=lfs merge=lfs -text
38
- *.wav filter=lfs diff=lfs merge=lfs -text
39
- data/valid_topic_split.json filter=lfs diff=lfs merge=lfs -text
40
- data/test.json filter=lfs diff=lfs merge=lfs -text
41
- data/test_random_split.json filter=lfs diff=lfs merge=lfs -text
42
- data/test_topic_split.json filter=lfs diff=lfs merge=lfs -text
43
- data/train.json filter=lfs diff=lfs merge=lfs -text
44
- data/valid.json filter=lfs diff=lfs merge=lfs -text
45
- data/valid_random_split.json filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
FaithDial.py DELETED
@@ -1,151 +0,0 @@
1
- # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor (Nouha Dziri).
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
- """FaithDial: A Faithful Benchmark for Information-Seeking Dialogue"""
15
-
16
-
17
- import json
18
-
19
- import datasets
20
-
21
-
22
- # Find for instance the citation on arxiv or on the dataset repo/website
23
- _CITATION = """\
24
- @article{dziri2022faithdial,
25
- title={FaithDial: A Faithful Benchmark for Information-Seeking Dialogue},
26
- author={Dziri, Nouha and Kamalloo, Ehsan and Milton, Sivan and Zaiane, Osmar and Yu, Mo and Ponti, Edoardo and Reddy, Siva},
27
- journal={arXiv preprint, arXiv:2204.10757},
28
- year={2022},
29
- url={https://arxiv.org/abs/2204.10757}
30
- }
31
- """
32
-
33
- # You can copy an official description
34
- _DESCRIPTION = """\
35
- FaithDial is a new benchmark for hallucination-free dialogues, created by manually editing hallucinated and uncooperative responses in Wizard of Wikipedia.
36
- """
37
-
38
- _HOMEPAGE = "https://mcgill-nlp.github.io/FaithDial/"
39
-
40
- _LICENSE = "MIT"
41
-
42
- # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
43
- # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
44
- _URLS = {
45
- "train": "data/train.json",
46
- "valid": "data/valid.json",
47
- "valid_random_split": "data/valid_random_split.json",
48
- "valid_topic_split": "data/valid_topic_split.json",
49
- "test": "data/test.json",
50
- "test_random_split": "data/test_random_split.json",
51
- "test_topic_split": "data/test_topic_split.json",
52
- }
53
-
54
-
55
- class FaithDialDataset(datasets.GeneratorBasedBuilder):
56
- """FaithDial is a new benchmark for hallucination-free dialogues."""
57
-
58
- VERSION = datasets.Version("1.0.0")
59
-
60
- # This is an example of a dataset with multiple configurations.
61
- # If you don't want/need to define several sub-sets in your dataset,
62
- # just remove the BUILDER_CONFIG_CLASS and the BUILDER_CONFIGS attributes.
63
-
64
- # If you need to make complex sub-parts in the datasets with configurable options
65
- # You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig
66
- # BUILDER_CONFIG_CLASS = MyBuilderConfig
67
-
68
- # You will be able to load one or the other configurations in the following list with
69
- # data = datasets.load_dataset('my_dataset', 'first_domain')
70
- # data = datasets.load_dataset('my_dataset', 'second_domain')
71
- BUILDER_CONFIGS = [
72
- datasets.BuilderConfig(name="plain_text", version=VERSION, description="Plain text"),
73
- ]
74
-
75
- DEFAULT_CONFIG_NAME = (
76
- "plain_text" # It's not mandatory to have a default configuration. Just use one if it make sense.
77
- )
78
-
79
- def _info(self):
80
- features = datasets.Features(
81
- {
82
- "dialog_idx": datasets.Value("int32"),
83
- "response": datasets.Value("string"),
84
- "original_response": datasets.Value("string"),
85
- "history": datasets.features.Sequence(datasets.Value("string")),
86
- "knowledge": datasets.Value("string"),
87
- "BEGIN": datasets.features.Sequence(datasets.Value("string")),
88
- "VRM": datasets.features.Sequence(datasets.Value("string")),
89
- }
90
- )
91
-
92
- return datasets.DatasetInfo(
93
- # This is the description that will appear on the datasets page.
94
- description=_DESCRIPTION,
95
- # This defines the different columns of the dataset and their types
96
- features=features, # Here we define them above because they are different between the two configurations
97
- # If there's a common (input, target) tuple from the features, uncomment supervised_keys line below and
98
- # specify them. They'll be used if as_supervised=True in builder.as_dataset.
99
- # supervised_keys=("sentence", "label"),
100
- # Homepage of the dataset for documentation
101
- homepage=_HOMEPAGE,
102
- # License for the dataset if available
103
- license=_LICENSE,
104
- # Citation for the dataset
105
- citation=_CITATION,
106
- )
107
-
108
- def _split_generators(self, dl_manager):
109
- # If several configurations are possible (listed in BUILDER_CONFIGS), the configuration selected by the user is in self.config.name
110
-
111
- # dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLS
112
- # It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
113
- # By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
114
- downloaded_files = dl_manager.download_and_extract(_URLS)
115
-
116
- split_dict = {
117
- "train": datasets.Split.TRAIN,
118
- "valid": datasets.Split.VALIDATION,
119
- "test": datasets.Split.TEST,
120
- }
121
-
122
- return [
123
- datasets.SplitGenerator(
124
- name=split_dict.get(split, split),
125
- # These kwargs will be passed to _generate_examples
126
- gen_kwargs={
127
- "filepath": downloaded_file,
128
- "split": split,
129
- },
130
- )
131
- for split, downloaded_file in sorted(downloaded_files.items(), key=lambda x: x[0])
132
- ]
133
-
134
- # method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
135
- def _generate_examples(self, filepath, split):
136
- # The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
137
- with open(filepath, encoding="utf-8") as f:
138
- data = json.load(f)
139
- key = 0
140
- for dialogue in data:
141
- for utterance in dialogue["utterances"]:
142
- yield key, {
143
- "dialog_idx": dialogue["dialog_idx"],
144
- "response": utterance["response"],
145
- "original_response": utterance["original_response"],
146
- "history": utterance["history"],
147
- "knowledge": utterance["knowledge"],
148
- "BEGIN": utterance["BEGIN"],
149
- "VRM": utterance["VRM"],
150
- }
151
- key += 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,124 +0,0 @@
1
- ---
2
- license:
3
- - mit
4
- annotations_creators:
5
- - crowdsourced
6
- language:
7
- - en
8
- multilinguality:
9
- - monolingual
10
- size_categories:
11
- - 10K<n<100k
12
- task_categories:
13
- - text-generation
14
- - conversational
15
- task_ids:
16
- - dialogue-modeling
17
- - faithful-dialogue-modeling
18
- - trustworthy-dialogue-modeling
19
- pretty_name: A Faithful Benchmark for Information-Seeking Dialogue
20
- ---
21
-
22
- ## Dataset Summary
23
- FaithDial is a faithful knowledge-grounded dialogue benchmark, composed of **50,761** turns spanning **5649** conversations. It was curated through Amazon Mechanical Turk by asking annotators to amend hallucinated utterances in [Wizard of Wikipedia](https://parl.ai/projects/wizard_of_wikipedia/) (WoW). In our dialogue setting, we simulate interactions between two speakers: **an information seeker** and **a bot wizard**. The seeker has a large degree of freedom as opposed to the wizard bot which is more restricted on what it can communicate. In fact, it must abide by the following rules:
24
- - **First**, it should be truthful by providing information that is attributable to the source knowledge *K*.
25
- - **Second**, it should provide information conversationally, i.e., use naturalistic phrasing of *K*, support follow-on discussion with questions, and prompt user's opinions.
26
- - **Third**, it should acknowledge its ignorance of the answer in those cases where *K* does not include it while still moving the conversation forward using *K*.
27
-
28
- ## Dataset Description
29
-
30
- - **Homepage:** [FaithDial](https://mcgill-nlp.github.io/FaithDial/)
31
- - **Repository:** [GitHub](https://github.com/McGill-NLP/FaithDial)
32
- - **Point of Contact:** [Nouha Dziri](mailto:dziri@ualberta.ca)
33
-
34
-
35
- ## Language
36
- English
37
-
38
- ## Data Instance
39
-
40
- An example of 'train' looks as follows:
41
- ```text
42
- [
43
- {
44
- "utterances": [
45
- ... // prior utterances,
46
- {
47
- "history": [
48
- "Have you ever been to a concert? They're so fun!",
49
- "No I cannot as a bot. However, have you been to Madonna's? Her 10th concert was used to help her 13th album called \"Rebel Heart\".",
50
- "Yeah I've heard of it but never went or what it was for. Can you tell me more about it?"
51
- ],
52
- "speaker": "Wizard",
53
- "knowledge": "It began on September 9, 2015, in Montreal, Canada, at the Bell Centre and concluded on March 20, 2016, in Sydney, Australia at Allphones Arena.",
54
- "original_response": "It started in September of 2015 and ran all the way through March of 2016. Can you imagine being on the road that long?",
55
- "response": "Sure. The concert started in September 9th of 2015 at Montreal, Canada. It continued till 20th of March of 2016, where it ended at Sydney, Australia.",
56
- "BEGIN": [
57
- "Hallucination",
58
- "Entailment"
59
- ],
60
- "VRM": [
61
- "Disclosure",
62
- "Question"
63
- ]
64
- },
65
- ... // more utterances
66
- ]
67
- },
68
- ... // more dialogues
69
- ]
70
- ```
71
- If the `original_response` is empty, it means that the response is faithful to the source and we consider it as a FaithDial response. Faithful responses in WoW are also edited slightly if they are found to have some grammatical issues or typos.
72
- ## Data Fields
73
-
74
- - `history`: `List[string]`. The dialogue history.
75
- - `knowledge`: `string`. The source knowkedge on which the bot wizard should ground its response.
76
- - `speaker`: `string`. The current speaker.
77
- - `original response`: `string`. The WoW original response before editing it.
78
- - `response`: `string`. The new Wizard response.
79
- - `BEGIN`: `List[string]`. The BEGIN labels for the Wizard response.
80
- - `VRM`: `List[string]`. The VRM labels for the wizard response.
81
-
82
-
83
- ## Data Splits
84
-
85
- - `Train`: 36809 turns
86
- - `Valid`: 6851 turns
87
- - `Test`: 7101 turns
88
-
89
- `Valid` includes both the `seen` and the `unseen` data splits from WoW. The same applies to `Test`. We also include those splits for FaithDial valid and test data.
90
-
91
- ## Annotations
92
- Following the guidelines for ethical crowdsourcing outlined in [Sheehan. 2018](https://www.tandfonline.com/doi/abs/10.1080/03637751.2017.1342043),
93
- we hire Amazon Mechanical Turk (AMT) workers to edit utterances in WoW dialogues that were found to exhibit unfaithful responses. To ensure clarity in the task definition, we provided detailed examples for our terminology. Moreover, we performed several staging rounds over the course of several months.
94
-
95
- # Who are the annotators?
96
-
97
- To be eligible for the task, workers have to be located in the United States and Canada and have to answer successfully 20 questions as part of a qualification test. Before launching the main annotation task, we perform a small pilot round (60 HITS) to check the performance of the workers. We email workers who commit errors, providing them with examples on how to fix their mistakes in future HITS.
98
-
99
- ## Personal and Sensitive Information
100
- Seeker utterances in FaithDial may contain personal and sensitive information.
101
-
102
- ## Social Impact of Dataset
103
- In recent years, the conversational AI market has seen
104
- a proliferation of a variety of applications—which are powered by large pre-trained LMs—that span
105
- across a broad range of domains, such as customer
106
- support, education, e-commerce, health, entertainment, etc. Ensuring that
107
- these systems are trustworthy is key to deploy systems safely at a large scale in real-world application, especially in high-stake domain. FaithDial holds promise to encourage faithfulness in information-seeking dialogue and make virtual assistants both safer and more reliable.
108
-
109
- ## Licensing Information
110
-
111
- MIT
112
-
113
- ## Citation Information
114
-
115
- ```bibtex
116
- @article{dziri2022faithdial,
117
- title={FaithDial: A Faithful Benchmark for Information-Seeking Dialogue},
118
- author={Dziri, Nouha and Kamalloo, Ehsan and Milton, Sivan and Zaiane, Osmar and Yu, Mo and Ponti, Edoardo and Reddy, Siva},
119
- journal={arXiv preprint, arXiv:2204.10757},
120
- year={2022},
121
- url={https://arxiv.org/abs/2204.10757}
122
- }
123
- ```
124
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/dummy/plain_text/1.0.0/dummy_data.zip.lock DELETED
File without changes
data/train.json DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:51eff8212d804b1954b7eefa8987265750f0412b0b18b534ed2dbe636e524512
3
- size 19499858
 
 
 
 
data/valid.json DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0f4da554dc07a2f5a14b96d6997f6e21358c6e7c159161526fc55a7f39751d5f
3
- size 3650206
 
 
 
 
data/valid_random_split.json DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1ca3a70c71fc212f399679b8090d8edad733c2c7d2672a2f1960bec466de596f
3
- size 1808271
 
 
 
 
data/valid_topic_split.json DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e3b161e6bd1a83bb8cabe0ff07530649473f485cd61c76048bf12cfa5ebbb751
3
- size 1842813
 
 
 
 
dataset_infos.json DELETED
@@ -1 +0,0 @@
1
- {"plain_text": {"description": "FaithDial is a new benchmark for hallucination-free dialogues, created by manually editing hallucinated and uncooperative responses in Wizard of Wikipedia.\n", "citation": "@article{dziri2022faithdial,\n title={FaithDial: A Faithful Benchmark for Information-Seeking Dialogue},\n author={Dziri, Nouha and Kamalloo, Ehsan and Milton, Sivan and Zaiane, Osmar and Yu, Mo and Ponti, Edoardo and Reddy, Siva},\n journal={arXiv preprint, arXiv:2204.10757},\n year={2022},\n url={https://arxiv.org/abs/2204.10757}\n}\n", "homepage": "https://mcgill-nlp.github.io/FaithDial/", "license": "MIT", "features": {"dialog_idx": {"dtype": "int32", "id": null, "_type": "Value"}, "response": {"dtype": "string", "id": null, "_type": "Value"}, "original_response": {"dtype": "string", "id": null, "_type": "Value"}, "history": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "knowledge": {"dtype": "string", "id": null, "_type": "Value"}, "BEGIN": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "VRM": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "faith_dial_dataset", "config_name": "plain_text", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 2770907, "num_examples": 3539, "dataset_name": "faith_dial_dataset"}, "test_random_split": {"name": "test_random_split", "num_bytes": 1356913, "num_examples": 1716, "dataset_name": "faith_dial_dataset"}, "test_topic_split": {"name": "test_topic_split", "num_bytes": 1416547, "num_examples": 1823, "dataset_name": "faith_dial_dataset"}, "train": {"name": "train", "num_bytes": 14393919, "num_examples": 18357, "dataset_name": "faith_dial_dataset"}, "validation": {"name": "validation", "num_bytes": 2703363, "num_examples": 3417, "dataset_name": "faith_dial_dataset"}, "valid_random_split": {"name": "valid_random_split", "num_bytes": 1346226, "num_examples": 1666, "dataset_name": "faith_dial_dataset"}, "valid_topic_split": {"name": "valid_topic_split", "num_bytes": 1358013, "num_examples": 1751, "dataset_name": "faith_dial_dataset"}}, "download_checksums": {"data/train.json": {"num_bytes": 19499858, "checksum": "51eff8212d804b1954b7eefa8987265750f0412b0b18b534ed2dbe636e524512"}, "data/valid.json": {"num_bytes": 3650206, "checksum": "0f4da554dc07a2f5a14b96d6997f6e21358c6e7c159161526fc55a7f39751d5f"}, "data/valid_random_split.json": {"num_bytes": 1808271, "checksum": "1ca3a70c71fc212f399679b8090d8edad733c2c7d2672a2f1960bec466de596f"}, "data/valid_topic_split.json": {"num_bytes": 1842813, "checksum": "e3b161e6bd1a83bb8cabe0ff07530649473f485cd61c76048bf12cfa5ebbb751"}, "data/test.json": {"num_bytes": 3749121, "checksum": "acae13df566cdb2bf28274465a9b314dd0f66211fb9d40781c3c6922df33f674"}, "data/test_random_split.json": {"num_bytes": 1831274, "checksum": "6b8779a7442e5c60378b4a6ac7ce0681fc0923dc8a3189ec804abd9cad8b916b"}, "data/test_topic_split.json": {"num_bytes": 1920402, "checksum": "ee966f854b52688810209b2d93afba223151fa3f6d8e2df311cd88ac86ff5f4d"}}, "download_size": 34301945, "post_processing_size": null, "dataset_size": 25345888, "size_in_bytes": 59647833}}
 
 
data/test.json → plain_text/faith_dial-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:acae13df566cdb2bf28274465a9b314dd0f66211fb9d40781c3c6922df33f674
3
- size 3749121
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d5923253591d2fbf6928112abca8bb1900ff6689e48cd1f34ba73e431dd5616
3
+ size 1063420
data/dummy/plain_text/1.0.0/dummy_data.zip → plain_text/faith_dial-test_random_split.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7d44546ee0397c1634eadfc40f347c0f24d5c5950570cb349b4bf234214ec56a
3
- size 28210
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aabda03a53e10970a2fec6c921db8faee80c3fc6e40ad1ce6bf90bdc15ac9cd
3
+ size 554870
data/test_random_split.json → plain_text/faith_dial-test_topic_split.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6b8779a7442e5c60378b4a6ac7ce0681fc0923dc8a3189ec804abd9cad8b916b
3
- size 1831274
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60c0656fe3c51ca893b26ab5b8a1fec98193159fbb40af559c7b888521dbce08
3
+ size 509300
data/test_topic_split.json → plain_text/faith_dial-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee966f854b52688810209b2d93afba223151fa3f6d8e2df311cd88ac86ff5f4d
3
- size 1920402
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efe6299d4677dd03a81bec6e9c36808da01783a41fc93ea51c44acdcdfcc42f6
3
+ size 5852242
plain_text/faith_dial-valid_random_split.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54873b33d2d9c5f713e9cc6edd4c15051967e3ee5ae9350b56f680e01006a1d1
3
+ size 551444
plain_text/faith_dial-valid_topic_split.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e17ef6af83bfc35dab3b760dded9596f7116dc657582b9670d5479bbbbe809dd
3
+ size 495543
plain_text/faith_dial-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b5f7541cd7d118b01d2fd8a4e47b1f711aa2d8256da762e65b311e20b8c7f9c
3
+ size 1050099