deepview-converter 3.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. deepview_converter-3.0.0.dist-info/METADATA +18 -0
  2. deepview_converter-3.0.0.dist-info/RECORD +167 -0
  3. deepview_converter-3.0.0.dist-info/WHEEL +5 -0
  4. deepview_converter-3.0.0.dist-info/entry_points.txt +2 -0
  5. deepview_converter-3.0.0.dist-info/licenses/LICENSE.txt +258 -0
  6. deepview_converter-3.0.0.dist-info/top_level.txt +1 -0
  7. deepview_rtm/__init__.py +1 -0
  8. deepview_rtm/__main__.py +350 -0
  9. deepview_rtm/calc_shapes.py +78 -0
  10. deepview_rtm/converter/__init__.py +1 -0
  11. deepview_rtm/converter/plugin_api/__init__.py +0 -0
  12. deepview_rtm/converter/plugin_api/dataset.py +143 -0
  13. deepview_rtm/converter/plugin_api/dataset_interface.py +42 -0
  14. deepview_rtm/converter/plugin_api/datasets/__init__.py +63 -0
  15. deepview_rtm/converter/plugin_api/datasets/classification/__init__.py +0 -0
  16. deepview_rtm/converter/plugin_api/datasets/classification/image/__init__.py +180 -0
  17. deepview_rtm/converter/plugin_api/datasets/core.py +198 -0
  18. deepview_rtm/converter/plugin_api/datasets/detection/__init__.py +2 -0
  19. deepview_rtm/converter/plugin_api/datasets/detection/boxes/__init__.py +259 -0
  20. deepview_rtm/cudnn_weights_converter.py +157 -0
  21. deepview_rtm/exporter_v1.py +2882 -0
  22. deepview_rtm/onnx/__init__.py +0 -0
  23. deepview_rtm/onnx/onnx_ml_pb2.py +1626 -0
  24. deepview_rtm/onnx_importer.py +3859 -0
  25. deepview_rtm/optimizer.py +2276 -0
  26. deepview_rtm/rtm_importer.py +579 -0
  27. deepview_rtm/tensorflow/__init__.py +26 -0
  28. deepview_rtm/tensorflow_importer.py +2253 -0
  29. deepview_rtm/tflite/AbsOptions.py +22 -0
  30. deepview_rtm/tflite/ActivationFunctionType.py +12 -0
  31. deepview_rtm/tflite/AddNOptions.py +22 -0
  32. deepview_rtm/tflite/AddOptions.py +30 -0
  33. deepview_rtm/tflite/ArgMaxOptions.py +30 -0
  34. deepview_rtm/tflite/ArgMinOptions.py +30 -0
  35. deepview_rtm/tflite/BatchMatMulOptions.py +38 -0
  36. deepview_rtm/tflite/BatchToSpaceNDOptions.py +22 -0
  37. deepview_rtm/tflite/BidirectionalSequenceLSTMOptions.py +70 -0
  38. deepview_rtm/tflite/BidirectionalSequenceRNNOptions.py +54 -0
  39. deepview_rtm/tflite/BroadcastToOptions.py +28 -0
  40. deepview_rtm/tflite/Buffer.py +46 -0
  41. deepview_rtm/tflite/BuiltinOperator.py +133 -0
  42. deepview_rtm/tflite/BuiltinOptions.py +108 -0
  43. deepview_rtm/tflite/CallOnceOptions.py +36 -0
  44. deepview_rtm/tflite/CallOptions.py +30 -0
  45. deepview_rtm/tflite/CastOptions.py +38 -0
  46. deepview_rtm/tflite/CombinerType.py +9 -0
  47. deepview_rtm/tflite/ConcatEmbeddingsOptions.py +78 -0
  48. deepview_rtm/tflite/ConcatenationOptions.py +38 -0
  49. deepview_rtm/tflite/Conv2DOptions.py +70 -0
  50. deepview_rtm/tflite/CosOptions.py +22 -0
  51. deepview_rtm/tflite/CumsumOptions.py +44 -0
  52. deepview_rtm/tflite/CustomOptionsFormat.py +7 -0
  53. deepview_rtm/tflite/CustomQuantization.py +46 -0
  54. deepview_rtm/tflite/DensifyOptions.py +22 -0
  55. deepview_rtm/tflite/DepthToSpaceOptions.py +30 -0
  56. deepview_rtm/tflite/DepthwiseConv2DOptions.py +78 -0
  57. deepview_rtm/tflite/DequantizeOptions.py +22 -0
  58. deepview_rtm/tflite/DimensionMetadata.py +76 -0
  59. deepview_rtm/tflite/DimensionType.py +8 -0
  60. deepview_rtm/tflite/DivOptions.py +30 -0
  61. deepview_rtm/tflite/EmbeddingLookupSparseOptions.py +30 -0
  62. deepview_rtm/tflite/EqualOptions.py +22 -0
  63. deepview_rtm/tflite/ExpOptions.py +22 -0
  64. deepview_rtm/tflite/ExpandDimsOptions.py +22 -0
  65. deepview_rtm/tflite/FakeQuantOptions.py +54 -0
  66. deepview_rtm/tflite/FillOptions.py +22 -0
  67. deepview_rtm/tflite/FloorDivOptions.py +22 -0
  68. deepview_rtm/tflite/FloorModOptions.py +22 -0
  69. deepview_rtm/tflite/FullyConnectedOptions.py +54 -0
  70. deepview_rtm/tflite/FullyConnectedOptionsWeightsFormat.py +8 -0
  71. deepview_rtm/tflite/GatherNdOptions.py +22 -0
  72. deepview_rtm/tflite/GatherOptions.py +30 -0
  73. deepview_rtm/tflite/GreaterEqualOptions.py +22 -0
  74. deepview_rtm/tflite/GreaterOptions.py +22 -0
  75. deepview_rtm/tflite/HardSwishOptions.py +22 -0
  76. deepview_rtm/tflite/IfOptions.py +38 -0
  77. deepview_rtm/tflite/Int32Vector.py +46 -0
  78. deepview_rtm/tflite/L2NormOptions.py +30 -0
  79. deepview_rtm/tflite/LSHProjectionOptions.py +30 -0
  80. deepview_rtm/tflite/LSHProjectionType.py +9 -0
  81. deepview_rtm/tflite/LSTMKernelType.py +8 -0
  82. deepview_rtm/tflite/LSTMOptions.py +62 -0
  83. deepview_rtm/tflite/LeakyReluOptions.py +30 -0
  84. deepview_rtm/tflite/LessEqualOptions.py +22 -0
  85. deepview_rtm/tflite/LessOptions.py +22 -0
  86. deepview_rtm/tflite/LocalResponseNormalizationOptions.py +54 -0
  87. deepview_rtm/tflite/LogSoftmaxOptions.py +22 -0
  88. deepview_rtm/tflite/LogicalAndOptions.py +22 -0
  89. deepview_rtm/tflite/LogicalNotOptions.py +22 -0
  90. deepview_rtm/tflite/LogicalOrOptions.py +22 -0
  91. deepview_rtm/tflite/MatrixDiagOptions.py +22 -0
  92. deepview_rtm/tflite/MatrixSetDiagOptions.py +22 -0
  93. deepview_rtm/tflite/MaximumMinimumOptions.py +22 -0
  94. deepview_rtm/tflite/Metadata.py +38 -0
  95. deepview_rtm/tflite/MirrorPadMode.py +8 -0
  96. deepview_rtm/tflite/MirrorPadOptions.py +30 -0
  97. deepview_rtm/tflite/Model.py +150 -0
  98. deepview_rtm/tflite/MulOptions.py +30 -0
  99. deepview_rtm/tflite/NegOptions.py +22 -0
  100. deepview_rtm/tflite/NonMaxSuppressionV4Options.py +22 -0
  101. deepview_rtm/tflite/NonMaxSuppressionV5Options.py +22 -0
  102. deepview_rtm/tflite/NotEqualOptions.py +22 -0
  103. deepview_rtm/tflite/OneHotOptions.py +30 -0
  104. deepview_rtm/tflite/Operator.py +177 -0
  105. deepview_rtm/tflite/OperatorCode.py +46 -0
  106. deepview_rtm/tflite/PackOptions.py +38 -0
  107. deepview_rtm/tflite/PadOptions.py +22 -0
  108. deepview_rtm/tflite/PadV2Options.py +22 -0
  109. deepview_rtm/tflite/Padding.py +8 -0
  110. deepview_rtm/tflite/Pool2DOptions.py +70 -0
  111. deepview_rtm/tflite/PowOptions.py +22 -0
  112. deepview_rtm/tflite/QuantizationDetails.py +8 -0
  113. deepview_rtm/tflite/QuantizationParameters.py +145 -0
  114. deepview_rtm/tflite/QuantizeOptions.py +22 -0
  115. deepview_rtm/tflite/RNNOptions.py +38 -0
  116. deepview_rtm/tflite/RangeOptions.py +22 -0
  117. deepview_rtm/tflite/RankOptions.py +22 -0
  118. deepview_rtm/tflite/ReducerOptions.py +30 -0
  119. deepview_rtm/tflite/ReshapeOptions.py +46 -0
  120. deepview_rtm/tflite/ResizeBilinearOptions.py +38 -0
  121. deepview_rtm/tflite/ResizeNearestNeighborOptions.py +38 -0
  122. deepview_rtm/tflite/ReverseSequenceOptions.py +38 -0
  123. deepview_rtm/tflite/ReverseV2Options.py +22 -0
  124. deepview_rtm/tflite/Rfft2dOptions.py +28 -0
  125. deepview_rtm/tflite/SVDFOptions.py +46 -0
  126. deepview_rtm/tflite/ScatterNdOptions.py +22 -0
  127. deepview_rtm/tflite/SegmentSumOptions.py +22 -0
  128. deepview_rtm/tflite/SelectOptions.py +22 -0
  129. deepview_rtm/tflite/SelectV2Options.py +22 -0
  130. deepview_rtm/tflite/SequenceRNNOptions.py +46 -0
  131. deepview_rtm/tflite/ShapeOptions.py +30 -0
  132. deepview_rtm/tflite/SignatureDef.py +98 -0
  133. deepview_rtm/tflite/SkipGramOptions.py +46 -0
  134. deepview_rtm/tflite/SliceOptions.py +22 -0
  135. deepview_rtm/tflite/SoftmaxOptions.py +30 -0
  136. deepview_rtm/tflite/SpaceToBatchNDOptions.py +22 -0
  137. deepview_rtm/tflite/SpaceToDepthOptions.py +30 -0
  138. deepview_rtm/tflite/SparseIndexVector.py +10 -0
  139. deepview_rtm/tflite/SparseToDenseOptions.py +30 -0
  140. deepview_rtm/tflite/SparsityParameters.py +92 -0
  141. deepview_rtm/tflite/SplitOptions.py +30 -0
  142. deepview_rtm/tflite/SplitVOptions.py +30 -0
  143. deepview_rtm/tflite/SquareOptions.py +22 -0
  144. deepview_rtm/tflite/SquaredDifferenceOptions.py +22 -0
  145. deepview_rtm/tflite/SqueezeOptions.py +46 -0
  146. deepview_rtm/tflite/StridedSliceOptions.py +62 -0
  147. deepview_rtm/tflite/SubGraph.py +122 -0
  148. deepview_rtm/tflite/SubOptions.py +30 -0
  149. deepview_rtm/tflite/Tensor.py +126 -0
  150. deepview_rtm/tflite/TensorMap.py +44 -0
  151. deepview_rtm/tflite/TensorType.py +17 -0
  152. deepview_rtm/tflite/TileOptions.py +22 -0
  153. deepview_rtm/tflite/TopKV2Options.py +22 -0
  154. deepview_rtm/tflite/TransposeConvOptions.py +46 -0
  155. deepview_rtm/tflite/TransposeOptions.py +22 -0
  156. deepview_rtm/tflite/Uint16Vector.py +46 -0
  157. deepview_rtm/tflite/Uint8Vector.py +46 -0
  158. deepview_rtm/tflite/UnidirectionalSequenceLSTMOptions.py +62 -0
  159. deepview_rtm/tflite/UniqueOptions.py +30 -0
  160. deepview_rtm/tflite/UnpackOptions.py +38 -0
  161. deepview_rtm/tflite/WhereOptions.py +22 -0
  162. deepview_rtm/tflite/WhileOptions.py +38 -0
  163. deepview_rtm/tflite/ZerosLikeOptions.py +22 -0
  164. deepview_rtm/tflite/__init__.py +0 -0
  165. deepview_rtm/tflite_importer.py +2846 -0
  166. deepview_rtm/toco_from_protos.py +97 -0
  167. deepview_rtm/utils.py +842 -0
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: deepview-converter
3
+ Version: 3.0.0
4
+ Summary: DeepViewRT Converter
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE.txt
8
+ Requires-Dist: deepview-rt>=2.6.3
9
+ Dynamic: license-file
10
+
11
+ # README #
12
+
13
+ ### Unit Test ###
14
+ pip install pytest-html
15
+
16
+ python -m pytest --html=tests\report.html -s --capture=tee-sys --self-contained-html
17
+
18
+ Output in report.html
@@ -0,0 +1,167 @@
1
+ deepview_converter-3.0.0.dist-info/licenses/LICENSE.txt,sha256=IPpj6zmmOzW9koUZDrw5hAjqEyL9Co5kJ56-V9cTFWQ,11716
2
+ deepview_rtm/__init__.py,sha256=EPmgXOdWKks5S__ZMH7Nu6xpAeVrZpfxaFy4pykuyeI,22
3
+ deepview_rtm/__main__.py,sha256=xenSU2T79jkXYN7LfHQJhY-roGI1cgXwDSNY1AUf2E8,17359
4
+ deepview_rtm/calc_shapes.py,sha256=XhdcOSPKcI7YkcYgUQ9F9BnvZpMODsq8hlYXwRM0dF8,2355
5
+ deepview_rtm/cudnn_weights_converter.py,sha256=Udi85S92Hp9pgxpSuxWcfRZJBk_AN7a9onLBf-k1MUI,6566
6
+ deepview_rtm/exporter_v1.py,sha256=6omFRlATH1rxCfeTuJZNmIj1XLzKIUCivNblw1ofV3I,118291
7
+ deepview_rtm/onnx_importer.py,sha256=LNKX-45b3QQXzxIH9dimU6SEi1Tq_IrTRIR3XuxEsdE,166640
8
+ deepview_rtm/optimizer.py,sha256=iFzK63OExcprdp7V5enQG7ZPQBYC4F0W8Fa5CQ1VPw0,106671
9
+ deepview_rtm/rtm_importer.py,sha256=9h1T1FWNBpwK_rI_eEypr0YpFKEb3k3KiOG7NZZblDI,22922
10
+ deepview_rtm/tensorflow_importer.py,sha256=zDkyrcb6kOWsj_Agn4PEhJxRwchbUwRrCWWJmYOKMNc,91242
11
+ deepview_rtm/tflite_importer.py,sha256=tDD6W6WiyIA6jzGWLfNN9KiKiLI29N1HNJrc8r8JhIw,129314
12
+ deepview_rtm/toco_from_protos.py,sha256=dhcNcXfi5PP3QGxMndOWLfOzrwAEeIdqm7nK-qucEMY,3196
13
+ deepview_rtm/utils.py,sha256=mZiYAAdgyzCjtNHzDrXiGtHlU7Gq13dMGNnCRXxnUAk,33702
14
+ deepview_rtm/converter/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
15
+ deepview_rtm/converter/plugin_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ deepview_rtm/converter/plugin_api/dataset.py,sha256=eGFrLL0GpQcC_Q3mg5pgC1PEfXOUoVXO_djzNwNwiYk,7277
17
+ deepview_rtm/converter/plugin_api/dataset_interface.py,sha256=Jhd9QVo1jdrvLngYD1Wy4PbzmMVHsrddM1fG59_qp1I,1406
18
+ deepview_rtm/converter/plugin_api/datasets/__init__.py,sha256=YFJO8b6ROsi3uFfruS6sIBcfuvCNblsitd5Bz9swjEE,2378
19
+ deepview_rtm/converter/plugin_api/datasets/core.py,sha256=rbu-UqI7mcJl4u1HDkuR0opPChsZm8GiGcSJQSPtJeE,6021
20
+ deepview_rtm/converter/plugin_api/datasets/classification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ deepview_rtm/converter/plugin_api/datasets/classification/image/__init__.py,sha256=_-uKopWVcaeW4flzKo22TIZbP3NSoXp8qdOAwFiFgZk,6608
22
+ deepview_rtm/converter/plugin_api/datasets/detection/__init__.py,sha256=daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes_sHA,2
23
+ deepview_rtm/converter/plugin_api/datasets/detection/boxes/__init__.py,sha256=AV-bRVN_PJnvqh6twcOFApTUzyUnEMLLi1hEiLUajuw,9643
24
+ deepview_rtm/onnx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ deepview_rtm/onnx/onnx_ml_pb2.py,sha256=v3CsdxwfXMvePnw3M7tU0zjM-kjdSokaWIf3UZuJFdQ,68902
26
+ deepview_rtm/tensorflow/__init__.py,sha256=p6XFy0_LklYzVr6KNyLEuEtDdxDxf2gQDkOWTkcLcwU,965
27
+ deepview_rtm/tflite/AbsOptions.py,sha256=uSXnwYCOckcJXCrgpPHJjd2RLFK8axF20AHKmtb9aQM,588
28
+ deepview_rtm/tflite/ActivationFunctionType.py,sha256=Si3AXNsR46wxNPP_YvKDAxpHn0sHV-HF-zEEYq6VoIw,221
29
+ deepview_rtm/tflite/AddNOptions.py,sha256=YWjAvD8Z8hhQjfYgmgD_USVX73HYe2HhT-i3OiGwZWs,594
30
+ deepview_rtm/tflite/AddOptions.py,sha256=_5G0Uok4KJUjkgW2b-whErrwRk0Ml__Yo0_GMjI0bPs,980
31
+ deepview_rtm/tflite/ArgMaxOptions.py,sha256=DJwZp8hIezFCpQVTeSlcUPJNmJcYu2woHGZIKdh4TvA,952
32
+ deepview_rtm/tflite/ArgMinOptions.py,sha256=GvFoBmetuL5GWVdfoK9uvuOHGp-6iMiueqPfWetHRBU,952
33
+ deepview_rtm/tflite/BatchMatMulOptions.py,sha256=cv3UFb6hG9wMN1Wr_mLwsx2FRY1KCZxtDKOFtt2Vqqs,1320
34
+ deepview_rtm/tflite/BatchToSpaceNDOptions.py,sha256=kgO1cLRprI6JZzESq0CL1YUKGR5WFqbRPJYISR3beV0,654
35
+ deepview_rtm/tflite/BidirectionalSequenceLSTMOptions.py,sha256=Xdyr7SD7m1gg9QQvSKykKQYbRpUtQQzUxS60dmqZJoA,3172
36
+ deepview_rtm/tflite/BidirectionalSequenceRNNOptions.py,sha256=K1TCB8yPSvsRG4CKhth6Ct65U3OlPIulpcwNPPCcisQ,2385
37
+ deepview_rtm/tflite/BroadcastToOptions.py,sha256=IuNazA9da3jzQqwwcvJxA2KUCRfUihK8d7E0gTiqPo4,919
38
+ deepview_rtm/tflite/Buffer.py,sha256=6e3OAm6DQK41mcu2tSVNpl29XaHUdepJGY2v7T14vAo,1542
39
+ deepview_rtm/tflite/BuiltinOperator.py,sha256=4GuQKpi7bIEGWvmQhbXIIVImVAV4E74gig2SSN8PQzg,2595
40
+ deepview_rtm/tflite/BuiltinOptions.py,sha256=SyrjEG5d9pDV5OJ5zNXVuNfffsYs3Pygjb6XbPAe77c,2745
41
+ deepview_rtm/tflite/CallOnceOptions.py,sha256=cyR7ERVGE5py8HJG8QOXV5t9eZWksxRYa4OWDaIoK4w,1278
42
+ deepview_rtm/tflite/CallOptions.py,sha256=dGb6t2hqE1IGBO4GKmyu4Esn8gXbf9zfCMkxxNUIpzE,932
43
+ deepview_rtm/tflite/CastOptions.py,sha256=U1zjjyy8YzN3LMJHweq1XVRAWOuMipmMsOtpuqsWgas,1282
44
+ deepview_rtm/tflite/CombinerType.py,sha256=pRybkoBlEDQ56W-XsLlceRagZdxHfr9rfTviwFybuwg,159
45
+ deepview_rtm/tflite/ConcatEmbeddingsOptions.py,sha256=lqaKnDclixAodKEEJXsiGEw90J5gUfy5RoqBwc1HAc0,3402
46
+ deepview_rtm/tflite/ConcatenationOptions.py,sha256=a1L5gQxEbRpUspJEDQrMuiHKB3qd2ZG32_T1SruRPi4,1398
47
+ deepview_rtm/tflite/Conv2DOptions.py,sha256=5kxjF6Ncqs0FZg4CgIitlyIB6dUXVhwbGZ5QNfAE2jw,2749
48
+ deepview_rtm/tflite/CosOptions.py,sha256=XNkqX3jgkeRT8h1o3fGV6tiedA_mrvMOwyfg_b11OT0,588
49
+ deepview_rtm/tflite/CumsumOptions.py,sha256=N9_ZiK9LQVKkf4ldPWC6V5sOtvq62LZWV2R019Em9p4,1580
50
+ deepview_rtm/tflite/CustomOptionsFormat.py,sha256=FMdvBHFKQmRVMsUWPSTFIwRrRifuR9eD1Z-zSpndjM4,147
51
+ deepview_rtm/tflite/CustomQuantization.py,sha256=kLx8trdrCgmhB2egfWAcqCcDQKHuuSc-NtUt6Flge0M,1688
52
+ deepview_rtm/tflite/DensifyOptions.py,sha256=fp2HiS-S0IoKs7DnwtDtiRn6Ue0z7q08U6Um2nQfMsc,612
53
+ deepview_rtm/tflite/DepthToSpaceOptions.py,sha256=ozyI0ASyFnnxPGNf-aVXp9-1Mqwgy-71mcGwF9mil58,998
54
+ deepview_rtm/tflite/DepthwiseConv2DOptions.py,sha256=cWbi-eDzchmoWHrKrSSFDO05grtq0sISt430o4W0OHc,3298
55
+ deepview_rtm/tflite/DequantizeOptions.py,sha256=IHHgeLLx-5rhlU9P8KTp94SQwDukT5u7hyhCk0JlR3g,630
56
+ deepview_rtm/tflite/DimensionMetadata.py,sha256=C39llpqViLgK4cQaBSSwHarkaVmtXpEXMczHGH6K6c4,3059
57
+ deepview_rtm/tflite/DimensionType.py,sha256=uKmeNMAulUBadhAE60-Sg9a-uuOlB_2A6Lm2FUWpQM0,154
58
+ deepview_rtm/tflite/DivOptions.py,sha256=XQv97wUoFw8-qkhbbqgU-DOGuhkuOp5ZnBr-BqR_I-8,980
59
+ deepview_rtm/tflite/EmbeddingLookupSparseOptions.py,sha256=o01XBapzsP3qrCJW6sEnhX7niJMxA9u_2GHR4qfyQaQ,1064
60
+ deepview_rtm/tflite/EqualOptions.py,sha256=x6GzfXvbTJ_1qh26-lCyntmXnb_EuV8ZlgCfHb4PNP0,600
61
+ deepview_rtm/tflite/ExpOptions.py,sha256=KWzMAYuj2kEPnC5MZtLEb4bND1wf6JDHakWmqSk5Ps8,588
62
+ deepview_rtm/tflite/ExpandDimsOptions.py,sha256=M07LhFuaCJQG_pTrvHJpq9vorVW7Jirin3HIYHH7mq4,630
63
+ deepview_rtm/tflite/FakeQuantOptions.py,sha256=ETir2IiFpFo3QKNAl0JVgBenrm9aQKzE74UF6Pec-Pc,2001
64
+ deepview_rtm/tflite/FillOptions.py,sha256=_ouRsJm_0nJBNlEegES9Dlkx8viArBN6Z8-DlY4jVpk,594
65
+ deepview_rtm/tflite/FloorDivOptions.py,sha256=TcshZZifOhRDnQra5yE8LRLxfB9kIiKnokNR5wVkaoU,618
66
+ deepview_rtm/tflite/FloorModOptions.py,sha256=FEDx0GYBjWBZLB-kQ8NkO9MNBknY8aNA5MBS8zV6Go0,618
67
+ deepview_rtm/tflite/FullyConnectedOptions.py,sha256=4DcuVrYGdSHC0YUiVDoQx71zp0T467Okxqk7Ygq57W0,2247
68
+ deepview_rtm/tflite/FullyConnectedOptionsWeightsFormat.py,sha256=L6MRQQhUZnZ0eeTsqqOu_1aRUorsR43NpBBE10UYv6s,183
69
+ deepview_rtm/tflite/GatherNdOptions.py,sha256=NSQS-Eib2XSxwYB97C8_v5wFro09we5HKM4n0kGITrU,618
70
+ deepview_rtm/tflite/GatherOptions.py,sha256=P7rDO8pwZ5ZOEjOM7t5pZP1wXnQwdDpI7O1PTq1cLo8,930
71
+ deepview_rtm/tflite/GreaterEqualOptions.py,sha256=tipH3CwT8bxEZyKMPzkzJ4A-bMMIIsbaQNWzMWdYOfc,642
72
+ deepview_rtm/tflite/GreaterOptions.py,sha256=gQS62SiA_8J9q7O49faA9zr7qNp5jtXA12RpIqTHLGo,612
73
+ deepview_rtm/tflite/HardSwishOptions.py,sha256=wEgrni9qSgsxLdsp0ro1Yda8ScnWyZ68WuK3CJXFN7Y,624
74
+ deepview_rtm/tflite/IfOptions.py,sha256=DjQBEFDCqOm9LxanN_Y9MWF4JDWpzQ5PQePcNT4Rs2E,1318
75
+ deepview_rtm/tflite/Int32Vector.py,sha256=ASIjH_aKs7Tl-NcSO6zQhqGOnO4kkpxUqSW1tR3bAvM,1611
76
+ deepview_rtm/tflite/L2NormOptions.py,sha256=dq5gwkn5_dwHq6NRomg2aApcXJ6zkzgNFctX2iSx4lo,1004
77
+ deepview_rtm/tflite/LSHProjectionOptions.py,sha256=hlluEKqXrXikUoNChBgaVSF6rW_TotOZ1HPhSFR1DS4,984
78
+ deepview_rtm/tflite/LSHProjectionType.py,sha256=xRvGEiL2X0GI58F_uHlp7Pc3IMBnoVWCWNG72nM_QSI,170
79
+ deepview_rtm/tflite/LSTMKernelType.py,sha256=FLnEtMnylK983xdbaAYr-lJl8pxS0JSYoDjWDWElHQk,149
80
+ deepview_rtm/tflite/LSTMOptions.py,sha256=6pN9lLSUmERra7i8NPgsGxiIWngm_vMld_JoetpyVjU,2428
81
+ deepview_rtm/tflite/LeakyReluOptions.py,sha256=SPpcsiJbmiw2W74Kkrv_Htbn84Vj3hWwqxuUykRT7T4,966
82
+ deepview_rtm/tflite/LessEqualOptions.py,sha256=ujMrEXzWVrtxkZreRjewdOoM9hKWZsSEXTGu6tbKaC4,624
83
+ deepview_rtm/tflite/LessOptions.py,sha256=T-2DPXFYFjbu_xVYkh6XhgJKcMkQHOKaXh3EesBIF4U,594
84
+ deepview_rtm/tflite/LocalResponseNormalizationOptions.py,sha256=IsHOf_4uVvpgYKBJ2eqNT3cgX0CdFX2dTIjK941XFw8,2219
85
+ deepview_rtm/tflite/LogSoftmaxOptions.py,sha256=sCWr9PEFC_PaxV2RhXYTAKUbE91LdXdIv94uS-Al-q4,630
86
+ deepview_rtm/tflite/LogicalAndOptions.py,sha256=7347F4KNLMW5HZsyR8K9R7WdoYE4rANmMYMAsrFPyfQ,630
87
+ deepview_rtm/tflite/LogicalNotOptions.py,sha256=ZkaXRvMfnvh6zDRknP6QzMhY6j5Jxjb9J6TgesVZkq0,630
88
+ deepview_rtm/tflite/LogicalOrOptions.py,sha256=wL-Jrw2EsGrZzjTHN9HE3f3eWezhmaWU4JvMYThLMjs,624
89
+ deepview_rtm/tflite/MatrixDiagOptions.py,sha256=dUdi0fbFGjk9kBVe8H13Htrspq8RIBDj6JjbA6gA8ck,630
90
+ deepview_rtm/tflite/MatrixSetDiagOptions.py,sha256=YowJHQrkFm9OEf-jbKFxXxI4ExXA4t7KHK32EqD6qAw,648
91
+ deepview_rtm/tflite/MaximumMinimumOptions.py,sha256=oq8_3rANWSByrZc3Wpi4JqH_kkPMFHfFa303q9MC6UM,654
92
+ deepview_rtm/tflite/Metadata.py,sha256=Gbf_43Rk-qS220g0cw1a5KSKcMLuTJ301LCgUBQO3Y4,1242
93
+ deepview_rtm/tflite/MirrorPadMode.py,sha256=CI2vGW6eZhqxDaZauXw-iovaA-sq46yqTmZfJZCTskc,155
94
+ deepview_rtm/tflite/MirrorPadOptions.py,sha256=hyS-AujZgDLIRW8gJTPT_LJo0KepxF1g2PeA8PNkUGU,952
95
+ deepview_rtm/tflite/Model.py,sha256=ky360WhS0Phi1Z380Fh2XJLyI14bOTZ3EYoWziXUb84,5827
96
+ deepview_rtm/tflite/MulOptions.py,sha256=Xr64HOaM4m6ReU_jcs2lQ6YHiBqFTctNMfMzvuGmQdc,980
97
+ deepview_rtm/tflite/NegOptions.py,sha256=aQpXGNnqwk1gcpa7-_yD2gP4mIjX9chyBOIPaL_0Np4,588
98
+ deepview_rtm/tflite/NonMaxSuppressionV4Options.py,sha256=4omiP95xyco3P2NiqIbJsuuR2nLO6w__2gmCwCNoJiQ,684
99
+ deepview_rtm/tflite/NonMaxSuppressionV5Options.py,sha256=GwW2XtYE8F3WFQovovcqGAqtw0CiUylGtTQ83lezHgI,684
100
+ deepview_rtm/tflite/NotEqualOptions.py,sha256=MgGejNYPwyHTAklzP3xeqBlopwAykWkvX9KqlJne7Tg,618
101
+ deepview_rtm/tflite/OneHotOptions.py,sha256=NzwCm5CJMGC_VFSqnk94TdfaeUkakTIGgjOPqNutoAs,930
102
+ deepview_rtm/tflite/Operator.py,sha256=lK5mdGM6oOBtollcVOkTYf0_jX8Me_8EmyQoAkLmTvo,7373
103
+ deepview_rtm/tflite/OperatorCode.py,sha256=MAot2ZW8JJcpYSxfmY5jOYojLMKz0TOsWnmIuTzUS1E,1656
104
+ deepview_rtm/tflite/PackOptions.py,sha256=WmjUSkYcuPhlJKOiZvwWp_QEFN7bFpILvAIRFJBa95o,1262
105
+ deepview_rtm/tflite/PadOptions.py,sha256=44IW4boAACiXg1R453vgi2ACHv2oxAoAG34nz7jfUgw,588
106
+ deepview_rtm/tflite/PadV2Options.py,sha256=HkB6jZ8A1AGABIWxTRtn6NRYZNulplEprAtAinTFqn8,600
107
+ deepview_rtm/tflite/Padding.py,sha256=v0U37X_At2pF0nKAGUDgJ8Fl_TwZtsPzdqyUuXi9ZqY,142
108
+ deepview_rtm/tflite/Pool2DOptions.py,sha256=Ful16ODYp5psolhLeZAyq7yBdgT4x3j0uLwbixPnnm4,2721
109
+ deepview_rtm/tflite/PowOptions.py,sha256=jE9qUL8IANdm1b88Mx44ckVkpfd69DBcJ8vShEhImmE,588
110
+ deepview_rtm/tflite/QuantizationDetails.py,sha256=_TvLw9MTX6X6EL2TRJuSerZx_hz8KFNhHWTvEAO_tac,167
111
+ deepview_rtm/tflite/QuantizationParameters.py,sha256=dbCko9UqUgx3KqFHyV7RSeq5xcRF9DujLax80qh-ytI,6180
112
+ deepview_rtm/tflite/QuantizeOptions.py,sha256=mUZDL5p4H1112FNJfpvznkxYw-V90ueZGvQGQLVmLuU,618
113
+ deepview_rtm/tflite/RNNOptions.py,sha256=t7fhM20EA3lPKzrGnzV3tGGGaOb2Wv7ZYkeMvNnR_IQ,1386
114
+ deepview_rtm/tflite/RangeOptions.py,sha256=oJhXBEQsTZ1DxR8SkEzvyG-ysepUjp41ahVhthOqAJk,600
115
+ deepview_rtm/tflite/RankOptions.py,sha256=EuA4epzJI5ixWezfzyI4iMxIqEFN7ntz4CQNBfwWGEg,594
116
+ deepview_rtm/tflite/ReducerOptions.py,sha256=TUWUXkaJrsQDrZ3c3_B2teV7XrySVDS13kT89rV4hrs,962
117
+ deepview_rtm/tflite/ReshapeOptions.py,sha256=sg6_PfXymHTxgWIsR8k2GBEDYQGT3M4gbZIzILqS35s,1658
118
+ deepview_rtm/tflite/ResizeBilinearOptions.py,sha256=Q0jbxIF61KAPwQMyrfKiiPPimEAB6e9nFOYQ29LYkzI,1431
119
+ deepview_rtm/tflite/ResizeNearestNeighborOptions.py,sha256=MotgeW_hPVbAohTGeqzrYcldL-gAPuHQ9rM375CbQUI,1500
120
+ deepview_rtm/tflite/ReverseSequenceOptions.py,sha256=KU5ZtZyGFPfV3XJmJpH_9bam1A4zGsIIpx-oWDJjWcU,1368
121
+ deepview_rtm/tflite/ReverseV2Options.py,sha256=7GLfiiWGOfdO-5eTSJ6VnlLp3F5sMKHIVYNXwT25USk,624
122
+ deepview_rtm/tflite/Rfft2dOptions.py,sha256=tgnB9sFhXcjiTLT8guhOgfMTc0i0D8BaSzGqtKoRJcs,884
123
+ deepview_rtm/tflite/SVDFOptions.py,sha256=bSjj8GWHEZ3mnSGjZVxOwrqTJIgGsdoTYXN5cXkkZGc,1716
124
+ deepview_rtm/tflite/ScatterNdOptions.py,sha256=zeZzMNGyuqC6ajT552WXsMM3xT_oZCmIBA65Kl_u_Vw,624
125
+ deepview_rtm/tflite/SegmentSumOptions.py,sha256=nE2Jc9YWqDl7MPASNbQSLeofLC2kq0tBLHsZ9ftz3bM,630
126
+ deepview_rtm/tflite/SelectOptions.py,sha256=xE-FDjO39mqPX3rFEfyknuefF107PxQ--2BsFFjt3nA,606
127
+ deepview_rtm/tflite/SelectV2Options.py,sha256=TVXV653rXBz4YAtK1JOz1MLGnTnjlojcO_lK01tXig8,618
128
+ deepview_rtm/tflite/SequenceRNNOptions.py,sha256=8fO1fXaaLDrlr1BwgRf2WHMxQfQ9BkDGOGQ_uoklAek,1828
129
+ deepview_rtm/tflite/ShapeOptions.py,sha256=leWKFJoEtQt6KSDrNmajvTGgan-QVRMve6F7SMX_9k4,932
130
+ deepview_rtm/tflite/SignatureDef.py,sha256=Hx9Y9-eA4O-51RqL4iFPOLWQDSE2U9QydyDZoRZyURc,3703
131
+ deepview_rtm/tflite/SkipGramOptions.py,sha256=tQo-qCi_Tg8FS88C83G01v36LuxX9GHNNEp5AuEAJkM,1706
132
+ deepview_rtm/tflite/SliceOptions.py,sha256=MIKZ0iWPu62y6LpIOZAIRbipCi5P5W-TK_jZ0c6hg-U,600
133
+ deepview_rtm/tflite/SoftmaxOptions.py,sha256=ckUVcnzcf0hX1iVQ39A1vjfXSCXKihJ5cOjt29CQL7o,946
134
+ deepview_rtm/tflite/SpaceToBatchNDOptions.py,sha256=UVNgSdDHEoaj2B1DJIl3ceUHnzUjUJbSC57nAATbfcM,654
135
+ deepview_rtm/tflite/SpaceToDepthOptions.py,sha256=iP1_d1OyXu5NkQQOR3926IC3qQLxT5QZDexdc0rv4ps,998
136
+ deepview_rtm/tflite/SparseIndexVector.py,sha256=8OoFle0xszrJ2GQELrKyZHzatjHXTIy2YYPcSjNbRv0,199
137
+ deepview_rtm/tflite/SparseToDenseOptions.py,sha256=0ai0oaoRIaAlhCe6mhGoaT9_LDaHRFVhXP04lDfteOU,1038
138
+ deepview_rtm/tflite/SparsityParameters.py,sha256=6NdO0ArGqGCifnumKwP1sqzuFUL4rGMfzxACe3U7BPc,3781
139
+ deepview_rtm/tflite/SplitOptions.py,sha256=Nku211fS1UyeR8TcJ0SynqZGWXwvfMq7f6g5buotpXs,942
140
+ deepview_rtm/tflite/SplitVOptions.py,sha256=Dk9j7rpe52L3iG-Ho2925md__qbBWvHubEuvPbv60ow,950
141
+ deepview_rtm/tflite/SquareOptions.py,sha256=QEY-IiIbMDGOf4dLEWjdo0R0afBPOJCb8hnPc-3SDNk,606
142
+ deepview_rtm/tflite/SquaredDifferenceOptions.py,sha256=EkcnXh80qWn2708tfBXcT8uYubuSyhl22bWPGD293h4,672
143
+ deepview_rtm/tflite/SqueezeOptions.py,sha256=s22BKZNpsG4MFu6aL8fnc-eqEUrZrbGRsRjduX4uTvA,1679
144
+ deepview_rtm/tflite/StridedSliceOptions.py,sha256=60xllJFlXucqKLgnGc3YcBKmG3ICLx_74AS0e2LbWNU,2456
145
+ deepview_rtm/tflite/SubGraph.py,sha256=uTJT7HtBb_oAswbOZt9ctNIrUdftRLgoyCdqp9tRc7A,4698
146
+ deepview_rtm/tflite/SubOptions.py,sha256=wmOsv35e9hHEA4dHhE3mcBiFefqx2xNWx-sVADOYbrY,980
147
+ deepview_rtm/tflite/Tensor.py,sha256=gaMd7r-40UkXrgaWtDp_zSfm0ir7dVekWMX2Tlz549I,4978
148
+ deepview_rtm/tflite/TensorMap.py,sha256=yXks5pJWlZK1ZDyQCbXRCoMJd81lxmchR7YmEO_aUYU,1546
149
+ deepview_rtm/tflite/TensorType.py,sha256=BD46ph41xYRB8JXYH05Twva6ShVi1_KYBQw0uJukOBM,282
150
+ deepview_rtm/tflite/TileOptions.py,sha256=sD2ryeABi5s5oKlPW9tOOg-e5PUNddZUZX1dG7k3VAc,594
151
+ deepview_rtm/tflite/TopKV2Options.py,sha256=otJ-Gfk2T2Ez0hot3srIZ4IR07gz5fTUd10pYJIFw2A,606
152
+ deepview_rtm/tflite/TransposeConvOptions.py,sha256=LvavKdUvSTJOPVr3K2yJs_5u9zKx8p6OXF9qaobyuJQ,1696
153
+ deepview_rtm/tflite/TransposeOptions.py,sha256=q-VxItEXXkh7PAfBXrPLpWSYOVDMGURF1WaMGruqZRg,624
154
+ deepview_rtm/tflite/Uint16Vector.py,sha256=BbxIrsJ1YdMsZ4tA1PxV43gR5S7KD7H0S0UKmOnIQ3c,1624
155
+ deepview_rtm/tflite/Uint8Vector.py,sha256=L3LekGib_3x3esrVkrqqSwWKfNHwGkZt-mAofpMMVNM,1611
156
+ deepview_rtm/tflite/UnidirectionalSequenceLSTMOptions.py,sha256=Ua8wVopP3RkBFx5Xjh1ZGmb6tfc4YSE1KO3wmbQUU0s,2786
157
+ deepview_rtm/tflite/UniqueOptions.py,sha256=BqgSYDZAB7nXjD_9XGwnUpWeC4puTCaagOwJoBCa4yc,952
158
+ deepview_rtm/tflite/UnpackOptions.py,sha256=Pho0j3Go8_nBH4bez1dp35C8_rXPGOA88dJ75xNAwpc,1250
159
+ deepview_rtm/tflite/WhereOptions.py,sha256=7k3HfHyC3lnySg0-1SWHLQoQckLgw4bnH1yoZBk2Ito,600
160
+ deepview_rtm/tflite/WhileOptions.py,sha256=7pRHpEVfvdwT368rRwS5xMY0OniIMM3-lN2SdEt8mvA,1348
161
+ deepview_rtm/tflite/ZerosLikeOptions.py,sha256=Apz4HcFNE0vy9KlgpConPtiND7txBoYFrok8Fo8ycRM,624
162
+ deepview_rtm/tflite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
+ deepview_converter-3.0.0.dist-info/METADATA,sha256=El1fXIHxzYB_F4PpiF4KQfbtPJY3O2XtJ6mHg-UXvuo,402
164
+ deepview_converter-3.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
165
+ deepview_converter-3.0.0.dist-info/entry_points.txt,sha256=BvxyXlnI8lg8-FEwC_K9VTTAw_xWWrUFWvwaD4aeKNU,64
166
+ deepview_converter-3.0.0.dist-info/top_level.txt,sha256=sl5zVPA0GXgXdt7fvDXrgpjFBBarwQS23Ruj9IRRdUM,13
167
+ deepview_converter-3.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rtm-converter = deepview_rtm.__main__:convert
@@ -0,0 +1,258 @@
1
+ DeepView AI Middleware Trial Software EULA
2
+ __________________________________________
3
+ End-User License Agreement ("Agreement")
4
+
5
+ last updated on October 25, 2022
6
+
7
+ Please read this End-User License Agreement carefully before downloading or
8
+ using the Trial Software.
9
+
10
+ Interpretation and Definitions Interpretation
11
+
12
+ The words of which the initial letter is capitalized have meanings defined
13
+ under the following conditions. The following definitions shall have the same
14
+ meaning regardless of whether they appear in singular or in plural.
15
+
16
+ Definitions
17
+
18
+ For the purposes of this End-User License Agreement:
19
+
20
+ ● "Agreement" means this End-User License Agreement that forms the entire
21
+ agreement between You and the Company regarding usage of the Trial Software.
22
+
23
+ ● "Trial Software" means the software provided to You by the Company by any
24
+ means including email, downloaded by You through a Download site or
25
+ provided to you by an intermediary.
26
+
27
+ ● "Download site" means the digital distribution service operated and
28
+ developed by the company from with the Trial Software has been downloaded
29
+ to your Device.
30
+
31
+ ● "Company" (referred to as either "the Company", "We", "Us" or "Our" in this
32
+ Agreement) refers to Au-Zone Technologies.
33
+
34
+ ● "Content" refers to content such as text, images, or other information that
35
+ can be posted, uploaded, linked to or otherwise made available by You,
36
+ regardless of the form of that content.
37
+
38
+ ● "Country" refers to: Canada
39
+
40
+ ● "Device" means any device that can access the Trial Software such as a
41
+ computer, a Maivin Vision AI Starter Kit, Micro AI Vision Starter Kit,
42
+ Silicon Vendor Development Kit or any custom embedded platform.
43
+
44
+ ● "Third-Party Services" means any services or content (including data,
45
+ information, application and other products services) provided by a
46
+ third-party that may be displayed, included or made available by the
47
+ Application.
48
+
49
+ ● "You" means the individual accessing or using the Trial Software or the
50
+ company, or other legal entity on behalf of which such individual is
51
+ accessing or using the Trial Software, as applicable.
52
+
53
+ Acknowledgment
54
+
55
+ By downloading or using the Trial Software, You are agreeing to be bound by the
56
+ terms and conditions of this Agreement. If You do not agree to the terms of
57
+ this Agreement, do not download or use the Trial Software.
58
+
59
+ This Agreement is a legal document between You and the Company and it governs
60
+ your use of the Trial Software made available to You by the Company.
61
+
62
+ The Trial Software is licensed, not sold, to You by the Company for use
63
+ strictly in accordance with the terms of this Agreement.
64
+
65
+ License
66
+
67
+ Scope of License
68
+
69
+ The Company grants You a revocable, non-exclusive, non-transferable, limited
70
+ license to download, install and use the Trial Software strictly in accordance
71
+ with the terms of this Agreement to do the following:
72
+
73
+ ● You may only use the Trial Software on a Device that You own or control.
74
+
75
+ ● You may only use the Trial Software for evaluation in consideration of a
76
+ purchase.
77
+
78
+ ● The license that is granted to You by the Company is solely for internal,
79
+ non-commercial purposes.
80
+
81
+ License Restrictions
82
+
83
+ You agree not to, and You will not permit others to:
84
+
85
+ ● License, sell, rent, lease, assign, distribute, transmit, host, outsource,
86
+ disclose, display, market or otherwise commercially exploit the Trial
87
+ Software or make the Trial Software available to other parties.
88
+
89
+ ● Remove, alter or obscure any proprietary notice (including any notice of
90
+ copyright or trademark) of the Company or its affiliates, partners,
91
+ suppliers or the licensors of the Trial Software.
92
+
93
+ ● Reverse engineer, decompile or repurpose the Trial Software.
94
+
95
+ ● Use the Trial Software to develop or create external or public
96
+ demonstrations for commercial exploitation without written consent from The
97
+ Company.
98
+
99
+ Intellectual Property
100
+
101
+ The Trial Software, including without limitation all copyrights, patents,
102
+ trademarks, trade secrets and other intellectual property rights are, and shall
103
+ remain, the sole and exclusive property of the Company.
104
+
105
+ The Company shall not be obligated to indemnify or defend You with respect to
106
+ any third party claim arising out of or relating to the Trial Software.
107
+
108
+ Modifications to the Trial Software
109
+
110
+ The Company reserves the right to modify, suspend or discontinue, temporarily
111
+ or permanently, the Trial Software or any service to which it connects, with or
112
+ without notice and without liability to You.
113
+
114
+ Updates to the Trial Software
115
+
116
+ The Company may from time to time provide enhancements or improvements to the
117
+ features/functionality of the Trial Software, which may include patches, bug
118
+ fixes, updates, upgrades and other modifications.
119
+
120
+ Updates may modify or delete certain features and/or functionalities of the
121
+ Trial Software. You agree that the Company has no obligation to (i) provide any
122
+ Updates, or (ii) continue to provide or enable any particular features and/or
123
+ functionalities of the Trial Software to You.
124
+
125
+ You further agree that all updates or any other modifications will be (i)
126
+ deemed to constitute an integral part of the Trial Software, and (ii) subject
127
+ to the terms and conditions of this Agreement.
128
+
129
+ Maintenance and Support
130
+
131
+ The Company does not provide any maintenance or support for the download and
132
+ use of the Trial Software.
133
+
134
+ Term and Termination
135
+
136
+ This Agreement shall remain in effect until terminated by You or the Company.
137
+ The Company may, in its sole discretion, at any time and for any or no reason,
138
+ suspend or terminate this Agreement with or without prior notice.
139
+
140
+ This Agreement will terminate immediately, without prior notice from the
141
+ Company, in the event that you fail to comply with any provision of this
142
+ Agreement. You may also terminate this Agreement by deleting the Trial Software
143
+ and all copies thereof from your Device or from your computer.
144
+
145
+ Upon termination of this Agreement, You shall cease all use of the Trial
146
+ Software and delete all copies of the Trial Software from your Device.
147
+
148
+ Termination of this Agreement will not limit any of the Company's rights or
149
+ remedies at law or in equity in case of breach by You (during the term of this
150
+ Agreement) of any of your obligations under the present Agreement.
151
+
152
+ Indemnification
153
+
154
+ You agree to indemnify and hold the Company and its parents, subsidiaries,
155
+ affiliates, officers, employees, agents, partners and licensors (if any)
156
+ harmless from any claim or demand, including reasonable attorneys' fees, due to
157
+ or arising out of your: (a) use of the Trial Software; (b) violation of this
158
+ Agreement or any law or regulation; or (c) violation of any right of a third
159
+ party.
160
+
161
+ No Warranties
162
+
163
+ The Trial Software is provided to You "AS IS" and "AS AVAILABLE" and with all
164
+ faults and defects without warranty of any kind. To the maximum extent
165
+ permitted under applicable law, the Company, on its own behalf and on behalf of
166
+ its affiliates and its and their respective licensors and service providers,
167
+ expressly disclaims all warranties, whether express, implied, statutory or
168
+ otherwise, with respect to the Trial Software, including all implied warranties
169
+ of merchantability, fitness for a particular purpose, title and
170
+ non-infringement, and warranties that may arise out of course of dealing,
171
+ course of performance, usage or trade practice. Without limitation to the
172
+ foregoing, the Company provides no warranty or undertaking, and makes no
173
+ representation of any kind that the Trial Software will meet your requirements,
174
+ achieve any intended results, be compatible or work with any other software,
175
+ Trial Software, systems or services, operate without interruption, meet any
176
+ performance or reliability standards or be error free or that any errors or
177
+ defects can or will be corrected.
178
+
179
+ Without limiting the foregoing, neither the Company nor any of the company's
180
+ provider makes any representation or warranty of any kind, express or implied:
181
+ (i) as to the operation or availability of the Trial Software, or the
182
+ information, content, and materials or products included thereon; (ii) that the
183
+ Trial Software will be uninterrupted or error-free; (iii) as to the accuracy,
184
+ reliability, or currency of any information or content provided through the
185
+ Trial Software; or (iv) that the Trial Software, its servers, the content, or
186
+ e-mails sent from or on behalf of the Company are free of viruses, scripts,
187
+ trojan horses, worms, malware, timebombs or other harmful components.
188
+
189
+ Limitation of Liability
190
+
191
+ Notwithstanding any damages that You might incur, the entire liability of the
192
+ Company and any of its suppliers under any provision of this Agreement and your
193
+ exclusive remedy for all of the foregoing shall be limited to the amount
194
+ actually paid by You for the Trial Software or through the Trial Software or
195
+ 100 USD if You haven't purchased anything through the Trial Software.
196
+
197
+ To the maximum extent permitted by applicable law, in no event shall the
198
+ Company or its suppliers be liable for any special, incidental, indirect, or
199
+ consequential damages whatsoever (including, but not limited to, damages for
200
+ loss of profits, loss of data or other information, for business interruption,
201
+ for personal injury, loss of privacy arising out of or in any way related to
202
+ the use of or inability to use the Trial Software, third-party software and/or
203
+ third-party hardware used with the Trial Software, or otherwise in connection
204
+ with any provision of this Agreement), even if the Company or any supplier has
205
+ been advised of the possibility of such damages and even if the remedy fails of
206
+ its essential purpose.
207
+
208
+ Severability and Waiver
209
+
210
+ Severability
211
+
212
+ If any provision of this Agreement is held to be unenforceable or invalid, such
213
+ provision will be changed and interpreted to accomplish the objectives of such
214
+ provision to the greatest extent possible under applicable law and the
215
+ remaining provisions will continue in full force and effect.
216
+
217
+ Waiver
218
+
219
+ Except as provided herein, the failure to exercise a right or to require
220
+ performance of an obligation under this Agreement shall not effect a party's
221
+ ability to exercise such right or require such performance at any time
222
+ thereafter nor shall the waiver of a breach constitute a waiver of any
223
+ subsequent breach.
224
+
225
+ Changes to this Agreement
226
+
227
+ The Company reserves the right, at its sole discretion, to modify or replace
228
+ this Agreement at any time. If a revision is material we will provide at least
229
+ 30 days' notice prior to any new terms taking effect. What constitutes a
230
+ material change will be determined at the sole discretion of the Company.
231
+
232
+ By continuing to access or use the Trial Software after any revisions become
233
+ effective, You agree to be bound by the revised terms. If You do not agree to
234
+ the new terms, You are no longer authorized to use the Trial Software.
235
+
236
+ Governing Law
237
+
238
+ The laws of the Country, excluding its conflicts of law rules, shall govern
239
+ this Agreement and your use of the Trial Software. Your use of the Trial
240
+ Software may also be subject to other local, state, national, or international
241
+ laws.
242
+
243
+ Entire Agreement
244
+
245
+ The Agreement constitutes the entire agreement between You and the Company
246
+ regarding your use of the Trial Software and supersedes all prior and
247
+ contemporaneous written or oral agreements between You and the Company.
248
+
249
+ You may be subject to additional terms and conditions that apply when You use
250
+ or purchase other Company's Software, which the Company will provide to You at
251
+ the time of such use or purchase.
252
+
253
+ Contact Us
254
+
255
+ If you have any questions about this Agreement, You can contact Us:
256
+
257
+ ● By visiting this page on our website: www.embeddedml.com
258
+ ● By sending us an email: support@au-zone.com
@@ -0,0 +1 @@
1
+ deepview_rtm
@@ -0,0 +1 @@
1
+ __version__ = "3.0.0"