parquet-converter commited on
Commit
545f47a
·
1 Parent(s): f475d9c

Update parquet files

Browse files
.gitattributes DELETED
@@ -1,39 +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
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ftz filter=lfs diff=lfs merge=lfs -text
6
- *.gz filter=lfs diff=lfs merge=lfs -text
7
- *.h5 filter=lfs diff=lfs merge=lfs -text
8
- *.joblib filter=lfs diff=lfs merge=lfs -text
9
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
10
- *.model filter=lfs diff=lfs merge=lfs -text
11
- *.msgpack filter=lfs diff=lfs merge=lfs -text
12
- *.onnx filter=lfs diff=lfs merge=lfs -text
13
- *.ot filter=lfs diff=lfs merge=lfs -text
14
- *.parquet filter=lfs diff=lfs merge=lfs -text
15
- *.pb filter=lfs diff=lfs merge=lfs -text
16
- *.pt filter=lfs diff=lfs merge=lfs -text
17
- *.pth filter=lfs diff=lfs merge=lfs -text
18
- *.rar filter=lfs diff=lfs merge=lfs -text
19
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
20
- *.tar.* filter=lfs diff=lfs merge=lfs -text
21
- *.tflite filter=lfs diff=lfs merge=lfs -text
22
- *.tgz filter=lfs diff=lfs merge=lfs -text
23
- *.wasm filter=lfs diff=lfs merge=lfs -text
24
- *.xz filter=lfs diff=lfs merge=lfs -text
25
- *.zip filter=lfs diff=lfs merge=lfs -text
26
- *.zstandard filter=lfs diff=lfs merge=lfs -text
27
- *tfevents* filter=lfs diff=lfs merge=lfs -text
28
- # Audio files - uncompressed
29
- *.pcm filter=lfs diff=lfs merge=lfs -text
30
- *.sam filter=lfs diff=lfs merge=lfs -text
31
- *.raw filter=lfs diff=lfs merge=lfs -text
32
- # Audio files - compressed
33
- *.aac filter=lfs diff=lfs merge=lfs -text
34
- *.flac filter=lfs diff=lfs merge=lfs -text
35
- *.mp3 filter=lfs diff=lfs merge=lfs -text
36
- *.ogg filter=lfs diff=lfs merge=lfs -text
37
- *.wav filter=lfs diff=lfs merge=lfs -text
38
- quora_duplicate_triplets.jsonl filter=lfs diff=lfs merge=lfs -text
39
- quora_duplicate.jsonl filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,158 +0,0 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- paperswithcode_id: embedding-data/QQP_triplets
6
- pretty_name: QQP_triplets
7
- task_categories:
8
- - sentence-similarity
9
- - paraphrase-mining
10
- task_ids:
11
- - semantic-similarity-classification
12
-
13
- ---
14
-
15
- # Dataset Card for "QQP_triplets"
16
-
17
- ## Table of Contents
18
- - [Dataset Description](#dataset-description)
19
- - [Dataset Summary](#dataset-summary)
20
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
21
- - [Languages](#languages)
22
- - [Dataset Structure](#dataset-structure)
23
- - [Data Instances](#data-instances)
24
- - [Data Fields](#data-fields)
25
- - [Data Splits](#data-splits)
26
- - [Dataset Creation](#dataset-creation)
27
- - [Curation Rationale](#curation-rationale)
28
- - [Source Data](#source-data)
29
- - [Annotations](#annotations)
30
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
31
- - [Considerations for Using the Data](#considerations-for-using-the-data)
32
- - [Social Impact of Dataset](#social-impact-of-dataset)
33
- - [Discussion of Biases](#discussion-of-biases)
34
- - [Other Known Limitations](#other-known-limitations)
35
- - [Additional Information](#additional-information)
36
- - [Dataset Curators](#dataset-curators)
37
- - [Licensing Information](#licensing-information)
38
- - [Citation Information](#citation-information)
39
- - [Contributions](#contributions)
40
-
41
- ## Dataset Description
42
-
43
- - **Homepage:** [https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
44
- - **Repository:** [More Information Needed](http://qim.fs.quoracdn.net/quora_duplicate_questions.tsv)
45
- - **Paper:** [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
46
- - **Point of Contact:** [Kornél Csernai](https://www.quora.com/profile/Korn%C3%A9l-Csernai), [Nikhil Dandekar](https://www.quora.com/profile/Nikhil-Dandekar), [Shankar Iyer](https://www.quora.com/profile/Shankar-Iyer-5)
47
-
48
- ### Dataset Summary
49
-
50
- This dataset will give anyone the opportunity to train and test models of semantic equivalence, based on actual Quora data. The data is organized as triplets (anchor, positive, negative).
51
-
52
- Disclaimer: The team releasing Quora data did not upload the dataset to the Hub and did not write a dataset card.
53
- These steps were done by the Hugging Face team.
54
-
55
- ### Supported Tasks
56
- - [Sentence Transformers](https://huggingface.co/sentence-transformers) training; useful for semantic search and sentence similarity.
57
-
58
- ### Languages
59
- - English.
60
-
61
- ## Dataset Structure
62
- Each example is a dictionary with three keys (query, pos, and neg) containing a list each (triplets). The first key contains an anchor sentence, the second a positive sentence, and the third a list of negative sentences.
63
- ```
64
- {"query": [anchor], "pos": [positive], "neg": [negative1, negative2, ..., negativeN]}
65
- {"query": [anchor], "pos": [positive], "neg": [negative1, negative2, ..., negativeN]}
66
- ...
67
- {"query": [anchor], "pos": [positive], "neg": [negative1, negative2, ..., negativeN]}
68
- ```
69
- This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train them.
70
-
71
- ### Usage Example
72
- Install the 🤗 Datasets library with `pip install datasets` and load the dataset from the Hub with:
73
- ```python
74
- from datasets import load_dataset
75
- dataset = load_dataset("embedding-data/QQP_triplets")
76
- ```
77
- The dataset is loaded as a `DatasetDict` and has the format:
78
- ```python
79
- DatasetDict({
80
- train: Dataset({
81
- features: ['set'],
82
- num_rows: 101762
83
- })
84
- })
85
- ```
86
- Review an example `i` with:
87
- ```python
88
- dataset["train"][i]["set"]
89
- ```
90
-
91
- ### Curation Rationale
92
-
93
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
94
-
95
- ### Source Data
96
-
97
- #### Initial Data Collection and Normalization
98
-
99
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
100
-
101
- #### Who are the source language producers?
102
-
103
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
104
-
105
- ### Annotations
106
-
107
- #### Annotation process
108
-
109
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
110
-
111
- #### Who are the annotators?
112
-
113
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
114
-
115
- ### Personal and Sensitive Information
116
-
117
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
118
-
119
- ## Considerations for Using the Data
120
-
121
- ### Social Impact of Dataset
122
-
123
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
124
-
125
- ### Discussion of Biases
126
-
127
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
128
-
129
- ### Other Known Limitations
130
-
131
- Here are a few important things to keep in mind about this dataset:
132
-
133
- - Our original sampling method returned an imbalanced dataset with many more true examples of duplicate pairs than non-duplicates.
134
- Therefore, we supplemented the dataset with negative examples.
135
- - One source of negative examples were pairs of “related questions” which, although pertaining to similar topics,
136
- are not truly semantically equivalent.
137
- - The distribution of questions in the dataset should not be taken to be representative of the distribution of questions asked on Quora. This is, in part, because of the combination of sampling procedures and also due to some sanitization measures that
138
- have been applied to the final dataset (e.g., removal of questions with extremely long question details).
139
- - The ground-truth labels contain some amount of noise: they are not guaranteed to be perfect.
140
-
141
- ## Additional Information
142
-
143
- ### Dataset Curators
144
-
145
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
146
-
147
- ### Licensing Information
148
-
149
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
150
-
151
- ### Citation Information
152
-
153
- [More Information Needed](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs)
154
-
155
- ### Contributions
156
-
157
- Thanks to [Kornél Csernai](https://www.quora.com/profile/Korn%C3%A9l-Csernai), [Nikhil Dandekar](https://www.quora.com/profile/Nikhil-Dandekar), [Shankar Iyer](https://www.quora.com/profile/Shankar-Iyer-5) for adding this dataset.
158
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
quora_duplicate_triplets.jsonl → embedding-data--QQP_triplets/json-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:478efa4642d79423c6d0a74b75512fb0c4f4a004434ca0db5afa355a3d29f1f0
3
- size 183431436
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2296c62eab7c46e6ff18703f8db125ac695e0803a7e8362ef2e42b96f32a48d3
3
+ size 91816139