Neuropods v0.1.0-rc2
Pre-release
Pre-release
VivekPanyam
released this
22 Oct 20:30
·
273 commits
to master
since this release
This release candidate is intended to test the release process and verify that the released assets work correctly.
Major changes:
Neuropods are now packaged as zip files by default (instead of as directories)
For example,
create_tensorflow_neuropod(
neuropod_path="/path/to/my_addition_model.neuropod",
model_name="addition_model",
...
)
Will create a single self-contained file at /path/to/my_addition_model.neuropod
You can set package_as_zip=False
in create_*_neuropod
to keep the old behavior.
Note: Loading is backwards compatible (i.e. both zip and directory neuropods can be loaded from both C++ and Python)
Other Changes
- Added factory functions for creating tensors from C++:
zeros
,ones
,full
,randn
,arange
, andeye
NeuropodValueMap
can now be serialized withneuropods::serialize
- Updated pybind11 to
v2.4.2
- Updated boost to
v1.68.0
- Various bugfixes
- Better packager docstrings