naufalso commited on
Commit
f1b7e88
·
verified ·
1 Parent(s): 6b5614c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -24,3 +24,46 @@ configs:
24
  - split: validation
25
  path: data/validation-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: validation
25
  path: data/validation-*
26
  ---
27
+
28
+ # Cybersecurity Topic Classification (CTC) Dataset
29
+
30
+ **Note:** This is an unofficial upload of the Cybersecurity Topic Classification (CTC) dataset. The original dataset and accompanying paper were developed by Elijah Pelofske, Lorie M. Liebrock, and Vincent Urias.
31
+
32
+ This dataset comprises training and validation data for the Cybersecurity Topic Classification (CTC) tool, as introduced in the paper "[A Robust Cybersecurity Topic Classification Tool](https://arxiv.org/abs/2109.02473)" by Elijah Pelofske, Lorie M. Liebrock, and Vincent Urias. The dataset facilitates the detection of cybersecurity-related discussions in natural English text.
33
+
34
+ ## Dataset Overview
35
+
36
+ The dataset includes unprocessed English text samples labeled as either cybersecurity-related or non-cybersecurity-related. These samples were sourced from Reddit, StackExchange sites, and arXiv documents, utilizing user-defined tags and metadata for labeling. Please note that the data has not undergone manual labeling, post-processing, filtering, or censorship; therefore, some labels may be incorrect.
37
+
38
+ ## Accessing the Data
39
+
40
+ You can load this dataset directly using the Hugging Face `datasets` library:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("naufalso/cybersec-topic-classification-dataset")
46
+ ```
47
+
48
+ ## Usage
49
+
50
+ This dataset is intended for research purposes, particularly in training and evaluating machine learning models for cybersecurity topic classification. Users should be aware of the potential for incorrect labels and the unprocessed nature of the text data.
51
+
52
+ ## Citation
53
+
54
+ If you utilize this dataset in your research, please cite the original paper:
55
+
56
+ ```
57
+ @article{pelofske2021robust,
58
+ title={A Robust Cybersecurity Topic Classification Tool},
59
+ author={Pelofske, Elijah and Liebrock, Lorie M. and Urias, Vincent},
60
+ journal={arXiv preprint arXiv:2109.02473},
61
+ year={2021}
62
+ }
63
+ ```
64
+
65
+ ## Acknowledgments
66
+
67
+ We extend our gratitude to the authors for providing this dataset and to the platforms Reddit, StackExchange, and arXiv for making their data publicly accessible.
68
+
69
+ For additional information and resources, please refer to the original [GitHub repository](https://github.com/epelofske-student/CTC).