├── LICENSE ├── README.md ├── __init__.py ├── schema.fbs ├── setup.py └── tflite ├── AbsOptions.py ├── ActivationFunctionType.py ├── AddNOptions.py ├── AddOptions.py ├── ArgMaxOptions.py ├── ArgMinOptions.py ├── BatchToSpaceNDOptions.py ├── BidirectionalSequenceLSTMOptions.py ├── BidirectionalSequenceRNNOptions.py ├── Buffer.py ├── BuiltinOperator.py ├── BuiltinOptions.py ├── CallOptions.py ├── CastOptions.py ├── CombinerType.py ├── ConcatEmbeddingsOptions.py ├── ConcatenationOptions.py ├── Conv2DOptions.py ├── CosOptions.py ├── CustomOptionsFormat.py ├── CustomQuantization.py ├── DepthToSpaceOptions.py ├── DepthwiseConv2DOptions.py ├── DequantizeOptions.py ├── DivOptions.py ├── EmbeddingLookupSparseOptions.py ├── EqualOptions.py ├── ExpOptions.py ├── ExpandDimsOptions.py ├── FakeQuantOptions.py ├── FillOptions.py ├── FloorDivOptions.py ├── FloorModOptions.py ├── FullyConnectedOptions.py ├── FullyConnectedOptionsWeightsFormat.py ├── GatherNdOptions.py ├── GatherOptions.py ├── GreaterEqualOptions.py ├── GreaterOptions.py ├── HardSwishOptions.py ├── IfOptions.py ├── L2NormOptions.py ├── LSHProjectionOptions.py ├── LSHProjectionType.py ├── LSTMKernelType.py ├── LSTMOptions.py ├── LeakyReluOptions.py ├── LessEqualOptions.py ├── LessOptions.py ├── LocalResponseNormalizationOptions.py ├── LogSoftmaxOptions.py ├── LogicalAndOptions.py ├── LogicalNotOptions.py ├── LogicalOrOptions.py ├── MatrixDiagOptions.py ├── MatrixSetDiagOptions.py ├── MaximumMinimumOptions.py ├── Metadata.py ├── MirrorPadMode.py ├── MirrorPadOptions.py ├── Model.py ├── MulOptions.py ├── NegOptions.py ├── NonMaxSuppressionV4Options.py ├── NonMaxSuppressionV5Options.py ├── NotEqualOptions.py ├── OneHotOptions.py ├── Operator.py ├── OperatorCode.py ├── PackOptions.py ├── PadOptions.py ├── PadV2Options.py ├── Padding.py ├── Pool2DOptions.py ├── PowOptions.py ├── QuantizationDetails.py ├── QuantizationParameters.py ├── QuantizeOptions.py ├── RNNOptions.py ├── RangeOptions.py ├── RankOptions.py ├── ReducerOptions.py ├── ReshapeOptions.py ├── ResizeBilinearOptions.py ├── ResizeNearestNeighborOptions.py ├── ReverseSequenceOptions.py ├── ReverseV2Options.py ├── SVDFOptions.py ├── ScatterNdOptions.py ├── SelectOptions.py ├── SequenceRNNOptions.py ├── ShapeOptions.py ├── SkipGramOptions.py ├── SliceOptions.py ├── SoftmaxOptions.py ├── SpaceToBatchNDOptions.py ├── SpaceToDepthOptions.py ├── SparseToDenseOptions.py ├── SplitOptions.py ├── SplitVOptions.py ├── SquareOptions.py ├── SquaredDifferenceOptions.py ├── SqueezeOptions.py ├── StridedSliceOptions.py ├── SubGraph.py ├── SubOptions.py ├── Tensor.py ├── TensorType.py ├── TileOptions.py ├── TopKV2Options.py ├── TransposeConvOptions.py ├── TransposeOptions.py ├── UnidirectionalSequenceLSTMOptions.py ├── UniqueOptions.py ├── UnpackOptions.py ├── WhereOptions.py ├── WhileOptions.py ├── ZerosLikeOptions.py └── __init__.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | name = "tflite" 2 | -------------------------------------------------------------------------------- /schema.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/schema.fbs -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/setup.py -------------------------------------------------------------------------------- /tflite/AbsOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/AbsOptions.py -------------------------------------------------------------------------------- /tflite/ActivationFunctionType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ActivationFunctionType.py -------------------------------------------------------------------------------- /tflite/AddNOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/AddNOptions.py -------------------------------------------------------------------------------- /tflite/AddOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/AddOptions.py -------------------------------------------------------------------------------- /tflite/ArgMaxOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ArgMaxOptions.py -------------------------------------------------------------------------------- /tflite/ArgMinOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ArgMinOptions.py -------------------------------------------------------------------------------- /tflite/BatchToSpaceNDOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/BatchToSpaceNDOptions.py -------------------------------------------------------------------------------- /tflite/BidirectionalSequenceLSTMOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/BidirectionalSequenceLSTMOptions.py -------------------------------------------------------------------------------- /tflite/BidirectionalSequenceRNNOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/BidirectionalSequenceRNNOptions.py -------------------------------------------------------------------------------- /tflite/Buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Buffer.py -------------------------------------------------------------------------------- /tflite/BuiltinOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/BuiltinOperator.py -------------------------------------------------------------------------------- /tflite/BuiltinOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/BuiltinOptions.py -------------------------------------------------------------------------------- /tflite/CallOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CallOptions.py -------------------------------------------------------------------------------- /tflite/CastOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CastOptions.py -------------------------------------------------------------------------------- /tflite/CombinerType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CombinerType.py -------------------------------------------------------------------------------- /tflite/ConcatEmbeddingsOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ConcatEmbeddingsOptions.py -------------------------------------------------------------------------------- /tflite/ConcatenationOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ConcatenationOptions.py -------------------------------------------------------------------------------- /tflite/Conv2DOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Conv2DOptions.py -------------------------------------------------------------------------------- /tflite/CosOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CosOptions.py -------------------------------------------------------------------------------- /tflite/CustomOptionsFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CustomOptionsFormat.py -------------------------------------------------------------------------------- /tflite/CustomQuantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/CustomQuantization.py -------------------------------------------------------------------------------- /tflite/DepthToSpaceOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/DepthToSpaceOptions.py -------------------------------------------------------------------------------- /tflite/DepthwiseConv2DOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/DepthwiseConv2DOptions.py -------------------------------------------------------------------------------- /tflite/DequantizeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/DequantizeOptions.py -------------------------------------------------------------------------------- /tflite/DivOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/DivOptions.py -------------------------------------------------------------------------------- /tflite/EmbeddingLookupSparseOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/EmbeddingLookupSparseOptions.py -------------------------------------------------------------------------------- /tflite/EqualOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/EqualOptions.py -------------------------------------------------------------------------------- /tflite/ExpOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ExpOptions.py -------------------------------------------------------------------------------- /tflite/ExpandDimsOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ExpandDimsOptions.py -------------------------------------------------------------------------------- /tflite/FakeQuantOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FakeQuantOptions.py -------------------------------------------------------------------------------- /tflite/FillOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FillOptions.py -------------------------------------------------------------------------------- /tflite/FloorDivOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FloorDivOptions.py -------------------------------------------------------------------------------- /tflite/FloorModOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FloorModOptions.py -------------------------------------------------------------------------------- /tflite/FullyConnectedOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FullyConnectedOptions.py -------------------------------------------------------------------------------- /tflite/FullyConnectedOptionsWeightsFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/FullyConnectedOptionsWeightsFormat.py -------------------------------------------------------------------------------- /tflite/GatherNdOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/GatherNdOptions.py -------------------------------------------------------------------------------- /tflite/GatherOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/GatherOptions.py -------------------------------------------------------------------------------- /tflite/GreaterEqualOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/GreaterEqualOptions.py -------------------------------------------------------------------------------- /tflite/GreaterOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/GreaterOptions.py -------------------------------------------------------------------------------- /tflite/HardSwishOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/HardSwishOptions.py -------------------------------------------------------------------------------- /tflite/IfOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/IfOptions.py -------------------------------------------------------------------------------- /tflite/L2NormOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/L2NormOptions.py -------------------------------------------------------------------------------- /tflite/LSHProjectionOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LSHProjectionOptions.py -------------------------------------------------------------------------------- /tflite/LSHProjectionType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LSHProjectionType.py -------------------------------------------------------------------------------- /tflite/LSTMKernelType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LSTMKernelType.py -------------------------------------------------------------------------------- /tflite/LSTMOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LSTMOptions.py -------------------------------------------------------------------------------- /tflite/LeakyReluOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LeakyReluOptions.py -------------------------------------------------------------------------------- /tflite/LessEqualOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LessEqualOptions.py -------------------------------------------------------------------------------- /tflite/LessOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LessOptions.py -------------------------------------------------------------------------------- /tflite/LocalResponseNormalizationOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LocalResponseNormalizationOptions.py -------------------------------------------------------------------------------- /tflite/LogSoftmaxOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LogSoftmaxOptions.py -------------------------------------------------------------------------------- /tflite/LogicalAndOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LogicalAndOptions.py -------------------------------------------------------------------------------- /tflite/LogicalNotOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LogicalNotOptions.py -------------------------------------------------------------------------------- /tflite/LogicalOrOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/LogicalOrOptions.py -------------------------------------------------------------------------------- /tflite/MatrixDiagOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MatrixDiagOptions.py -------------------------------------------------------------------------------- /tflite/MatrixSetDiagOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MatrixSetDiagOptions.py -------------------------------------------------------------------------------- /tflite/MaximumMinimumOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MaximumMinimumOptions.py -------------------------------------------------------------------------------- /tflite/Metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Metadata.py -------------------------------------------------------------------------------- /tflite/MirrorPadMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MirrorPadMode.py -------------------------------------------------------------------------------- /tflite/MirrorPadOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MirrorPadOptions.py -------------------------------------------------------------------------------- /tflite/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Model.py -------------------------------------------------------------------------------- /tflite/MulOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/MulOptions.py -------------------------------------------------------------------------------- /tflite/NegOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/NegOptions.py -------------------------------------------------------------------------------- /tflite/NonMaxSuppressionV4Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/NonMaxSuppressionV4Options.py -------------------------------------------------------------------------------- /tflite/NonMaxSuppressionV5Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/NonMaxSuppressionV5Options.py -------------------------------------------------------------------------------- /tflite/NotEqualOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/NotEqualOptions.py -------------------------------------------------------------------------------- /tflite/OneHotOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/OneHotOptions.py -------------------------------------------------------------------------------- /tflite/Operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Operator.py -------------------------------------------------------------------------------- /tflite/OperatorCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/OperatorCode.py -------------------------------------------------------------------------------- /tflite/PackOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/PackOptions.py -------------------------------------------------------------------------------- /tflite/PadOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/PadOptions.py -------------------------------------------------------------------------------- /tflite/PadV2Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/PadV2Options.py -------------------------------------------------------------------------------- /tflite/Padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Padding.py -------------------------------------------------------------------------------- /tflite/Pool2DOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Pool2DOptions.py -------------------------------------------------------------------------------- /tflite/PowOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/PowOptions.py -------------------------------------------------------------------------------- /tflite/QuantizationDetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/QuantizationDetails.py -------------------------------------------------------------------------------- /tflite/QuantizationParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/QuantizationParameters.py -------------------------------------------------------------------------------- /tflite/QuantizeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/QuantizeOptions.py -------------------------------------------------------------------------------- /tflite/RNNOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/RNNOptions.py -------------------------------------------------------------------------------- /tflite/RangeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/RangeOptions.py -------------------------------------------------------------------------------- /tflite/RankOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/RankOptions.py -------------------------------------------------------------------------------- /tflite/ReducerOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ReducerOptions.py -------------------------------------------------------------------------------- /tflite/ReshapeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ReshapeOptions.py -------------------------------------------------------------------------------- /tflite/ResizeBilinearOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ResizeBilinearOptions.py -------------------------------------------------------------------------------- /tflite/ResizeNearestNeighborOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ResizeNearestNeighborOptions.py -------------------------------------------------------------------------------- /tflite/ReverseSequenceOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ReverseSequenceOptions.py -------------------------------------------------------------------------------- /tflite/ReverseV2Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ReverseV2Options.py -------------------------------------------------------------------------------- /tflite/SVDFOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SVDFOptions.py -------------------------------------------------------------------------------- /tflite/ScatterNdOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ScatterNdOptions.py -------------------------------------------------------------------------------- /tflite/SelectOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SelectOptions.py -------------------------------------------------------------------------------- /tflite/SequenceRNNOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SequenceRNNOptions.py -------------------------------------------------------------------------------- /tflite/ShapeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ShapeOptions.py -------------------------------------------------------------------------------- /tflite/SkipGramOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SkipGramOptions.py -------------------------------------------------------------------------------- /tflite/SliceOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SliceOptions.py -------------------------------------------------------------------------------- /tflite/SoftmaxOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SoftmaxOptions.py -------------------------------------------------------------------------------- /tflite/SpaceToBatchNDOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SpaceToBatchNDOptions.py -------------------------------------------------------------------------------- /tflite/SpaceToDepthOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SpaceToDepthOptions.py -------------------------------------------------------------------------------- /tflite/SparseToDenseOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SparseToDenseOptions.py -------------------------------------------------------------------------------- /tflite/SplitOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SplitOptions.py -------------------------------------------------------------------------------- /tflite/SplitVOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SplitVOptions.py -------------------------------------------------------------------------------- /tflite/SquareOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SquareOptions.py -------------------------------------------------------------------------------- /tflite/SquaredDifferenceOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SquaredDifferenceOptions.py -------------------------------------------------------------------------------- /tflite/SqueezeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SqueezeOptions.py -------------------------------------------------------------------------------- /tflite/StridedSliceOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/StridedSliceOptions.py -------------------------------------------------------------------------------- /tflite/SubGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SubGraph.py -------------------------------------------------------------------------------- /tflite/SubOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/SubOptions.py -------------------------------------------------------------------------------- /tflite/Tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/Tensor.py -------------------------------------------------------------------------------- /tflite/TensorType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/TensorType.py -------------------------------------------------------------------------------- /tflite/TileOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/TileOptions.py -------------------------------------------------------------------------------- /tflite/TopKV2Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/TopKV2Options.py -------------------------------------------------------------------------------- /tflite/TransposeConvOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/TransposeConvOptions.py -------------------------------------------------------------------------------- /tflite/TransposeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/TransposeOptions.py -------------------------------------------------------------------------------- /tflite/UnidirectionalSequenceLSTMOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/UnidirectionalSequenceLSTMOptions.py -------------------------------------------------------------------------------- /tflite/UniqueOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/UniqueOptions.py -------------------------------------------------------------------------------- /tflite/UnpackOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/UnpackOptions.py -------------------------------------------------------------------------------- /tflite/WhereOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/WhereOptions.py -------------------------------------------------------------------------------- /tflite/WhileOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/WhileOptions.py -------------------------------------------------------------------------------- /tflite/ZerosLikeOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrozenGene/tflite/HEAD/tflite/ZerosLikeOptions.py -------------------------------------------------------------------------------- /tflite/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------