parquet-converter commited on
Commit
598302b
·
1 Parent(s): 57eee28

Update parquet files

Browse files
.gitattributes DELETED
@@ -1,37 +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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,147 +0,0 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- paperswithcode_id: embedding-data/sentence-compression
6
- pretty_name: sentence-compression
7
- task_categories:
8
- - sentence-similarity
9
- - paraphrase-mining
10
- task_ids:
11
- - semantic-similarity-classification
12
- ---
13
-
14
- # Dataset Card for "sentence-compression"
15
-
16
- ## Table of Contents
17
-
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://github.com/google-research-datasets/sentence-compression](https://github.com/google-research-datasets/sentence-compression)
44
- - **Repository:** [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
45
- - **Paper:** [More Information Needed](https://www.aclweb.org/anthology/D13-1155/)
46
- - **Point of Contact:** [Katja Filippova]([email protected])
47
- - **Size of downloaded dataset files:**
48
- - **Size of the generated dataset:**
49
- - **Total amount of disk used:** 14.2 MB
50
-
51
- ### Dataset Summary
52
- Dataset with pairs of equivalent sentences.
53
- The dataset is provided "AS IS" without any warranty, express or implied.
54
- Google disclaims all liability for any damages, direct or indirect, resulting from using the dataset.
55
-
56
- Disclaimer: The team releasing sentence-compression did not upload the dataset to the Hub and did not write a dataset card. These steps were done by the Hugging Face team.
57
-
58
- ### Supported Tasks
59
- - [Sentence Transformers](https://huggingface.co/sentence-transformers) training; useful for semantic search and sentence similarity.
60
- ### Languages
61
- - English.
62
- ## Dataset Structure
63
- Each example in the dataset contains pairs of equivalent sentences and is formatted as a dictionary with the key "set" and a list with the sentences as "value".
64
- ```
65
- {"set": [sentence_1, sentence_2]}
66
- {"set": [sentence_1, sentence_2]}
67
- ...
68
- {"set": [sentence_1, sentence_2]}
69
- ```
70
- This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train models using similar pairs of sentences.
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/sentence-compression")
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: 180000
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://github.com/google-research-datasets/sentence-compression)
94
-
95
- ### Source Data
96
-
97
- #### Initial Data Collection and Normalization
98
-
99
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
100
-
101
- #### Who are the source language producers?
102
-
103
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
104
-
105
- ### Annotations
106
-
107
- #### Annotation process
108
-
109
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
110
-
111
- #### Who are the annotators?
112
-
113
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
114
-
115
- ### Personal and Sensitive Information
116
-
117
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
118
-
119
- ## Considerations for Using the Data
120
-
121
- ### Social Impact of Dataset
122
-
123
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
124
-
125
- ### Discussion of Biases
126
-
127
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
128
-
129
- ### Other Known Limitations
130
-
131
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
132
-
133
- ## Additional Information
134
-
135
- ### Dataset Curators
136
-
137
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
138
-
139
- ### Licensing Information
140
-
141
- [More Information Needed](https://github.com/google-research-datasets/sentence-compression)
142
-
143
- ### Contributions
144
-
145
-
146
-
147
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
sentence-compression_compressed.jsonl.gz → embedding-data--sentence-compression/json-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f32f24310afce32a9ca9ecdd45f727fe011b71b1f15827eb0a1df2a82d2a65ed
3
- size 14234582
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1284ce5e56fd64e375688f1a9eb511b6809bf88a31207def4b19e5dd9db6985a
3
+ size 23756409