Skip to content

Neuropods v0.1.0-rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@VivekPanyam VivekPanyam released this 22 Oct 20:30
· 273 commits to master since this release
bae93c9

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, and eye
  • NeuropodValueMap can now be serialized with neuropods::serialize
  • Updated pybind11 to v2.4.2
  • Updated boost to v1.68.0
  • Various bugfixes
  • Better packager docstrings