StringTheory
StringTheory

Reputation: 117

Official Tensorflow docs available in pdf form? (running Windows)

I have not been able to find pdf format docs for Tensorflow (API or tutorials). I'm referring to the official docs, not asking for book recommendations. Specifically pdf format, for offline local reference and study.

One problem is that I'm running Windows, so the available toolset for creating them dynamically is limited (or different from the normally recommended tools).

But surely the pdfs must already exist online somewhere, right?

Upvotes: 3

Views: 8785

Answers (1)

Benloper
Benloper

Reputation: 458

This has been answered here. How can you download Tensorflow API Documentation

Essentially you can use http://devdocs.io/, which can provide you with offline access to the documentation of many libraries and languages, including Tensorflow.

Or clone the repo and type this to generate a the documentation locally. It's described in more detail in the TensorFlow documentation.

$ cd tensorflow/tools/docs
$ ./gen_docs.sh              # add -a if you want C++ documentation

If you can't do this approach due to Windows, then versus setting up a bunch of infrastructure, it maybe easier to use the gitbook for TF then generate a PDF with toolchain as described here

Upvotes: 5

Related Questions