mihai-chindris commited on
Commit
175a29e
·
verified ·
1 Parent(s): b5f6e64

Add feature_schema.json

Browse files
Files changed (1) hide show
  1. feature_schema.json +132 -0
feature_schema.json ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_type": "metadata-only",
3
+ "contains_raw_rows": false,
4
+ "contains_model_training_examples": false,
5
+ "source_dataset": {
6
+ "name": "Brazilian Malware Dataset",
7
+ "source_repository": "https://github.com/fabriciojoc/brazilian-malware-dataset",
8
+ "source_archive": "https://github.com/fabriciojoc/brazilian-malware-dataset/raw/master/brazilian-malware.zip",
9
+ "redistribution_rights_verified": false,
10
+ "note": "Source repository does not expose an explicit LICENSE file at time of publication."
11
+ },
12
+ "target": {
13
+ "name": "Label",
14
+ "dtype": "int64",
15
+ "classes": {
16
+ "0": "goodware",
17
+ "1": "malware"
18
+ }
19
+ },
20
+ "features": [
21
+ {
22
+ "name": "BaseOfCode",
23
+ "dtype": "numeric",
24
+ "description": "Static PE-header derived numeric feature."
25
+ },
26
+ {
27
+ "name": "BaseOfData",
28
+ "dtype": "numeric",
29
+ "description": "Static PE-header derived numeric feature."
30
+ },
31
+ {
32
+ "name": "Characteristics",
33
+ "dtype": "numeric",
34
+ "description": "Static PE-header derived numeric feature."
35
+ },
36
+ {
37
+ "name": "DllCharacteristics",
38
+ "dtype": "numeric",
39
+ "description": "Static PE-header derived numeric feature."
40
+ },
41
+ {
42
+ "name": "Entropy",
43
+ "dtype": "numeric",
44
+ "description": "Static PE-header derived numeric feature."
45
+ },
46
+ {
47
+ "name": "FileAlignment",
48
+ "dtype": "numeric",
49
+ "description": "Static PE-header derived numeric feature."
50
+ },
51
+ {
52
+ "name": "ImageBase",
53
+ "dtype": "numeric",
54
+ "description": "Static PE-header derived numeric feature."
55
+ },
56
+ {
57
+ "name": "Machine",
58
+ "dtype": "numeric",
59
+ "description": "Static PE-header derived numeric feature."
60
+ },
61
+ {
62
+ "name": "Magic",
63
+ "dtype": "numeric",
64
+ "description": "Static PE-header derived numeric feature."
65
+ },
66
+ {
67
+ "name": "NumberOfRvaAndSizes",
68
+ "dtype": "numeric",
69
+ "description": "Static PE-header derived numeric feature."
70
+ },
71
+ {
72
+ "name": "NumberOfSections",
73
+ "dtype": "numeric",
74
+ "description": "Static PE-header derived numeric feature."
75
+ },
76
+ {
77
+ "name": "NumberOfSymbols",
78
+ "dtype": "numeric",
79
+ "description": "Static PE-header derived numeric feature."
80
+ },
81
+ {
82
+ "name": "PE_TYPE",
83
+ "dtype": "numeric",
84
+ "description": "Static PE-header derived numeric feature."
85
+ },
86
+ {
87
+ "name": "PointerToSymbolTable",
88
+ "dtype": "numeric",
89
+ "description": "Static PE-header derived numeric feature."
90
+ },
91
+ {
92
+ "name": "Size",
93
+ "dtype": "numeric",
94
+ "description": "Static PE-header derived numeric feature."
95
+ },
96
+ {
97
+ "name": "SizeOfCode",
98
+ "dtype": "numeric",
99
+ "description": "Static PE-header derived numeric feature."
100
+ },
101
+ {
102
+ "name": "SizeOfHeaders",
103
+ "dtype": "numeric",
104
+ "description": "Static PE-header derived numeric feature."
105
+ },
106
+ {
107
+ "name": "SizeOfImage",
108
+ "dtype": "numeric",
109
+ "description": "Static PE-header derived numeric feature."
110
+ },
111
+ {
112
+ "name": "SizeOfInitializedData",
113
+ "dtype": "numeric",
114
+ "description": "Static PE-header derived numeric feature."
115
+ },
116
+ {
117
+ "name": "SizeOfOptionalHeader",
118
+ "dtype": "numeric",
119
+ "description": "Static PE-header derived numeric feature."
120
+ },
121
+ {
122
+ "name": "SizeOfUninitializedData",
123
+ "dtype": "numeric",
124
+ "description": "Static PE-header derived numeric feature."
125
+ },
126
+ {
127
+ "name": "TimeDateStamp",
128
+ "dtype": "numeric",
129
+ "description": "Static PE-header derived numeric feature."
130
+ }
131
+ ]
132
+ }