tensorflow-sys-runtime

Crates.iotensorflow-sys-runtime
lib.rstensorflow-sys-runtime
version0.2.0
sourcesrc
created_at2023-02-14 05:12:12.524585
updated_at2023-02-14 05:12:12.524585
descriptionThe package provides runtime bindings to TensorFlow.
homepagehttps://github.com/tensorflow/rust
repositoryhttps://github.com/tensorflow/rust
max_upload_size
id784611
size70,063
Adam Crume (adamcrume)

documentation

https://tensorflow.github.io/rust

README

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.

Commit count: 881

cargo fmt