This is an automated email from the ASF dual-hosted git repository.
guanmingchiu pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
from bb366e3f2 MAHOUT-555: Final clean update of mailing lists (#784)
new b8647b42d [QDP] Add TensorFlow tensor input support
new 7fe53eac4 add import test
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
qdp/Cargo.lock | 368 +++++++++++++++++----
qdp/Cargo.toml | 6 +
qdp/qdp-core/Cargo.toml | 6 +
qdp/qdp-core/{src/error.rs => build.rs} | 37 +--
qdp/qdp-core/proto/tensor.proto | 32 ++
qdp/qdp-core/src/io.rs | 19 ++
qdp/qdp-core/src/lib.rs | 35 ++
qdp/qdp-core/src/readers/mod.rs | 3 +
qdp/qdp-core/src/readers/tensorflow.rs | 268 +++++++++++++++
.../{tests/common/mod.rs => src/tf_proto.rs} | 12 +-
qdp/qdp-core/tests/tensorflow_io.rs | 354 ++++++++++++++++++++
qdp/qdp-python/pyproject.toml | 3 +-
qdp/qdp-python/src/lib.rs | 32 ++
qdp/qdp-python/tests/test_bindings.py | 6 +
14 files changed, 1094 insertions(+), 87 deletions(-)
copy qdp/qdp-core/{src/error.rs => build.rs} (54%)
create mode 100644 qdp/qdp-core/proto/tensor.proto
create mode 100644 qdp/qdp-core/src/readers/tensorflow.rs
copy qdp/qdp-core/{tests/common/mod.rs => src/tf_proto.rs} (69%)
create mode 100644 qdp/qdp-core/tests/tensorflow_io.rs