摘要: 1 #coding = utf-8 2 from tensorflow.examples.tutorials.mnist import input_data 3 import tensorflow as tf 4 5 mnist = input_data.read_data_sets("MNIST_data/", one_hot = True) 6 #创建一个Intercative... 阅读全文
posted @ 2017-12-23 23:27 yoyoball9999 阅读(1275) 评论(0) 推荐(0) 编辑
摘要: 1 #coding=utf-8 2 import numpy as np 3 import sklearn.preprocessing as prep 4 import tensorflow as tf 5 from tensorflow.examples.tutorials.mnist import input_data 6 7 def xavier_init(f... 阅读全文
posted @ 2017-12-23 23:20 yoyoball9999 阅读(2056) 评论(0) 推荐(0) 编辑
摘要: 使用PCA方法对高维的鸢尾花数据(4维3类样本)进行降维分类,部分鸢尾花数据集如下: #coding=utf-8 import matplotlib.pyplot as plt from sklearn.decomposition import PCA from sklearn.datasets i 阅读全文
posted @ 2017-11-07 22:03 yoyoball9999 阅读(7299) 评论(0) 推荐(1) 编辑
摘要: 使用KMeans算法对简单的jpg图片进行处理得到大概轮廓 #coding = utf-8 import numpy as np import PIL.Image as image from sklearn.cluster import KMeans def loadData(filePath): 阅读全文
posted @ 2017-11-07 21:54 yoyoball9999 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 根据学生月上网时间数据运用DBSCAN算法计算: 运行结果: Labels: [ 0 -1 0 1 -1 1 0 1 2 -1 1 0 1 1 3 -1 -1 3 -1 1 1 -1 1 3 4 -1 1 1 2 0 2 2 -1 0 1 0 0 0 1 3 -1 0 1 1 0 0 2 -1 1 阅读全文
posted @ 2017-11-04 16:14 yoyoball9999 阅读(1094) 评论(3) 推荐(0) 编辑
摘要: Kmeans算法分析31省市消费水平 运算后; Expenses: 4512.27['江苏', '安徽', '湖南', '湖北', '广西', '海南', '四川', '云南']Expenses: 7754.66['北京', '上海', '广东']Expenses: 5678.62['天津', '浙 阅读全文
posted @ 2017-11-04 16:03 yoyoball9999 阅读(337) 评论(0) 推荐(0) 编辑