TensorArray 0.0.2__tar.gz → 0.0.3__tar.gz

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 (160) hide show
  1. {tensorarray-0.0.2/src/TensorArray.egg-info → tensorarray-0.0.3}/PKG-INFO +1 -1
  2. {tensorarray-0.0.2 → tensorarray-0.0.3}/setup.py +1 -1
  3. {tensorarray-0.0.2 → tensorarray-0.0.3/src/TensorArray.egg-info}/PKG-INFO +1 -1
  4. {tensorarray-0.0.2 → tensorarray-0.0.3}/CMakeLists.txt +0 -0
  5. {tensorarray-0.0.2 → tensorarray-0.0.3}/LICENSE +0 -0
  6. {tensorarray-0.0.2 → tensorarray-0.0.3}/MANIFEST.in +0 -0
  7. {tensorarray-0.0.2 → tensorarray-0.0.3}/README.md +0 -0
  8. {tensorarray-0.0.2 → tensorarray-0.0.3}/pyproject.toml +0 -0
  9. {tensorarray-0.0.2 → tensorarray-0.0.3}/setup.cfg +0 -0
  10. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/TensorArray.egg-info/SOURCES.txt +0 -0
  11. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/TensorArray.egg-info/dependency_links.txt +0 -0
  12. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/TensorArray.egg-info/top_level.txt +0 -0
  13. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/__init__.py +0 -0
  14. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/_core/tensor_bind.cc +0 -0
  15. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/activation.py +0 -0
  16. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/__init__.py +0 -0
  17. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/constants.py +0 -0
  18. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/datatypes.py +0 -0
  19. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/operator.py +0 -0
  20. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/tensor.py +0 -0
  21. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/core/tensor2.cpython-38-x86_64-linux-gnu.so +0 -0
  22. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/__init__.py +0 -0
  23. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/attention/__init__.py +0 -0
  24. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/attention/attention.py +0 -0
  25. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/attention/transformer.py +0 -0
  26. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/layer.py +0 -0
  27. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/normalization/__init__.py +0 -0
  28. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/normalization/normalization.py +0 -0
  29. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/parameter.py +0 -0
  30. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/util/__init__.py +0 -0
  31. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/util/activation.py +0 -0
  32. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/util/linear.py +0 -0
  33. {tensorarray-0.0.2 → tensorarray-0.0.3}/src/tensor_array/layers/util/sequential.py +0 -0
  34. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/CMakeLists.txt +0 -0
  35. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/Config.cmake.in +0 -0
  36. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/LICENSE +0 -0
  37. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/_ +0 -0
  38. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/CMakeLists.txt +0 -0
  39. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/data_type_wrapper.cc +0 -0
  40. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/data_type_wrapper.hh +0 -0
  41. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/devices.cc +0 -0
  42. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/devices.hh +0 -0
  43. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/extern_type_map.cc +0 -0
  44. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/extern_type_map.hh +0 -0
  45. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/initializer_wrapper.hh +0 -0
  46. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor.cc +0 -0
  47. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor.cu +0 -0
  48. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor.hh +0 -0
  49. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor_blas.cc +0 -0
  50. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor_cast.cu +0 -0
  51. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor_convolution.cc +0 -0
  52. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor_convolution.cu +0 -0
  53. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensor_reduce.cu +0 -0
  54. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensorarray.hh +0 -0
  55. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensorbase.cc +0 -0
  56. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/core/tensorbase.hh +0 -0
  57. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/CMakeLists.txt +0 -0
  58. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/attention.cc +0 -0
  59. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/attention.hh +0 -0
  60. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/convolution.cc +0 -0
  61. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/convolution.hh +0 -0
  62. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_any.cc +0 -0
  63. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_any.hh +0 -0
  64. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_holder.hh +0 -0
  65. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_impl.cc +0 -0
  66. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_impl.hh +0 -0
  67. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_utility.cc +0 -0
  68. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/layer_utility.hh +0 -0
  69. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/linear.cc +0 -0
  70. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/linear.hh +0 -0
  71. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/normalization.cc +0 -0
  72. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/normalization.hh +0 -0
  73. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/recurrent.cc +0 -0
  74. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/recurrent.hh +0 -0
  75. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/sequential.cc +0 -0
  76. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/sequential.hh +0 -0
  77. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/transformer.cc +0 -0
  78. {tensorarray-0.0.2 → tensorarray-0.0.3}/tensor-array-repo/Tensor-Array/src/tensor_array/layers/transformer.hh +0 -0
  79. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/CMakeLists.txt +0 -0
  80. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/LICENSE +0 -0
  81. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/attr.h +0 -0
  82. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/buffer_info.h +0 -0
  83. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/cast.h +0 -0
  84. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/chrono.h +0 -0
  85. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/common.h +0 -0
  86. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/complex.h +0 -0
  87. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/conduit/README.txt +0 -0
  88. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +0 -0
  89. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +0 -0
  90. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +0 -0
  91. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/critical_section.h +0 -0
  92. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/class.h +0 -0
  93. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/common.h +0 -0
  94. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/cpp_conduit.h +0 -0
  95. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/descr.h +0 -0
  96. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +0 -0
  97. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/exception_translation.h +0 -0
  98. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/function_record_pyobject.h +0 -0
  99. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/init.h +0 -0
  100. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/internals.h +0 -0
  101. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/native_enum_data.h +0 -0
  102. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +0 -0
  103. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/struct_smart_holder.h +0 -0
  104. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
  105. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/typeid.h +0 -0
  106. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/using_smart_holder.h +0 -0
  107. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/detail/value_and_holder.h +0 -0
  108. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/eigen/common.h +0 -0
  109. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/eigen/matrix.h +0 -0
  110. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/eigen/tensor.h +0 -0
  111. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/eigen.h +0 -0
  112. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/embed.h +0 -0
  113. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/eval.h +0 -0
  114. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/functional.h +0 -0
  115. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/gil.h +0 -0
  116. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
  117. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/gil_simple.h +0 -0
  118. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/iostream.h +0 -0
  119. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/native_enum.h +0 -0
  120. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/numpy.h +0 -0
  121. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/operators.h +0 -0
  122. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/options.h +0 -0
  123. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/pybind11.h +0 -0
  124. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/pytypes.h +0 -0
  125. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/stl/filesystem.h +0 -0
  126. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/stl.h +0 -0
  127. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/stl_bind.h +0 -0
  128. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/subinterpreter.h +0 -0
  129. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/trampoline_self_life_support.h +0 -0
  130. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  131. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/typing.h +0 -0
  132. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/include/pybind11/warnings.h +0 -0
  133. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/CMakeLists.txt +0 -0
  134. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/pure_cpp/CMakeLists.txt +0 -0
  135. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  136. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
  137. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
  138. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
  139. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
  140. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
  141. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
  142. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +0 -0
  143. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tests/test_embed/CMakeLists.txt +0 -0
  144. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/FindCatch.cmake +0 -0
  145. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/FindEigen3.cmake +0 -0
  146. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/FindPythonLibsNew.cmake +0 -0
  147. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/JoinPaths.cmake +0 -0
  148. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/check-style.sh +0 -0
  149. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/cmake_uninstall.cmake.in +0 -0
  150. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
  151. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/libsize.py +0 -0
  152. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/make_changelog.py +0 -0
  153. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/make_global.py +0 -0
  154. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11.pc.in +0 -0
  155. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11Common.cmake +0 -0
  156. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11Config.cmake.in +0 -0
  157. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -0
  158. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11NewTools.cmake +0 -0
  159. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/pybind11Tools.cmake +0 -0
  160. {tensorarray-0.0.2 → tensorarray-0.0.3}/third_party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: TensorArray
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: A machine learning package
5
5
  Home-page: https://github.com/Tensor-Array/Tensor-Array-Python
6
6
  License: MIT
@@ -133,7 +133,7 @@ def main():
133
133
 
134
134
  setup(
135
135
  name = "TensorArray",
136
- version = "0.0.2",
136
+ version = "0.0.3",
137
137
  description = "A machine learning package",
138
138
  long_description=long_description,
139
139
  authors = "TensorArray-Creators",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: TensorArray
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: A machine learning package
5
5
  Home-page: https://github.com/Tensor-Array/Tensor-Array-Python
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes