摘要: 1.定义进程是具有一定独立功能的程序关于某个数据集合上的一次运行活动,进程是系统进行资源分配和调度的一个独立单位. 线程是进程的一个实体,是CPU调度和分派的基本单位,它是比进程更小的能独立运行的基本单位.线程自己基本上不拥有系统资源,只拥有一点在运行中必不可少的资源... 阅读全文
posted @ 2018-05-30 22:51 yucen 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 通过TensorFlow实现卷积神经网络,识别MNIST数据集,最终正确率99.2%左右。## 通过TensorFlow实现卷积神经网络,识别MNIST数据集from tensorflow.examples.tutorials.mnist import input_d... 阅读全文
posted @ 2018-05-30 21:25 yucen 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 通过TensorFlow实现多层感知机,识别MNIST数据集,最终正确率98%左右。## 通过TensorFlow实现多层感知机,识别MNIST数据集from tensorflow.examples.tutorials.mnist import input_datai... 阅读全文
posted @ 2018-05-30 21:18 yucen 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 通过TensorFlow实现Softmax Regression,识别MNIST数据集,最终正确率92%左右。## 通过TensorFlow实现Softmax Regression,实现手写识别# 加载mnist数据from tensorflow.examples.t... 阅读全文
posted @ 2018-05-30 16:24 yucen 阅读(250) 评论(0) 推荐(0) 编辑
摘要: TensorFlow测试程序,如果正常运行,输出 b'hello,tensorf' ,则TensorFlow安装成功。import tensorflow as tfhello = tf.constant('hello,tensorf')sess = tf.Sessio... 阅读全文
posted @ 2018-05-30 15:50 yucen 阅读(3555) 评论(0) 推荐(0) 编辑