Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
DOI:
Libraries:
Datasets
pandas
SkAndMl commited on
Commit
6319fda
1 Parent(s): 3e9c0ff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md CHANGED
@@ -21,7 +21,51 @@ dataset_info:
21
  num_examples: 3012
22
  download_size: 874048
23
  dataset_size: 1836512
 
 
 
 
 
24
  ---
25
  # Dataset Card for "CPTDS-3"
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
21
  num_examples: 3012
22
  download_size: 874048
23
  dataset_size: 1836512
24
+ task_categories:
25
+ - text-classification
26
+ language:
27
+ - en
28
+ pretty_name: cptds-3
29
  ---
30
  # Dataset Card for "CPTDS-3"
31
 
32
+ 1. CPTDS-3 dataset is made up of coding problem questions from multiple coding websites.
33
+ 2. The 'DS' in the name stands for data structures and the '3' indicates that the questions belong to 3 mutually exclusive categories
34
+ 3. The dataset was prepared for the research work names [Stacking of Hyperparameter Tuned Models for Tagging Coding Problems](https://arxiv.org/abs/2306.10077#:~:text=In%20this%20work%2C%20we%20propose,models%20developed%20for%20this%20work.)
35
+
36
+ ## Languages
37
+ The dataset consists of questions only in English
38
+
39
+ ## Dataset Structure
40
+
41
+ ### Data Instances
42
+
43
+ For each instance, there is a string for the question, a string for the class label.
44
+
45
+ ```
46
+ {'question': 'Andrew love sea that s height summer season decide beach take sunbe sunbatheThe beach rectangular field n row m column some cell beach free road stone shop nonmovable object some adjacent cell sunbed locate horizontally verticallyAndrew hope sunbe that s bad luck long free place that s Andrew ask help find free place sunbe Andrews sunbe place adjacent cell if adjacent free cell order free place sunbe disturb tourist you follow action come sunbe cause p unit discomfort owner lift sunbe side rotate 90 degree one half sunbe remain cell half sunbe free cell at time way sunbe rotation Rotation sunbe 90 degree cell 1 2 come sunbe cause q unit discomfort owner shift sunbe long cell one half sunbe place free cell Shift sunbe cell right in moment sunbe occupie adjacent free cell you sunbe timehelp Andrew free space sunbe cause minimum possible number unit discomfort tourist detect impossible',
47
+ 'label': 1}
48
+ ```
49
+
50
+ The average token count for the articles and the highlights are provided below:
51
+
52
+ | Feature | Mean Token Count |
53
+ | ---------- | ---------------- |
54
+ | Question | 94.02 |
55
+
56
+ ### Data Fields
57
+
58
+ - `question`: a string containing the question of the coding problem
59
+ - `label` : a string containing the tag of the question
60
+
61
+ ### Data Splits
62
+
63
+ The CPTDS-3 dataset has just 1 split: _train_. Below is the statistics for the dataset.
64
+
65
+ | Dataset Split | Number of Instances in Split |
66
+ | ------------- | -------------------------------- |
67
+ | Train | 3012 |
68
+
69
+
70
+
71
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)