blob: a6b4e40fb861f7c1ac5a847a70ace3c99ebed102 [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tflite
4
5import flatbuffers
6
7class FullyConnectedOptions(object):
8 __slots__ = ['_tab']
9
10 @classmethod
11 def GetRootAsFullyConnectedOptions(cls, buf, offset):
12 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
13 x = FullyConnectedOptions()
14 x.Init(buf, n + offset)
15 return x
16
17 # FullyConnectedOptions
18 def Init(self, buf, pos):
19 self._tab = flatbuffers.table.Table(buf, pos)
20
21 # FullyConnectedOptions
22 def FusedActivationFunction(self):
23 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
24 if o != 0:
25 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
26 return 0
27
28 # FullyConnectedOptions
29 def WeightsFormat(self):
30 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
31 if o != 0:
32 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
33 return 0
34
35 # FullyConnectedOptions
36 def KeepNumDims(self):
37 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
38 if o != 0:
39 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
40 return False
41
42def FullyConnectedOptionsStart(builder): builder.StartObject(3)
43def FullyConnectedOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(0, fusedActivationFunction, 0)
44def FullyConnectedOptionsAddWeightsFormat(builder, weightsFormat): builder.PrependInt8Slot(1, weightsFormat, 0)
45def FullyConnectedOptionsAddKeepNumDims(builder, keepNumDims): builder.PrependBoolSlot(2, keepNumDims, 0)
46def FullyConnectedOptionsEnd(builder): return builder.EndObject()