Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- ticket tagger
|
4 |
+
metrics:
|
5 |
+
- accuracy
|
6 |
+
model-index:
|
7 |
+
- name: distil-bert-uncased-finetuned-github-issues
|
8 |
+
results:
|
9 |
+
- task:
|
10 |
+
name: Text Classification
|
11 |
+
type: text-classification
|
12 |
+
dataset:
|
13 |
+
name: ticket tagger
|
14 |
+
type: ticket tagger
|
15 |
+
args: full
|
16 |
+
metrics:
|
17 |
+
- name: Accuracy
|
18 |
+
type: accuracy
|
19 |
+
value: 0.7862
|
20 |
+
---
|
21 |
+
# Model Description
|
22 |
+
|
23 |
+
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) and fine-tuning it on the
|
24 |
+
[github ticket tagger dataset](https://tickettagger.blob.core.windows.net/datasets/dataset-labels-top3-30k-real.txt). It classifies issue into 3 common categories: Bug, Enhancement, Questions.
|
25 |
+
|
26 |
+
It achieves the following results on the evaluation set:
|
27 |
+
- Accuracy: 0.7862
|
28 |
+
|
29 |
+
### Training hyperparameters
|
30 |
+
|
31 |
+
The following hyperparameters were used during training:
|
32 |
+
- learning_rate: 3e-5
|
33 |
+
- train_batch_size: 16
|
34 |
+
- optimizer: AdamW with betas=(0.9,0.999) and epsilon=1e-08
|
35 |
+
- lr_scheduler_type: linear
|
36 |
+
- lr_scheduler_warmup_steps: 0
|
37 |
+
- num_epochs: 5
|
38 |
+
### Codes
|
39 |
+
https://github.com/IvanLauLinTiong/IntelliLabel
|