conflick0 commited on
Commit
9de2130
1 Parent(s): 75e633c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -4
README.md CHANGED
@@ -7,12 +7,13 @@ metrics:
7
  model-index:
8
  - name: my_awesome_model
9
  results: []
 
10
  ---
11
 
12
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
  should probably proofread and complete it, then remove this comment. -->
14
 
15
- # my_awesome_model
16
 
17
  This model is a fine-tuned version of [allenai/scibert_scivocab_uncased](https://huggingface.co/allenai/scibert_scivocab_uncased) on the None dataset.
18
  It achieves the following results on the evaluation set:
@@ -21,8 +22,22 @@ It achieves the following results on the evaluation set:
21
 
22
  ## Model description
23
 
24
- More information needed
25
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## Intended uses & limitations
27
 
28
  More information needed
@@ -63,4 +78,4 @@ The following hyperparameters were used during training:
63
  - Transformers 4.38.2
64
  - Pytorch 2.2.1+cu121
65
  - Datasets 2.18.0
66
- - Tokenizers 0.15.2
 
7
  model-index:
8
  - name: my_awesome_model
9
  results: []
10
+ pipeline_tag: text-classification
11
  ---
12
 
13
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
  should probably proofread and complete it, then remove this comment. -->
15
 
16
+ # vuln-cat
17
 
18
  This model is a fine-tuned version of [allenai/scibert_scivocab_uncased](https://huggingface.co/allenai/scibert_scivocab_uncased) on the None dataset.
19
  It achieves the following results on the evaluation set:
 
22
 
23
  ## Model description
24
 
25
+ vuln-cat is a classification model based on fine-tuning of scibert. It categorizes CVE summaries into 11 types of vulnerabilities, with class labels including:
26
+ ```
27
+ [
28
+ 'csrf',
29
+ 'directory_traversal',
30
+ 'file_inclusion',
31
+ 'input_validation',
32
+ 'memory_corruption',
33
+ 'open_redirect',
34
+ 'overflow',
35
+ 'sql_injection',
36
+ 'ssrf',
37
+ 'xss',
38
+ 'xxe'
39
+ ]
40
+ ```
41
  ## Intended uses & limitations
42
 
43
  More information needed
 
78
  - Transformers 4.38.2
79
  - Pytorch 2.2.1+cu121
80
  - Datasets 2.18.0
81
+ - Tokenizers 0.15.2