blob: 374a33ac341e72b3cb53f57bdba8658a7fb416b9 [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
Johan Alfvéna9fba262022-07-19 12:26:32 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class UnidirectionalSequenceLSTMOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
Johan Alfvéna9fba262022-07-19 12:26:32 +020013 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 = UnidirectionalSequenceLSTMOptions()
16 x.Init(buf, n + offset)
17 return x
18
Johan Alfvéna9fba262022-07-19 12:26:32 +020019 @classmethod
20 def GetRootAsUnidirectionalSequenceLSTMOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def UnidirectionalSequenceLSTMOptionsBufferHasIdentifier(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 # UnidirectionalSequenceLSTMOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # UnidirectionalSequenceLSTMOptions
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 # UnidirectionalSequenceLSTMOptions
39 def CellClip(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.Float32Flags, o + self._tab.Pos)
43 return 0.0
44
45 # UnidirectionalSequenceLSTMOptions
46 def ProjClip(self):
47 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
48 if o != 0:
49 return self._tab.Get(flatbuffers.number_types.Float32Flags, o + self._tab.Pos)
50 return 0.0
51
52 # UnidirectionalSequenceLSTMOptions
53 def TimeMajor(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
Jacob Bohlin8daf6b72020-09-15 16:28:35 +020059 # UnidirectionalSequenceLSTMOptions
60 def AsymmetricQuantizeInputs(self):
61 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
62 if o != 0:
63 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
64 return False
65
Johan Alfvéna9fba262022-07-19 12:26:32 +020066def Start(builder): builder.StartObject(5)
67def UnidirectionalSequenceLSTMOptionsStart(builder):
68 """This method is deprecated. Please switch to Start."""
69 return Start(builder)
70def AddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(0, fusedActivationFunction, 0)
71def UnidirectionalSequenceLSTMOptionsAddFusedActivationFunction(builder, fusedActivationFunction):
72 """This method is deprecated. Please switch to AddFusedActivationFunction."""
73 return AddFusedActivationFunction(builder, fusedActivationFunction)
74def AddCellClip(builder, cellClip): builder.PrependFloat32Slot(1, cellClip, 0.0)
75def UnidirectionalSequenceLSTMOptionsAddCellClip(builder, cellClip):
76 """This method is deprecated. Please switch to AddCellClip."""
77 return AddCellClip(builder, cellClip)
78def AddProjClip(builder, projClip): builder.PrependFloat32Slot(2, projClip, 0.0)
79def UnidirectionalSequenceLSTMOptionsAddProjClip(builder, projClip):
80 """This method is deprecated. Please switch to AddProjClip."""
81 return AddProjClip(builder, projClip)
82def AddTimeMajor(builder, timeMajor): builder.PrependBoolSlot(3, timeMajor, 0)
83def UnidirectionalSequenceLSTMOptionsAddTimeMajor(builder, timeMajor):
84 """This method is deprecated. Please switch to AddTimeMajor."""
85 return AddTimeMajor(builder, timeMajor)
86def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(4, asymmetricQuantizeInputs, 0)
87def UnidirectionalSequenceLSTMOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
88 """This method is deprecated. Please switch to AddAsymmetricQuantizeInputs."""
89 return AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
90def End(builder): return builder.EndObject()
91def UnidirectionalSequenceLSTMOptionsEnd(builder):
92 """This method is deprecated. Please switch to End."""
93 return End(builder)