tensorflow-sys-runtime 0.2.0

The package provides runtime bindings to TensorFlow.
Documentation

tensorflow-sys-runtime Version

The crate provides runtime bindings to TensorFlow. Using runtime bindings allows you to avoid pulling in additional package dependencies into your project. Users will need to call tensorflow::library::load() before any other calls so that the linking is completed before use.

NOTE

This crate is meant to be used by Rust language bindings for Tensorflow. It is not meant to be used on it's own. To use it you will need to disable the default features so you don't also include the tensorflow-sys crate.

[dependencies]
tensorflow = { version = "0.19.1", default-features = false, features = ["tensorflow_runtime_linking"]}

Requirements

To use these bindings you must have the Tensorflow C libraries installed. See install steps for detailed instructions.