arkamath2026 parquet-converter commited on
Commit
c360ad8
·
0 Parent(s):

Duplicate from ucirvine/sms_spam

Browse files

Co-authored-by: Parquet-converter (BOT) <parquet-converter@users.noreply.huggingface.co>

.gitattributes ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
5
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.model filter=lfs diff=lfs merge=lfs -text
12
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
13
+ *.onnx filter=lfs diff=lfs merge=lfs -text
14
+ *.ot filter=lfs diff=lfs merge=lfs -text
15
+ *.parquet filter=lfs diff=lfs merge=lfs -text
16
+ *.pb filter=lfs diff=lfs merge=lfs -text
17
+ *.pt filter=lfs diff=lfs merge=lfs -text
18
+ *.pth filter=lfs diff=lfs merge=lfs -text
19
+ *.rar filter=lfs diff=lfs merge=lfs -text
20
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
21
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
22
+ *.tflite filter=lfs diff=lfs merge=lfs -text
23
+ *.tgz 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
README.md ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ - found
5
+ language_creators:
6
+ - crowdsourced
7
+ - found
8
+ language:
9
+ - en
10
+ license:
11
+ - unknown
12
+ multilinguality:
13
+ - monolingual
14
+ size_categories:
15
+ - 1K<n<10K
16
+ source_datasets:
17
+ - extended|other-nus-sms-corpus
18
+ task_categories:
19
+ - text-classification
20
+ task_ids:
21
+ - intent-classification
22
+ paperswithcode_id: sms-spam-collection-data-set
23
+ pretty_name: SMS Spam Collection Data Set
24
+ dataset_info:
25
+ config_name: plain_text
26
+ features:
27
+ - name: sms
28
+ dtype: string
29
+ - name: label
30
+ dtype:
31
+ class_label:
32
+ names:
33
+ '0': ham
34
+ '1': spam
35
+ splits:
36
+ - name: train
37
+ num_bytes: 521752
38
+ num_examples: 5574
39
+ download_size: 358869
40
+ dataset_size: 521752
41
+ configs:
42
+ - config_name: plain_text
43
+ data_files:
44
+ - split: train
45
+ path: plain_text/train-*
46
+ default: true
47
+ train-eval-index:
48
+ - config: plain_text
49
+ task: text-classification
50
+ task_id: binary_classification
51
+ splits:
52
+ train_split: train
53
+ col_mapping:
54
+ sms: text
55
+ label: target
56
+ metrics:
57
+ - type: accuracy
58
+ name: Accuracy
59
+ - type: f1
60
+ name: F1 macro
61
+ args:
62
+ average: macro
63
+ - type: f1
64
+ name: F1 micro
65
+ args:
66
+ average: micro
67
+ - type: f1
68
+ name: F1 weighted
69
+ args:
70
+ average: weighted
71
+ - type: precision
72
+ name: Precision macro
73
+ args:
74
+ average: macro
75
+ - type: precision
76
+ name: Precision micro
77
+ args:
78
+ average: micro
79
+ - type: precision
80
+ name: Precision weighted
81
+ args:
82
+ average: weighted
83
+ - type: recall
84
+ name: Recall macro
85
+ args:
86
+ average: macro
87
+ - type: recall
88
+ name: Recall micro
89
+ args:
90
+ average: micro
91
+ - type: recall
92
+ name: Recall weighted
93
+ args:
94
+ average: weighted
95
+ ---
96
+
97
+ # Dataset Card for [Dataset Name]
98
+
99
+ ## Table of Contents
100
+ - [Dataset Description](#dataset-description)
101
+ - [Dataset Summary](#dataset-summary)
102
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
103
+ - [Languages](#languages)
104
+ - [Dataset Structure](#dataset-structure)
105
+ - [Data Instances](#data-instances)
106
+ - [Data Fields](#data-fields)
107
+ - [Data Splits](#data-splits)
108
+ - [Dataset Creation](#dataset-creation)
109
+ - [Curation Rationale](#curation-rationale)
110
+ - [Source Data](#source-data)
111
+ - [Annotations](#annotations)
112
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
113
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
114
+ - [Social Impact of Dataset](#social-impact-of-dataset)
115
+ - [Discussion of Biases](#discussion-of-biases)
116
+ - [Other Known Limitations](#other-known-limitations)
117
+ - [Additional Information](#additional-information)
118
+ - [Dataset Curators](#dataset-curators)
119
+ - [Licensing Information](#licensing-information)
120
+ - [Citation Information](#citation-information)
121
+ - [Contributions](#contributions)
122
+
123
+ ## Dataset Description
124
+
125
+ - **Homepage:** http://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection
126
+ - **Repository:**
127
+ - **Paper:** Almeida, T.A., Gomez Hidalgo, J.M., Yamakami, A. Contributions to the study of SMS Spam Filtering: New Collection and Results. Proceedings of the 2011 ACM Symposium on Document Engineering (ACM DOCENG'11), Mountain View, CA, USA, 2011.
128
+ - **Leaderboard:**
129
+ - **Point of Contact:**
130
+
131
+ ### Dataset Summary
132
+
133
+ The SMS Spam Collection v.1 is a public set of SMS labeled messages that have been collected for mobile phone spam research.
134
+ It has one collection composed by 5,574 English, real and non-enconded messages, tagged according being legitimate (ham) or spam.
135
+
136
+ ### Supported Tasks and Leaderboards
137
+
138
+ [More Information Needed]
139
+
140
+ ### Languages
141
+
142
+ English
143
+
144
+ ## Dataset Structure
145
+
146
+ ### Data Instances
147
+
148
+ [More Information Needed]
149
+
150
+ ### Data Fields
151
+
152
+ - sms: the sms message
153
+ - label: indicating if the sms message is ham or spam, ham means it is not spam
154
+
155
+ ### Data Splits
156
+
157
+ [More Information Needed]
158
+
159
+ ## Dataset Creation
160
+
161
+ ### Curation Rationale
162
+
163
+ [More Information Needed]
164
+
165
+ ### Source Data
166
+
167
+ #### Initial Data Collection and Normalization
168
+
169
+ [More Information Needed]
170
+
171
+ #### Who are the source language producers?
172
+
173
+ [More Information Needed]
174
+
175
+ ### Annotations
176
+
177
+ #### Annotation process
178
+
179
+ [More Information Needed]
180
+
181
+ #### Who are the annotators?
182
+
183
+ [More Information Needed]
184
+
185
+ ### Personal and Sensitive Information
186
+
187
+ [More Information Needed]
188
+
189
+ ## Considerations for Using the Data
190
+
191
+ ### Social Impact of Dataset
192
+
193
+ [More Information Needed]
194
+
195
+ ### Discussion of Biases
196
+
197
+ [More Information Needed]
198
+
199
+ ### Other Known Limitations
200
+
201
+ [More Information Needed]
202
+
203
+ ## Additional Information
204
+
205
+ ### Dataset Curators
206
+
207
+ [More Information Needed]
208
+
209
+ ### Licensing Information
210
+
211
+ [More Information Needed]
212
+
213
+ ### Citation Information
214
+
215
+ @inproceedings{Almeida2011SpamFiltering,
216
+ title={Contributions to the Study of SMS Spam Filtering: New Collection and Results},
217
+ author={Tiago A. Almeida and Jose Maria Gomez Hidalgo and Akebo Yamakami},
218
+ year={2011},
219
+ booktitle = "Proceedings of the 2011 ACM Symposium on Document Engineering (DOCENG'11)",
220
+ }
221
+
222
+ ### Contributions
223
+
224
+ Thanks to [@czabo](https://github.com/czabo) for adding this dataset.
plain_text/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e5518e4a49cb2de8af9c89a38b742825cdddbb55942701fc2237d4364288abd
3
+ size 358869