Fork of the STT fork of Tensorflow
Go to file
Mihai Maruseac 5b900cfe4b Update install_python3.6_pip_packages.sh to use apt.
Now python3.6 can be installed from apt and it will be installed with
all submodules.

If we're compiling Python from source, during compilation we get:

```
The necessary bits to build these optional modules were not found:
_bz2                  _dbm                  _gdbm
_lzma                 _sqlite3              _tkinter
readline
```

which then results in

```
==================== Test output for //bazel_pip/tensorflow/contrib/summary:summary_ops_test:
Running test /tmpfs/src/github/tensorflow/bazel-ci_build-cache/.cache/bazel/_bazel_kbuilder/eab0d61a99b6696edb3d2aff87b585e8/execroot/org_tensorflow/bazel-out/k8-opt/bin/bazel_pip/tensorflow/contrib/summary/summary_ops_test.runfiles/org_tensorflow/bazel_pip/tensorflow/contrib/summary/summary_ops_test  on GPU 0
Traceback (most recent call last):
  File "/tmpfs/src/github/tensorflow/bazel-ci_build-cache/.cache/bazel/_bazel_kbuilder/eab0d61a99b6696edb3d2aff87b585e8/execroot/org_tensorflow/bazel-out/k8-opt/bin/bazel_pip/tensorflow/contrib/summary/summary_ops_test.runfiles/org_tensorflow/bazel_pip/tensorflow/contrib/summary/summary_ops_test.py", line 23, in <module>
    import sqlite3
  File "/usr/local/lib/python3.6/sqlite3/__init__.py", line 23, in <module>
    from sqlite3.dbapi2 import *
  File "/usr/local/lib/python3.6/sqlite3/dbapi2.py", line 27, in <module>
    from _sqlite3 import *
ModuleNotFoundError: No module named '_sqlite3'
================================================================================
```

and similar failures which then block releasing patch version.
2019-06-21 10:20:35 -07:00
tensorflow Update install_python3.6_pip_packages.sh to use apt. 2019-06-21 10:20:35 -07:00
third_party Update png_archive version to 1.6.37 2019-06-14 10:16:31 -07:00
tools Move bazel.rc to workspace root to support bazel-0.18.0 2019-03-26 10:46:40 -07:00
.bazelrc Move bazel.rc to workspace root to support bazel-0.18.0 2019-03-26 10:46:40 -07:00
.gitignore Move bazel.rc to workspace root to support bazel-0.18.0 2019-03-26 10:46:40 -07:00
ACKNOWLEDGMENTS TensorFlow: Improve performance of Alexnet 2015-11-20 10:30:41 -08:00
ADOPTERS.md Internal file cleanup. 2016-10-18 10:31:29 -07:00
arm_compiler.BUILD Merge changes from github. 2017-07-28 11:03:31 -07:00
AUTHORS Merge changes from github. 2017-12-06 18:47:41 -08:00
BUILD Make LICENSE visible to bazel. 2018-01-02 12:37:06 -08:00
CODE_OF_CONDUCT.md Merge changes from github. 2017-12-28 16:08:58 -08:00
CODEOWNERS Remove tensorflow/contrib/linalg library. linalg remains in core. 2018-09-17 15:49:55 -07:00
configure Make configure script runnable from external workspace. () 2018-02-21 20:39:21 -08:00
configure.py r1.12-rc1 cherry-pick request: Query whether to enable XLA support on MacOS with no as a default () 2018-10-11 17:16:20 -07:00
CONTRIBUTING.md Update Google Python Style Guide link () 2018-07-02 10:37:26 -07:00
ISSUE_TEMPLATE.md Add mobile device field to the issue template. 2018-07-18 11:03:37 -07:00
LICENSE Merge changes from github. 2018-01-03 19:10:47 -08:00
models.BUILD Make models.BUILD filegroup include everything but metadata files and archives. 2017-01-10 14:25:53 -08:00
README.md Updating program in README to use eager. 2018-09-25 07:55:28 -07:00
RELEASE.md Fill in RELEASE.md with the release notes 2019-06-20 14:10:36 -07:00
SECURITY.md fix md link format 2018-06-13 12:14:52 -07:00
WORKSPACE Automated rollback of commit 7229d08f0b 2018-09-26 02:35:25 -07:00




Documentation
Documentation

TensorFlow is an open source software library for numerical computation using data flow graphs. The graph nodes represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture enables you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device without rewriting code. TensorFlow also includes TensorBoard, a data visualization toolkit.

TensorFlow was originally developed by researchers and engineers working on the Google Brain team within Google's Machine Intelligence Research organization for the purposes of conducting machine learning and deep neural networks research. The system is general enough to be applicable in a wide variety of other domains, as well.

TensorFlow provides stable Python API and C APIs as well as without API backwards compatibility guarantee like C++, Go, Java, JavaScript and Swift.

Keep up to date with release announcements and security updates by subscribing to announce@tensorflow.org.

Installation

See Installing TensorFlow for instructions on how to install our release binaries or how to build from source.

People who are a little more adventurous can also try our nightly binaries:

Nightly pip packages

  • We are pleased to announce that TensorFlow now offers nightly pip packages under the tf-nightly and tf-nightly-gpu project on pypi. Simply run pip install tf-nightly or pip install tf-nightly-gpu in a clean environment to install the nightly TensorFlow build. We support CPU and GPU packages on Linux, Mac, and Windows.

Try your first TensorFlow program

$ python
>>> import tensorflow as tf
>>> tf.enable_eager_execution()
>>> tf.add(1, 2)
3
>>> hello = tf.constant('Hello, TensorFlow!')
>>> hello.numpy()
'Hello, TensorFlow!'

Learn more examples about how to do specific tasks in TensorFlow at the tutorials page of tensorflow.org.

Contribution guidelines

If you want to contribute to TensorFlow, be sure to review the contribution guidelines. This project adheres to TensorFlow's code of conduct. By participating, you are expected to uphold this code.

We use GitHub issues for tracking requests and bugs. So please see TensorFlow Discuss for general questions and discussion, and please direct specific questions to Stack Overflow.

The TensorFlow project strives to abide by generally accepted best practices in open-source software development:

CII Best Practices

Continuous build status

Official Builds

Build Type Status Artifacts
Linux CPU Status pypi
Linux GPU Status pypi
Linux XLA Status TBA
MacOS Status pypi
Windows CPU Status pypi
Windows GPU Status pypi
Android Status Download
Raspberry Pi 0 and 1 Status Status Py2 Py3
Raspberry Pi 2 and 3 Status Status Py2 Py3

Community Supported Builds

Build Type Status Artifacts
IBM s390x Build Status TBA
IBM ppc64le CPU Build Status TBA
IBM ppc64le GPU Build Status TBA
Linux CPU with Intel® MKL-DNN Nightly Build Status Nightly
Linux CPU with Intel® MKL-DNN Python 2.7
Linux CPU with Intel® MKL-DNN Python 3.5
Linux CPU with Intel® MKL-DNN Python 3.6
Build Status 1.10.0 py2.7
1.10.0 py3.5
1.10.0 py3.6

For more information

Learn more about the TensorFlow community at the community page of tensorflow.org for a few ways to participate.

License

Apache License 2.0