blob: 7ee4a19f054025c8d77ce9c4ef7edb08c8c9f8f0 [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
Dwight Lidman8a12da12021-07-19 13:43:05 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class SoftmaxOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
13 def GetRootAsSoftmaxOptions(cls, buf, offset):
14 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = SoftmaxOptions()
16 x.Init(buf, n + offset)
17 return x
18
Dwight Lidman8a12da12021-07-19 13:43:05 +020019 @classmethod
20 def SoftmaxOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
21 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
22
Tim Hall79d07d22020-04-27 18:20:16 +010023 # SoftmaxOptions
24 def Init(self, buf, pos):
25 self._tab = flatbuffers.table.Table(buf, pos)
26
27 # SoftmaxOptions
28 def Beta(self):
29 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
30 if o != 0:
31 return self._tab.Get(flatbuffers.number_types.Float32Flags, o + self._tab.Pos)
32 return 0.0
33
34def SoftmaxOptionsStart(builder): builder.StartObject(1)
35def SoftmaxOptionsAddBeta(builder, beta): builder.PrependFloat32Slot(0, beta, 0.0)
36def SoftmaxOptionsEnd(builder): return builder.EndObject()