parquet-converter commited on
Commit
38821a2
1 Parent(s): be7d206

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,157 +0,0 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- paperswithcode_id: embedding-data/Amazon-QA
6
- pretty_name: Amazon-QA
7
- task_categories:
8
- - sentence-similarity
9
- - paraphrase-mining
10
- task_ids:
11
- - semantic-similarity-classification
12
- ---
13
-
14
- # Dataset Card for "Amazon-QA"
15
-
16
- ## Table of Contents
17
- - [Dataset Description](#dataset-description)
18
- - [Dataset Summary](#dataset-summary)
19
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
20
- - [Languages](#languages)
21
- - [Dataset Structure](#dataset-structure)
22
- - [Data Instances](#data-instances)
23
- - [Data Fields](#data-fields)
24
- - [Data Splits](#data-splits)
25
- - [Dataset Creation](#dataset-creation)
26
- - [Curation Rationale](#curation-rationale)
27
- - [Source Data](#source-data)
28
- - [Annotations](#annotations)
29
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
30
- - [Considerations for Using the Data](#considerations-for-using-the-data)
31
- - [Social Impact of Dataset](#social-impact-of-dataset)
32
- - [Discussion of Biases](#discussion-of-biases)
33
- - [Other Known Limitations](#other-known-limitations)
34
- - [Additional Information](#additional-information)
35
- - [Dataset Curators](#dataset-curators)
36
- - [Licensing Information](#licensing-information)
37
- - [Citation Information](#citation-information)
38
- - [Contributions](#contributions)
39
-
40
- ## Dataset Description
41
-
42
- - **Homepage:** [http://jmcauley.ucsd.edu/data/amazon/qa/](http://jmcauley.ucsd.edu/data/amazon/qa/)
43
- - **Repository:** [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
44
- - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
45
- - **Point of Contact:** [Julian McAuley](https://cseweb.ucsd.edu//~jmcauley/#)
46
- - **Size of downloaded dataset files:**
47
- - **Size of the generated dataset:**
48
- - **Total amount of disk used:** 247 MB
49
-
50
- ### Dataset Summary
51
-
52
- This dataset contains Question and Answer data from Amazon.
53
-
54
- Disclaimer: The team releasing Amazon-QA did not upload the dataset to the Hub and did not write a dataset card.
55
- These steps were done by the Hugging Face team.
56
-
57
- ### Supported Tasks
58
- - [Sentence Transformers](https://huggingface.co/sentence-transformers) training; useful for semantic search and sentence similarity.
59
- ### Languages
60
- - English.
61
- ## Dataset Structure
62
- Each example in the dataset contains pairs of query and answer sentences and is formatted as a dictionary:
63
- ```
64
- {"query": [sentence_1], "pos": [sentence_2]}
65
- {"query": [sentence_1], "pos": [sentence_2]}
66
- ...
67
- {"query": [sentence_1], "pos": [sentence_2]}
68
- ```
69
- This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train models using similar sentences.
70
- ### Usage Example
71
- Install the 🤗 Datasets library with `pip install datasets` and load the dataset from the Hub with:
72
- ```python
73
- from datasets import load_dataset
74
- dataset = load_dataset("embedding-data/Amazon-QA")
75
- ```
76
- The dataset is loaded as a `DatasetDict` and has the format:
77
- ```python
78
- DatasetDict({
79
- train: Dataset({
80
- features: ['query', 'pos'],
81
- num_rows: 1095290
82
- })
83
- })
84
- ```
85
- Review an example `i` with:
86
- ```python
87
- dataset["train"][0]
88
- ```
89
- ### Data Instances
90
-
91
- ### Data Fields
92
-
93
-
94
- ### Data Splits
95
-
96
- ## Dataset Creation
97
-
98
- ### Curation Rationale
99
-
100
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
101
-
102
- ### Source Data
103
-
104
- #### Initial Data Collection and Normalization
105
-
106
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
107
-
108
- #### Who are the source language producers?
109
-
110
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
111
-
112
- ### Annotations
113
-
114
- #### Annotation process
115
-
116
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
117
-
118
- #### Who are the annotators?
119
-
120
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
121
-
122
- ### Personal and Sensitive Information
123
-
124
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
125
-
126
- ## Considerations for Using the Data
127
-
128
- ### Social Impact of Dataset
129
-
130
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
131
-
132
- ### Discussion of Biases
133
-
134
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
135
-
136
- ### Other Known Limitations
137
-
138
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/s)
139
-
140
- ## Additional Information
141
-
142
- ### Dataset Curators
143
-
144
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
145
-
146
- ### Licensing Information
147
-
148
- [More Information Needed](http://jmcauley.ucsd.edu/data/amazon/qa/)
149
-
150
- ### Citation Information
151
-
152
-
153
-
154
-
155
- ### Contributions
156
-
157
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
amazon-qa.jsonl.gz → embedding-data--Amazon-QA/json-train-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e7ea2a1ce59f4fea57f5ae6ca552143ca20f201eacb6ed1e1ced69b51f6ab03e
3
- size 247496265
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ccd8a6df331178d91ce68e4277047398d48efc6968857fab46b1451defad091
3
+ size 297182192
embedding-data--Amazon-QA/json-train-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e30007821e5f13842a38f5a9faf5535d9183ec7b0e60cc59e60d9fed3cc68698
3
+ size 114153409