Top

tensorflow_tutorials module

Tutorials for TensorFlow.

Source on GitHub.

"""
[Tutorials] for [TensorFlow].

[Source on GitHub][source].

[source]: https://github.com/rxedu/tensorflow-tutorials
[Tutorials]: https://www.tensorflow.org/versions/r0.8/tutorials/index.html
[TensorFLow]: https://www.tensorflow.org/
"""
from .mnist import mnist

__all__ = [
    'mnist'
]

Sub-modules

tensorflow_tutorials.mnist

MNIST For ML Beginners

from tensorflow_tutorials.mnist import MNIST
from tensorflow.examples.tutorials.mnist import input_data

data = input_data.read_data_sets('data', one_hot=True)

mn...