AnnyNguyen commited on
Commit
a3d77be
·
verified ·
1 Parent(s): e47cb59

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -18
README.md CHANGED
@@ -19,35 +19,35 @@ configs:
19
  - config_name: top10
20
  data_files:
21
  - split: train
22
- path: top10_train.jsonl
23
  - split: validation
24
- path: top10_val.jsonl
25
  - split: test
26
- path: top10_test.jsonl
27
  - config_name: top20
28
  data_files:
29
  - split: train
30
- path: top20_train.jsonl
31
  - split: validation
32
- path: top20_val.jsonl
33
  - split: test
34
- path: top20_test.jsonl
35
  - config_name: top50
36
  data_files:
37
  - split: train
38
- path: top50_train.jsonl
39
  - split: validation
40
- path: top50_val.jsonl
41
  - split: test
42
- path: top50_test.jsonl
43
  - config_name: full
44
  data_files:
45
  - split: train
46
- path: full_train.jsonl
47
  - split: validation
48
- path: full_val.jsonl
49
  - split: test
50
- path: full_test.jsonl
51
  ---
52
 
53
  # VulnBridge
@@ -79,14 +79,14 @@ variants are:
79
 
80
  ## Repository Files
81
 
82
- The Hugging Face repository uses a flat file layout:
83
 
84
  | Variant | Train | Validation | Test | CWE mapping |
85
  |---|---|---|---|---|
86
- | Top-10 | `top10_train.jsonl` | `top10_val.jsonl` | `top10_test.jsonl` | `top10_mapping` |
87
- | Top-20 | `top20_train.jsonl` | `top20_val.jsonl` | `top20_test.jsonl` | `top20_mapping` |
88
- | Top-50 | `top50_train.jsonl` | `top50_val.jsonl` | `top50_test.jsonl` | `top50_mapping` |
89
- | Full | `full_train.jsonl` | `full_val.jsonl` | `full_test.jsonl` | `full_mapping` |
90
 
91
  ## Source Datasets
92
 
@@ -106,7 +106,7 @@ sources:
106
 
107
  ## Data Format
108
 
109
- Each split is distributed as JSON Lines using the flat file names listed above. A typical record has the following
110
  fields:
111
 
112
  ```json
 
19
  - config_name: top10
20
  data_files:
21
  - split: train
22
+ path: top10/top10_train.jsonl
23
  - split: validation
24
+ path: top10/top10_val.jsonl
25
  - split: test
26
+ path: top10/top10_test.jsonl
27
  - config_name: top20
28
  data_files:
29
  - split: train
30
+ path: top20/top20_train.jsonl
31
  - split: validation
32
+ path: top20/top20_val.jsonl
33
  - split: test
34
+ path: top20/top20_test.jsonl
35
  - config_name: top50
36
  data_files:
37
  - split: train
38
+ path: top50/top50_train.jsonl
39
  - split: validation
40
+ path: top50/top50_val.jsonl
41
  - split: test
42
+ path: top50/top50_test.jsonl
43
  - config_name: full
44
  data_files:
45
  - split: train
46
+ path: full/full_train.jsonl
47
  - split: validation
48
+ path: full/full_val.jsonl
49
  - split: test
50
+ path: full/full_test.jsonl
51
  ---
52
 
53
  # VulnBridge
 
79
 
80
  ## Repository Files
81
 
82
+ The Hugging Face repository uses one directory per VulnBridge variant:
83
 
84
  | Variant | Train | Validation | Test | CWE mapping |
85
  |---|---|---|---|---|
86
+ | Top-10 | `top10/top10_train.jsonl` | `top10/top10_val.jsonl` | `top10/top10_test.jsonl` | `top10/top10_mapping` |
87
+ | Top-20 | `top20/top20_train.jsonl` | `top20/top20_val.jsonl` | `top20/top20_test.jsonl` | `top20/top20_mapping` |
88
+ | Top-50 | `top50/top50_train.jsonl` | `top50/top50_val.jsonl` | `top50/top50_test.jsonl` | `top50/top50_mapping` |
89
+ | Full | `full/full_train.jsonl` | `full/full_val.jsonl` | `full/full_test.jsonl` | `full/full_mapping` |
90
 
91
  ## Source Datasets
92
 
 
106
 
107
  ## Data Format
108
 
109
+ Each split is distributed as JSON Lines using the folder and file names listed above. A typical record has the following
110
  fields:
111
 
112
  ```json