forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdlc.fbs
61 lines (53 loc) · 938 Bytes
/
dlc.fbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
namespace dlc;
table NetDef {
unk1: int;
nodes: [Node];
unk2: [int];
unk3: [int];
attributes: [Attribute];
}
table NetParam {
weights: [Weights];
}
table Node {
index: int;
name: string;
type: string;
inputs: [string];
outputs: [string];
attributes: [Attribute];
}
table Weights {
name: string;
tensors: [Tensor];
}
table Tensor {
name: string;
shape: [int];
data: TensorData;
attributes: [Attribute];
}
table TensorData {
data_type: ubyte;
bytes: [ubyte];
floats: [float];
}
table Attribute {
name: string;
type: ubyte;
bool_value: bool;
int32_value: int;
uint32_value: uint;
float32_value: float;
string_value: string;
unk6: [byte];
byte_list: [byte];
int32_list: [int];
float32_list: [float];
unk10: [byte];
attributes: [Attribute];
}
enum Activation : uint {
ReLU = 1,
Sigmoid = 3
}