logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

多视图聚类(multi-view clustering)简介

由于自我表示学习算法在创建图(graph construction)与谱嵌入(spectral embedding)过程中有着O(n^3)甚至更高的复杂度,其难于在大尺度的数据上进行应用。即不同的视图对应着不同的基本矩阵,导致产生的子空间存在着内部不一致性。此时,人们就引入了矩阵分解的方法,将输入分解为基本矩阵和低秩的系数矩阵,同时与子空间方法进行融合。其次,k个被选中的锚点被多个视图共有可以保证

文章图片
#聚类#数据挖掘#机器学习
[tensorflow] feed_dict 传入序列

当前, tensorflow(1.0)还不是很人性化。在session中传入序列参数到图模型中并不是很方便。所以,现在只能将序列中每一个元素对应的tensor和实际值对应写入dict进行传送。比如, 定义图时,把将填入的tensor,先用placeholder占位: with graph.as_default():     nn_weights = [tf.

#tensorflow
[action] deep learning 深度学习 tensorflow 实战(2) 实现简单神经网络以及随机梯度下降算法S.G.D

在之前的实战(1) 中,我们将数据清洗整理后,得到了'notMNIST.pickle'数据。本文将阐述利用tensorflow创建一个简单的神经网络以及随机梯度下降算法。# These are all the modules we'll be using later. Make sure you can import them# before proceeding further.

#tensorflow#深度学习#神经网络 +1
[action]tensorflow深度学习实战 (4) 实现简单卷积神经网络

我们首先导入已经清洗好的数据。这个清洗过程在之前的博文实战(1)。# These are all the modules we'll be using later. Make sure you can import them# before proceeding further.from __future__ import print_functionimport numpy as

#tensorflow#深度学习#机器学习 +2
tensorflow 中对数组元素的操作

上个月没咋写文章。这个月开始,多进行进行总结分享。tensorflow中对tensor对象进行像numpy数组一样便捷的操作是不可能的, 至少对1.2以及之前的版本而言。从issue上看到,有不少人希望tensorflow能及早实现这些操作,但近期来看是不太可能了。但是,这样的操作的确可以实现。下面我来向大家介绍几种常用的操作,以及其在tensorflow中

#tensorflow
[action]tensorflow 深度学习实战(1) deep learning 清洗数据

Deep Learning 深度学习清洗数据学习简单的数据处理经验, 熟悉以后常用的数据集The objective of this assignment is to learn about simple data curation practices, and familiarize you with some of the data we’ll be reusing later.本文使用not

#深度学习#tensorflow#python +1
ubuntu 14.04 搭建GPU深度学习 tensorflow 平台

1. 安装ubuntu 14.04 LTS注意不要进行任何update2. 安装cuda7.5这一步呢,坑很多,我装了两天都失败了. 不小心便会出现ubuntu反复登录,或是黑屏只有命令行的现象。一定要小心。有没有双显卡笔记本在Ubuntu下使用cuda的解决方案https://www.zhihu.com/question/48027732知乎用户林逸洲给了在u

#深度学习#神经网络#tensorflow
在tensorflow中保存模型参数

想要保存训练之后得到的神经网络参数,一般有两种办法。第一种,可以将tensor对象转换为numpy数组进行保存。即,numpy.savetxt('weight.txt', weight.eval())第二种,是利用tensorflow自带的Saver对象。import tensorflow as tf#########################

#tensorflow
[tensorflow]TypeError: Fetch argument .+ has invalid type

TypeError: Fetch argument * has invalid type type 'numpy.float32'>, must be a string or Tensor. (Can not convert a float32 into a Tensor or Operation.)

#tensorflow
    共 17 条
  • 1
  • 2
  • 请选择