tf-keras-skeleton.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:LIE 作者: EmbraceLife 项目源码 文件源码
def load_data(path='mnist.npz'):
          """Loads the MNIST dataset.

          Arguments:
              path: path where to cache the dataset locally
                  (relative to ~/.keras/datasets).

          Returns:
              Tuple of Numpy arrays: `(x_train, y_train), (x_test, y_test)`.
          """
          path = get_file(
              path, origin='https://s3.amazonaws.com/img-datasets/mnist.npz')
          f = np.load(path)
          x_train = f['x_train']
          y_train = f['y_train']
          x_test = f['x_test']
          y_test = f['y_test']
          f.close()
          return (x_train, y_train), (x_test, y_test)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号