blob: 72ae00ba6ad83d72228a817ef8f2065b26416100 [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
Rickard Bolin2de898a2021-12-20 08:35:23 +00006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class FullyConnectedOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
Rickard Bolin2de898a2021-12-20 08:35:23 +000013 def GetRootAs(cls, buf, offset=0):
Tim Hall79d07d22020-04-27 18:20:16 +010014 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = FullyConnectedOptions()
16 x.Init(buf, n + offset)
17 return x
18
Dwight Lidman8a12da12021-07-19 13:43:05 +020019 @classmethod
Rickard Bolin2de898a2021-12-20 08:35:23 +000020 def GetRootAsFullyConnectedOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
Dwight Lidman8a12da12021-07-19 13:43:05 +020024 def FullyConnectedOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
Tim Hall79d07d22020-04-27 18:20:16 +010027 # FullyConnectedOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # FullyConnectedOptions
32 def FusedActivationFunction(self):
33 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
34 if o != 0:
35 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
36 return 0
37
38 # FullyConnectedOptions
39 def WeightsFormat(self):
40 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
41 if o != 0:
42 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
43 return 0
44
45 # FullyConnectedOptions
46 def KeepNumDims(self):
47 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
48 if o != 0:
49 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
50 return False
51
Jacob Bohlin8daf6b72020-09-15 16:28:35 +020052 # FullyConnectedOptions
53 def AsymmetricQuantizeInputs(self):
54 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
55 if o != 0:
56 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
57 return False
58
Rickard Bolind66f8012022-04-21 07:36:55 +000059def Start(builder): builder.StartObject(4)
60def FullyConnectedOptionsStart(builder):
61 """This method is deprecated. Please switch to Start."""
62 return Start(builder)
63def AddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(0, fusedActivationFunction, 0)
64def FullyConnectedOptionsAddFusedActivationFunction(builder, fusedActivationFunction):
65 """This method is deprecated. Please switch to AddFusedActivationFunction."""
66 return AddFusedActivationFunction(builder, fusedActivationFunction)
67def AddWeightsFormat(builder, weightsFormat): builder.PrependInt8Slot(1, weightsFormat, 0)
68def FullyConnectedOptionsAddWeightsFormat(builder, weightsFormat):
69 """This method is deprecated. Please switch to AddWeightsFormat."""
70 return AddWeightsFormat(builder, weightsFormat)
71def AddKeepNumDims(builder, keepNumDims): builder.PrependBoolSlot(2, keepNumDims, 0)
72def FullyConnectedOptionsAddKeepNumDims(builder, keepNumDims):
73 """This method is deprecated. Please switch to AddKeepNumDims."""
74 return AddKeepNumDims(builder, keepNumDims)
75def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(3, asymmetricQuantizeInputs, 0)
76def FullyConnectedOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
77 """This method is deprecated. Please switch to AddAsymmetricQuantizeInputs."""
78 return AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
79def End(builder): return builder.EndObject()
80def FullyConnectedOptionsEnd(builder):
81 """This method is deprecated. Please switch to End."""
82 return End(builder)