PeppoCola commited on
Commit
3ca9469
1 Parent(s): 3f1443e

Update model card

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md CHANGED
@@ -1,3 +1,65 @@
1
  ---
2
  license: gpl-3.0
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: gpl-3.0
3
+ language:
4
+ - en
5
+ metrics:
6
+ - f1
7
  ---
8
+
9
+ # Model Card
10
+
11
+ ## Model Details
12
+
13
+ - Model Name: IssueReportClassifier-NLBSE22
14
+ - Base Model: RoBERTa
15
+ - Dataset: NLBSE22
16
+ - Model Type: Fine-tuned
17
+ - Model Version: 1.0
18
+ - Model Date: 2023-03-21
19
+
20
+ ## Model Description
21
+
22
+ IssueReportClassifier-NLBSE22 is a RoBERTa model which is fine-tuned on the NLBSE22 dataset.
23
+ The model is trained to classify issue reports from GitHub into three categories: bug, enhancement, and question.
24
+ The model is trained on a dataset of labeled issue reports and is designed to predict the category of a new issue report based on its text content (title and body).
25
+
26
+ ## Dataset
27
+
28
+
29
+ | Category | Training Set | Test Set |
30
+ |------------|--------------|-------------|
31
+ | bug | 361,239 (50%) | 40,152 (49.9%) |
32
+ | enhancement | 299,287 (41.4%) | 33,290 (41.3%) |
33
+ | question | 62,373 (8.6%) | 7,076 (8.8%) |
34
+
35
+ ## Metrics
36
+
37
+ The model is evaluated using the following metrics:
38
+
39
+ - Accuracy
40
+ - Precision
41
+ - Recall
42
+ - F1 Score (micro and macro average)
43
+
44
+ ## References
45
+
46
+ - [NLBSE22 Dataset](https://nlbse2022.github.io/tools/)
47
+
48
+ ## Cite our work
49
+
50
+ ```
51
+ @inproceedings{Colavito-2022,
52
+ title = {Issue Report Classification Using Pre-trained Language Models},
53
+ booktitle = {2022 IEEE/ACM 1st International Workshop on Natural Language-Based Software Engineering (NLBSE)},
54
+ author = {Colavito, Giuseppe and Lanubile, Filippo and Novielli, Nicole},
55
+ year = {2022},
56
+ month = may,
57
+ pages = {29--32},
58
+ doi = {10.1145/3528588.3528659},
59
+ abstract = {This paper describes our participation in the tool competition organized in the scope of the 1st International Workshop on Natural Language-based Software Engineering. We propose a supervised approach relying on fine-tuned BERT-based language models for the automatic classification of GitHub issues. We experimented with different pre-trained models, achieving the best performance with fine-tuned RoBERTa (F1 = .8591).},
60
+ keywords = {Issue classification, BERT, deep learning, labeling unstructured data,
61
+ software maintenance and evolution},
62
+ }
63
+ ```
64
+
65
+ I hope this helps. Let me know if you have any other questions.