lc10934 commited on
Commit
df3eddf
·
verified ·
1 Parent(s): 496fb1a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -33
README.md CHANGED
@@ -1,33 +1,32 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: source
5
- dtype: string
6
- - name: bytecode
7
- dtype: string
8
- - name: boundary
9
- dtype: string
10
- - name: file
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 540265
15
- num_examples: 158
16
- - name: test
17
- num_bytes: 88108
18
- num_examples: 25
19
- - name: valid
20
- num_bytes: 98617
21
- num_examples: 33
22
- download_size: 185635
23
- dataset_size: 726990
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: test
30
- path: data/test-*
31
- - split: valid
32
- path: data/valid-*
33
- ---
 
1
+
2
+ # test_refact
3
+
4
+ Created by the Syssec team @ UTD
5
+
6
+ Dataset Composition:
7
+
8
+ ```
9
+ /home/jjf190004/opensource/testing: (train: 25, test: 5, valid: 5)
10
+ ```
11
+
12
+ Python version: `3.11`
13
+
14
+
15
+ Dataset Statistics:
16
+
17
+ ```
18
+ DatasetDict({
19
+ train: Dataset({
20
+ features: ['source', 'bytecode', 'boundary', 'file'],
21
+ num_rows: 158
22
+ })
23
+ test: Dataset({
24
+ features: ['source', 'bytecode', 'boundary', 'file'],
25
+ num_rows: 25
26
+ })
27
+ valid: Dataset({
28
+ features: ['source', 'bytecode', 'boundary', 'file'],
29
+ num_rows: 33
30
+ })
31
+ })
32
+ ```