资源简介
官方入门的手写字体识别能运行的那种…
代码片段和文件信息
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License Version 2.0 (the “License“);
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing software
# distributed under the License is distributed on an “AS IS“ BASIS
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
“““Functions for downloading and reading MNIST data.“““
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import gzip
import os
import tempfile
import numpy
from six.moves import urllib
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
from tensorflow.contrib.learn.python.learn.datasets.mnist import read_data_sets
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-08-17 10:15 Hand_writing_detection\
文件 1136 2017-08-16 20:19 Hand_writing_detection\input_data.py
目录 0 2017-08-16 20:23 Hand_writing_detection\MNIST_data\
文件 1648877 2017-08-16 20:23 Hand_writing_detection\MNIST_data\t10k-images-idx3-ubyte.gz
文件 4542 2017-08-16 20:23 Hand_writing_detection\MNIST_data\t10k-labels-idx1-ubyte.gz
文件 9912422 2017-08-16 20:23 Hand_writing_detection\MNIST_data\train-images-idx3-ubyte.gz
文件 28881 2017-08-16 20:23 Hand_writing_detection\MNIST_data\train-labels-idx1-ubyte.gz
文件 872 2017-08-17 10:09 Hand_writing_detection\test_handwriting.py
目录 0 2017-08-16 20:23 Hand_writing_detection\__pycache__\
文件 593 2017-08-16 20:23 Hand_writing_detection\__pycache__\input_data.cpython-35.pyc
评论
共有 条评论