├── .gitignore ├── .idea └── vcs.xml ├── CNN ├── CNN_targetClassification │ ├── emotion_baseOnVGG.py │ ├── test_fvgg_emo.txt │ ├── train_fvgg_emo.txt │ └── 卷积神经网络实现目标分类 ├── CNN_tensorflow_mnist.py └── 卷积神经网络 ├── MNIST_DATA └── mnist.pkl.gz ├── NN ├── NN_tensorflow_mnist.py └── 传统神经网络 ├── README.md ├── TensorFlow_Learning ├── _10_tensorflow_visual1_demo.py ├── _1_tensorflow_struct_demo.py ├── _2_session_demo.py ├── _3_variable_demo.py ├── _4_placeholder_demo.py ├── _5_activationFunction_demo.py ├── _6_hiddenLayer_demo.py ├── _7_NNstruct_demo.py ├── _8_visual_demo.py └── _9_optimizer_demo.py └── TensorFlow_Test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CNN/CNN_targetClassification/emotion_baseOnVGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/CNN/CNN_targetClassification/emotion_baseOnVGG.py -------------------------------------------------------------------------------- /CNN/CNN_targetClassification/test_fvgg_emo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/CNN/CNN_targetClassification/test_fvgg_emo.txt -------------------------------------------------------------------------------- /CNN/CNN_targetClassification/train_fvgg_emo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/CNN/CNN_targetClassification/train_fvgg_emo.txt -------------------------------------------------------------------------------- /CNN/CNN_targetClassification/卷积神经网络实现目标分类: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNN/CNN_tensorflow_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/CNN/CNN_tensorflow_mnist.py -------------------------------------------------------------------------------- /CNN/卷积神经网络: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MNIST_DATA/mnist.pkl.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/MNIST_DATA/mnist.pkl.gz -------------------------------------------------------------------------------- /NN/NN_tensorflow_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/NN/NN_tensorflow_mnist.py -------------------------------------------------------------------------------- /NN/传统神经网络: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/NN/传统神经网络 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /TensorFlow_Learning/_10_tensorflow_visual1_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_10_tensorflow_visual1_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_1_tensorflow_struct_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_1_tensorflow_struct_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_2_session_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_2_session_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_3_variable_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_3_variable_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_4_placeholder_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_4_placeholder_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_5_activationFunction_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_5_activationFunction_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_6_hiddenLayer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_6_hiddenLayer_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_7_NNstruct_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_7_NNstruct_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_8_visual_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_8_visual_demo.py -------------------------------------------------------------------------------- /TensorFlow_Learning/_9_optimizer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Learning/_9_optimizer_demo.py -------------------------------------------------------------------------------- /TensorFlow_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpp117/DeepLearning_BaseOnTensorFlow/HEAD/TensorFlow_Test.py --------------------------------------------------------------------------------