├── LSTM ├── lstm_demo.py └── sin_demo.py ├── MNIST ├── __pycache__ │ ├── mnist_inference.cpython-36.pyc │ └── mnist_train.cpython-36.pyc ├── mnist_eval.py ├── mnist_inference.py └── mnist_train.py ├── PTB_process ├── number.py ├── train.py └── vocab.py ├── README.md ├── TED_process ├── README.md ├── number.py ├── seq2seq_test.py ├── seq2seq_train.py └── vocab.py ├── flower ├── __init__.py ├── fine_tuning.py └── get_image_data.py ├── keras_demo ├── LeNet5_keras.py ├── inception_keras.py ├── input_duo.py ├── keras_tf.py └── lstm_keras.py ├── lenet ├── __pycache__ │ ├── lenet_inference.cpython-36.pyc │ └── lenet_train.cpython-36.pyc ├── lenet_eval.py ├── lenet_inference.py └── lenet_train.py └── 第一个神经网络程序.py /LSTM/lstm_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/LSTM/lstm_demo.py -------------------------------------------------------------------------------- /LSTM/sin_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/LSTM/sin_demo.py -------------------------------------------------------------------------------- /MNIST/__pycache__/mnist_inference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/MNIST/__pycache__/mnist_inference.cpython-36.pyc -------------------------------------------------------------------------------- /MNIST/__pycache__/mnist_train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/MNIST/__pycache__/mnist_train.cpython-36.pyc -------------------------------------------------------------------------------- /MNIST/mnist_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/MNIST/mnist_eval.py -------------------------------------------------------------------------------- /MNIST/mnist_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/MNIST/mnist_inference.py -------------------------------------------------------------------------------- /MNIST/mnist_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/MNIST/mnist_train.py -------------------------------------------------------------------------------- /PTB_process/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/PTB_process/number.py -------------------------------------------------------------------------------- /PTB_process/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/PTB_process/train.py -------------------------------------------------------------------------------- /PTB_process/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/PTB_process/vocab.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SelfStudyTF 2 | TensorFlow实战Google深度学习框架(第二版)代码 3 | -------------------------------------------------------------------------------- /TED_process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/TED_process/README.md -------------------------------------------------------------------------------- /TED_process/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/TED_process/number.py -------------------------------------------------------------------------------- /TED_process/seq2seq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/TED_process/seq2seq_test.py -------------------------------------------------------------------------------- /TED_process/seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/TED_process/seq2seq_train.py -------------------------------------------------------------------------------- /TED_process/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/TED_process/vocab.py -------------------------------------------------------------------------------- /flower/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flower/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/flower/fine_tuning.py -------------------------------------------------------------------------------- /flower/get_image_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/flower/get_image_data.py -------------------------------------------------------------------------------- /keras_demo/LeNet5_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/keras_demo/LeNet5_keras.py -------------------------------------------------------------------------------- /keras_demo/inception_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/keras_demo/inception_keras.py -------------------------------------------------------------------------------- /keras_demo/input_duo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/keras_demo/input_duo.py -------------------------------------------------------------------------------- /keras_demo/keras_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/keras_demo/keras_tf.py -------------------------------------------------------------------------------- /keras_demo/lstm_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/keras_demo/lstm_keras.py -------------------------------------------------------------------------------- /lenet/__pycache__/lenet_inference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/lenet/__pycache__/lenet_inference.cpython-36.pyc -------------------------------------------------------------------------------- /lenet/__pycache__/lenet_train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/lenet/__pycache__/lenet_train.cpython-36.pyc -------------------------------------------------------------------------------- /lenet/lenet_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/lenet/lenet_eval.py -------------------------------------------------------------------------------- /lenet/lenet_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/lenet/lenet_inference.py -------------------------------------------------------------------------------- /lenet/lenet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/lenet/lenet_train.py -------------------------------------------------------------------------------- /第一个神经网络程序.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesWu123/SelfStudyTF/HEAD/第一个神经网络程序.py --------------------------------------------------------------------------------