parquet-converter commited on
Commit
d9f524a
·
1 Parent(s): ce219b5

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,136 +0,0 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- paperswithcode_id: embedding-data/simple-wiki
6
- pretty_name: simple-wiki
7
- task_categories:
8
- - sentence-similarity
9
- - paraphrase-mining
10
- task_ids:
11
- - semantic-similarity-classification
12
- ---
13
-
14
- # Dataset Card for "simple-wiki"
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://cs.pomona.edu/~dkauchak/simplification/](https://cs.pomona.edu/~dkauchak/simplification/)
44
- - **Repository:** [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
45
- - **Paper:** [https://aclanthology.org/P11-2117/](https://aclanthology.org/P11-2117/)
46
- - **Point of Contact:** [David Kauchak]([email protected])
47
-
48
- ### Dataset Summary
49
- This dataset contains pairs of equivalent sentences obtained from Wikipedia.
50
-
51
- ### Supported Tasks
52
- - [Sentence Transformers](https://huggingface.co/sentence-transformers) training; useful for semantic search and sentence similarity.
53
- ### Languages
54
- - English.
55
- ## Dataset Structure
56
- 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".
57
- ```
58
- {"set": [sentence_1, sentence_2]}
59
- {"set": [sentence_1, sentence_2]}
60
- ...
61
- {"set": [sentence_1, sentence_2]}
62
- ```
63
- This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train models using similar sentences.
64
- ### Usage Example
65
- Install the 🤗 Datasets library with `pip install datasets` and load the dataset from the Hub with:
66
- ```python
67
- from datasets import load_dataset
68
- dataset = load_dataset("embedding-data/simple-wiki")
69
- ```
70
- The dataset is loaded as a `DatasetDict` and has the format:
71
- ```python
72
- DatasetDict({
73
- train: Dataset({
74
- features: ['set'],
75
- num_rows: 102225
76
- })
77
- })
78
- ```
79
- Review an example `i` with:
80
- ```python
81
- dataset["train"][i]["set"]
82
- ```
83
-
84
- ### Curation Rationale
85
-
86
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
87
-
88
- ### Source Data
89
-
90
- #### Initial Data Collection and Normalization
91
-
92
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
93
-
94
- #### Who are the source language producers?
95
-
96
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
97
-
98
- ### Annotations
99
-
100
- #### Annotation process
101
-
102
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
103
-
104
- #### Who are the annotators?
105
-
106
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
107
-
108
- ### Personal and Sensitive Information
109
-
110
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
111
-
112
- ## Considerations for Using the Data
113
-
114
- ### Social Impact of Dataset
115
-
116
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
117
-
118
- ### Discussion of Biases
119
-
120
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
121
-
122
- ### Other Known Limitations
123
-
124
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
125
-
126
- ## Additional Information
127
-
128
- ### Dataset Curators
129
-
130
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
131
-
132
- ### Licensing Information
133
-
134
- [More Information Needed](https://cs.pomona.edu/~dkauchak/simplification/)
135
-
136
- ### Contributions
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
SimpleWiki_processed.jsonl.gz → embedding-data--simple-wiki/json-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cbf8bc64028be2eb012195bbe9b22ed4d526bbd4d6498c9f02579c3577f85e07
3
- size 8560960
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c621af40ee70849b034f8c059ba1e879e8846bd3c5df44520a305d25a0fc7227
3
+ size 14117873