内容简介:TensorFlow Rust provides idiomaticNotice:This project is still under active development and not guaranteed to have a stable API. This is especially true because the underlying TensorFlow C API has not yet been stabilized as well.Since this crate depends on
TensorFlow Rust provides idiomatic Rust language bindings for TensorFlow .
Notice:This project is still under active development and not guaranteed to have a stable API. This is especially true because the underlying TensorFlow C API has not yet been stabilized as well.
Getting Started
Since this crate depends on the TensorFlow C API, it needs to be downloaded or compiled first. This crate will automatically download or compile the TensorFlow shared libraries for you, but it is also possible to manually install TensorFlow and the crate will pick it up accordingly.
Prerequisites
If the TensorFlow shared libraries can already be found on your system, they will be used. If your system is x86-64 Linux or Mac, a prebuilt binary will be downloaded, and no special prerequisites are needed.
Otherwise, the following dependencies are needed to compile and build this crate, which involves compiling TensorFlow itself:
- git
- bazel
- Python Dependencies
numpy
,dev
,pip
andwheel
- Optionally, CUDA packages to support GPU-based processing
The TensorFlow website provides detailed instructions on how to obtain and install said dependencies, so if you are unsure please check out the docs for further details.
Some of the examples use TensorFlow code written in Python and require a full TensorFlow intallation.
Usage
Add this to your Cargo.toml
:
[dependencies] tensorflow = "0.14.0"
and this to your crate root:
extern crate tensorflow;
Then run cargo build -j 1
. The tensorflow-sys crate's build.rs
now either downloads a pre-built, basic CPU only binary ( the default ) or compiles TensorFlow if forced to by an environment variable. If TensorFlow is compiled during this process, since the full compilation is very memory intensive, we recommend using the -j 1
flag which tells cargo to use only one task, which in turn tells TensorFlow to build with only one task. Though, if you have a lot of RAM, you can obviously use a higher value.
To include the especially unstable API (which is currently the expr
module), use --features tensorflow_unstable
.
For now, please see the Examples for more details on how to use this binding.
GPU Support
To enable GPU support, use the tensorflow_gpu
feature in your Cargo.toml:
[dependencies] tensorflow = { version = "0.14.0", features = ["tensorflow_gpu"] }
Manual TensorFlow Compilation
If you want to work against unreleased/unsupported TensorFlow versions or use a build optimized for your machine, manual compilation is the way to go.
See tensorflow-sys/README.md for details.
FAQ's
Why does the compiler say that parts of the API don't exist?
The especially unstable parts of the API (which is currently the expr
module) are feature-gated behind the feature tensorflow_unstable
to prevent accidental use. See http://doc.crates.io/manifest.html#the-features-section . (We would prefer using an #[unstable]
attribute, but that doesn't exist yet.)
How do I...?
Try the documentation first, and see if it answers your question. If not, take a look at the examples folder. Note that there may not be an example for your exact question, but it may be answered by an example demonstrating something else.
If none of the above help, you can ask your question on TensorFlow Rust Google Group .
Contributing
Developers and users are welcome to join the TensorFlow Rust Google Group .
Developers and users are also welcome to join #tensorflow-rust on irc.mozilla.org, although the Google Group is more likely to provide a response.
Please read the contribution guidelines on how to contribute code.
This is not an official Google product.
RFCs are issues tagged with RFC . Check them out and comment. Discussions are welcomed. After all, that is the purpose of Request For Comment!
License
This project is licensed under the terms of the Apache 2.0 license .
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
史蒂夫·乔布斯传
[美] 沃尔特·艾萨克森 / 管延圻、魏群、余倩、赵萌萌、汤崧 / 中信出版社 / 2011-10-24 / 68.00元
这本乔布斯唯一授权的官方传记,在2011年上半年由美国出版商西蒙舒斯特对外发布出版消息以来,备受全球媒体和业界瞩目,这本书的全球出版日期最终确定为2011年11月21日,简体中文版也将同步上市。 两年多的时间,与乔布斯40多次的面对面倾谈,以及与乔布斯一百多个家庭成员、 朋友、竞争对手、同事的不受限的采访,造就了这本独家传记。 尽管乔布斯给予本书的采访和创作全面的配合,但他对内容从不干......一起来看看 《史蒂夫·乔布斯传》 这本书的介绍吧!