码迷,mamicode.com
首页 >  
搜索关键字:56、组播配置实验之pim sparse mode利用auto-rp动态选取rp    ( 295个结果
linux 内存管理模型
一、前言 在linux内核中支持3种内存模型,分别是Flat memory model,Discontiguous memory model和Sparse memory model。三种内存模型对应于linux内核的配置选项分别为:CONFIG_FLATMEM,CONFIG_DISCONTIGMEM ...
分类:系统相关   时间:2018-06-17 16:07:12    阅读次数:578
tf.IndexedSlices学习
@tf_export("IndexedSlices") class IndexedSlices(_TensorLike): """A sparse representation of a set of tensor slices at given indices. This class is a s... ...
分类:其他好文   时间:2018-06-08 21:55:03    阅读次数:828
深度学习—反卷积的理解
1、Deconvolution大致可以分为以下几个方面: (1)非监督学习:unsupervised learning,其实就是covolutional sparse coding:这里的deconv只是观念上和传统的conv反向,传统的conv是从图片生成feature map,而deconv是用 ...
分类:其他好文   时间:2018-06-02 13:58:05    阅读次数:1406
tensorflow进阶篇-4(损失函数3)
Softmax交叉熵损失函数(Softmax cross-entropy loss)是作用于非归一化的输出结果只针对单个目标分类的计算损失。通过softmax函数将输出结果转化成概率分布,然后计算真值概率分布的损失: 输出:[ 1.16012561] 稀疏Softmax交叉熵损失函数(Sparse  ...
分类:其他好文   时间:2018-05-25 21:05:23    阅读次数:170
[吃药深度学习随笔] 交叉熵
#TensorFlow函数 ce = -tf.reduce_mean(y_* tf.log(tf.clip_by_value(y, 1e-12, 1.0))) #Tensorflow代码 ce = tf.nn.sparse_softmax_cross_entropy_with_logits(logi... ...
分类:其他好文   时间:2018-05-21 01:02:49    阅读次数:185
Sparse Representation
Given any signal $x\in R^n$, we can obtain sparse representation $\theta\in R^n$ of $x$ in two ways: 1. Basis expansion: given sparse inducing othonor ...
分类:其他好文   时间:2018-05-19 15:39:11    阅读次数:176
What is K-SVD?
Given $N$ data samples in $n$ dimensional space, i.e., $Y \in R^{n\times N}$, the task is to compute the dictionary $D\in R^{n\times K}$ and sparse co ...
分类:其他好文   时间:2018-05-19 00:09:26    阅读次数:235
python稀疏矩阵sparse matrix的保存和读取
from scipy import sparse sparse.save_npz('./filename.npz', csr_matrix_variable) #保存 csr_matrix_variable = sparse.load_npz('path.npz') #读 参考: https://b ...
分类:编程语言   时间:2018-05-18 20:09:25    阅读次数:425
Convolutional Neural Networks(2):Sparse Interactions, Receptive Field and Parameter Sharing
Sparse Interactions, Receptive Field and Parameter Sharing是整个CNN深度网络的核心部分,我们用本文来具体分析其原理。 首先我们考虑Feedforward Neural Network,L层的输出矩阵,等于L层的输入矩阵与L层的权重矩阵做矩阵 ...
分类:Web程序   时间:2018-05-04 21:57:45    阅读次数:375
磁盘挂载
一、磁盘挂载(上)1、磁盘不分区,直接格式化:mkfs.xfs-f/dev/sdb[root@linux-01~]#mkfs.xfs-f/dev/sdbmeta-data=/dev/sdbisize=512agcount=4,agsize=655360blks=sectsz=512attr=2,projid32bit=1=crc=1finobt=0,sparse=0data=bsize=4096b
分类:其他好文   时间:2018-04-11 10:44:52    阅读次数:188
295条   上一页 1 ... 6 7 8 9 10 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!