neuralspace commited on
Commit
99fa603
1 Parent(s): 2bf4aec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +149 -1
README.md CHANGED
@@ -1,3 +1,151 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - other
4
+ language_creators:
5
+ - other
6
+ language:
7
+ - en
8
+ expert-generated license:
9
+ - cc-by-nc-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - n<1K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - question-answering
18
+ - text-retrieval
19
+ - text2text-generation
20
+ - other
21
+ - translation
22
+ - conversational
23
+ task_ids:
24
+ - extractive-qa
25
+ - closed-domain-qa
26
+ - utterance-retrieval
27
+ - document-retrieval
28
+ - closed-domain-qa
29
+ - open-book-qa
30
+ - closed-book-qa
31
+ paperswithcode_id: acronym-identification
32
+ pretty_name: Massive E-commerce Dataset for Retail and Insurance domain.
33
+ train-eval-index:
34
+ - config: nsds
35
+ task: token-classification
36
+ task_id: entity_extraction
37
+ splits:
38
+ train_split: train
39
+ eval_split: test
40
+ col_mapping:
41
+ sentence: text
42
+ label: target
43
+ metrics:
44
+ - type: nsme-com
45
+ name: NSME-COM
46
+ config:
47
+ nsds
48
+ tags:
49
+ - chatbots
50
+ - e-commerce
51
+ - retail
52
+ - insurance
53
+ - consumer
54
+ - consumer goods
55
+ configs:
56
+ - nsds
57
  ---
58
+ # Dataset Card for NSME-COM
59
+
60
+ ## Table of Contents
61
+
62
+ - [Dataset Description](#dataset-description)
63
+ - [Dataset Summary](#dataset-summary)
64
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
65
+ - [Languages](#languages)
66
+ - [Dataset Structure](#dataset-structure)
67
+ - [Data Instances](#data-instances)
68
+ - [Data Fields](#data-fields)
69
+ - [Data Splits](#data-splits)
70
+ - [Dataset Creation](#dataset-creation)
71
+ - [Curation Rationale](#curation-rationale)
72
+ - [Source Data](#source-data)
73
+ - [Annotations](#annotations)
74
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
75
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
76
+ - [Social Impact of Dataset](#social-impact-of-dataset)
77
+ - [Discussion of Biases](#discussion-of-biases)
78
+ - [Other Known Limitations](#other-known-limitations)
79
+ - [Additional Information](#additional-information)
80
+ - [Dataset Curators](#dataset-curators)
81
+ - [Licensing Information](#licensing-information)
82
+ - [Citation Information](#citation-information)
83
+ - [Contributions](#contributions)
84
+
85
+ ## Dataset Description
86
+
87
+ - **Homepage**: [https://huggingface.co/asaxena1990)
88
+ - **Repository:** [https://huggingface.co/datasets/asaxena1990/NSME-COM)
89
+ - **Point of Contact:** (Ayushman Dash <[email protected]>, Ankur Saxena <[email protected]>)
90
+
91
+ - **Size of downloaded dataset files:** 10.86 KB
92
+
93
+ ### Dataset Summary
94
+
95
+ NSME-COM, the NeuralSpace Massive E-commerce Dataset is a collection of resources for training, evaluating, and analyzing natural language understanding systems.
96
+
97
+ ### Supported Tasks and Leaderboards
98
+
99
+ The leaderboard for the GLUE benchmark can be found [at this address](https://gluebenchmark.com/). It comprises the following tasks:
100
+
101
+ #### nsds
102
+
103
+ A manually-curated domain specific dataset by Data Engineers at NeuralSpace for rare E-commerce domains such as Insurance and Retail for NL researchers and practitioners to evaluate state of the art models [here](https://www.neuralspace.ai/) in 100+ languages. The dataset files are available in JSON format.
104
+
105
+ ### Languages
106
+
107
+ The language data in NSME-COM is in English (BCP-47 `en`)
108
+
109
+ ## Dataset Structure
110
+
111
+ ### Data Instances
112
+
113
+ - **Size of downloaded dataset files:** 10.86 KB
114
+
115
+ An example of 'test' looks as follows.
116
+
117
+ ``` {
118
+ "text": "is it good to add roadside assistance?",
119
+ "intent": "Add",
120
+ "type": "Test"
121
+ }
122
+ ```
123
+
124
+ An example of 'train' looks as follows.
125
+
126
+ ```{
127
+ "text": "how can I add my spouse as a nominee?",
128
+ "intent": "Add",
129
+ "type": "Train"
130
+ },
131
+ ```
132
+
133
+ ### Data Fields
134
+
135
+ The data fields are the same among all splits.
136
+
137
+ #### nsds
138
+
139
+ - `text`: a `string` feature.
140
+ - `intent`: a `string` feature.
141
+ - `type`: a classification label, with possible values including `train` or `test`.
142
+
143
+ ### Data Splits
144
+
145
+ #### nsds
146
+ | |train|test|
147
+ |----|----:|---:|
148
+ |nsds| 1725| 406|
149
+
150
+ ### Contributions
151
+ Ankur Saxena ([email protected])