How to download Tensorflow API documentation?

I would like to be able to view the Tensorflow API documentation offline (without an internet connection). How to download it?

+4
source share
2 answers

As explained in the TensorFlow docs: Writing the TensorFlow documentation , clone the TensorFlow repository, and then:

$ sudo pip install codegen mock pandas $ sudo apt-get install bazel 

Then change the directory to the tensor level directory of the top-level TensorFlow source code and:

 $ ./configure $ bazel run tools/docs:generate -- --src_dir="$(pwd)/docs_src/" --output_dir=/tmp/tfdocs/ 

This will create documentation locally on your computer.

+3
source

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

Just go to http://devdocs.io/ , then in the left pane scroll down to the Tensorflow menu and click "enable" in parts of the documentation that interests you.

Then refresh the page, click the "Offline" link in the menu of the top panel and click "Install" in the selected documents that you want to save.

When you go offline, the documents should remain loaded in the browser’s cache and be ready to view even without Internet access.

+20
source

All Articles