Why isn't tensorflow/models not part of the TensorFlow API? Python module?

Viewed 26
1 Answers

Seems like a sensible to me. These are examples where the TensorFlow library has been used in order to solve a specific problem/example.

It makes sense that the code used to solve these problems should be entirely separate from the main library/framework API, no?

ALthough, if you are specifically interested in loading the NIST dataset note that there's now an example dataset available under the keras api:

mnist = tf.keras.datasets.mnist
(x_train, y_train), (x_test, y_test) = mnist.load_data()
Related