Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
parquet-converter commited on
Commit
07769f4
·
1 Parent(s): faf55c1

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,144 +0,0 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- paperswithcode_id: embedding-data/SPECTER
6
- pretty_name: SPECTER
7
- task_categories:
8
- - sentence-similarity
9
- - paraphrase-mining
10
- task_ids:
11
- - semantic-similarity-classification
12
- ---
13
-
14
- # Dataset Card for "SPECTER"
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:** [https://github.com/allenai/specter](https://github.com/allenai/specter)
43
- - **Repository:** [More Information Needed](https://github.com/allenai/specter/blob/master/README.md)
44
- - **Paper:** [More Information Needed](https://arxiv.org/pdf/2004.07180.pdf)
45
- - **Point of Contact:** [@armancohan](https://github.com/armancohan), [@sergeyf](https://github.com/sergeyf), [@haroldrubio](https://github.com/haroldrubio), [@jinamshah](https://github.com/jinamshah)
46
-
47
- ### Dataset Summary
48
-
49
- Dataset containing triplets (three sentences): anchor, positive, and negative. Contains titles of papers.
50
-
51
- Disclaimer: The team releasing SPECTER did not upload the dataset to the Hub and did not write a dataset card.
52
- These steps were done by the Hugging Face team.
53
-
54
- ## Dataset Structure
55
- Each example in the dataset contains triplets of equivalent sentences and is formatted as a dictionary with the key "set" and a list with the sentences as "value".
56
-
57
- Each example is a dictionary with a key, "set", containing a list of three sentences (anchor, positive, and negative):
58
-
59
- ```
60
- {"set": [anchor, positive, negative]}
61
- {"set": [anchor, positive, negative]}
62
- ...
63
- {"set": [anchor, positive, negative]}
64
- ```
65
- This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train models using triplets.
66
-
67
- ### Usage Example
68
- Install the 🤗 Datasets library with `pip install datasets` and load the dataset from the Hub with:
69
- ```python
70
- from datasets import load_dataset
71
- dataset = load_dataset("embedding-data/SPECTER")
72
- ```
73
- The dataset is loaded as a `DatasetDict` and has the format:
74
- ```python
75
- DatasetDict({
76
- train: Dataset({
77
- features: ['set'],
78
- num_rows: 684100
79
- })
80
- })
81
- ```
82
- Review an example `i` with:
83
- ```python
84
- dataset["train"][i]["set"]
85
- ```
86
-
87
- ### Curation Rationale
88
-
89
- [More Information Needed](https://github.com/allenai/specter)
90
-
91
- ### Source Data
92
-
93
- #### Initial Data Collection and Normalization
94
-
95
- [More Information Needed](https://github.com/allenai/specter)
96
-
97
- #### Who are the source language producers?
98
-
99
- [More Information Needed](https://github.com/allenai/specter)
100
-
101
- ### Annotations
102
-
103
- #### Annotation process
104
-
105
- [More Information Needed](https://github.com/allenai/specter)
106
-
107
- #### Who are the annotators?
108
-
109
- [More Information Needed](https://github.com/allenai/specter)
110
-
111
- ### Personal and Sensitive Information
112
-
113
- [More Information Needed](https://github.com/allenai/specter)
114
-
115
- ## Considerations for Using the Data
116
-
117
- ### Social Impact of Dataset
118
-
119
- [More Information Needed](https://github.com/allenai/specter)
120
-
121
- ### Discussion of Biases
122
-
123
- [More Information Needed](https://github.com/allenai/specter)
124
-
125
- ### Other Known Limitations
126
-
127
- [More Information Needed](https://github.com/allenai/specter)
128
-
129
- ## Additional Information
130
-
131
- ### Dataset Curators
132
-
133
- [More Information Needed](https://github.com/allenai/specter)
134
-
135
- ### Licensing Information
136
-
137
- [More Information Needed](https://github.com/allenai/specter)
138
-
139
- ### Citation Information
140
-
141
-
142
-
143
- ### Contributions
144
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
specter_train_triples_processed.jsonl.gz → embedding-data--SPECTER/json-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8e1683c2018cfdee98e2739d1138e2f78961096bb108f938772dedf4f98b1d86
3
- size 38284169
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfc2dfe96f9488371948a52f4e657328cfa5b45d99f7e239ba28b7a7331471c1
3
+ size 59134130