译者: "hijkzzz" 警告 这个API目前还处于试验阶段,可能在不久的将来会发生变化。 Torch支持COO(rdinate )格式的稀疏张量,这可以有效地存储和处理大多数元素为零的张量。 稀疏张量表示为一对稠密张量:一个值张量和一个二维指标张量。一个稀疏张量可以通过提供这两个张量,以及稀疏张 ...
分类:
其他好文 时间:
2019-02-10 12:29:02
阅读次数:
215
>>> a=np.array([[-2.6, -1.7, -3.2, 0.1], [-2.6, -1.7, 3.2, 0.1]]) >>> z=tf.nn.sparse_softmax_cross_entropy_with_logits(logits=a,labels=[2,2]) >>> sess... ...
分类:
其他好文 时间:
2019-01-22 21:53:36
阅读次数:
194
vmware SE Sparse DISK 的介绍
分类:
系统相关 时间:
2019-01-03 00:02:21
阅读次数:
184
机器学习 特征工程 特征抽取 字典特征抽取 sklearn.feature_extraction.DictVectorizer 类DictVectorizer(sparse=True) 如果sparse=False 则返回列表 .fit_transform(X) X是字典或者包含字典的迭代器 返回s ...
分类:
其他好文 时间:
2018-12-11 01:42:02
阅读次数:
299
#!/usr/bin/envpython2#-*-coding:utf-8-*-"""CreatedonTueOct208:43:022018@author:myhaspl@email:myhaspl@myhaspl.comtf.nn.softmaxtf.nn.sparse_softmax_cross_entropy_with_logitstf.nn.softmax_cross_entropy_w
分类:
其他好文 时间:
2018-12-03 20:10:55
阅读次数:
205
Given two sparse matrices A and B, return the result of AB. You may assume that A's column number is equal to B's row number. Example: Input: A = [ [ ...
分类:
其他好文 时间:
2018-12-02 10:32:42
阅读次数:
172
https://networklessons.com/multicast/multicast-routing/ IP多播有两种模式,密集模式和稀疏模式: Dense Mode Sparse Mode 密集模式下,每个路由器收到多播包之后,发往除接收接口之外的所有其它接口,类似,洪泛。 稀疏模式,待补 ...
分类:
其他好文 时间:
2018-11-21 11:00:20
阅读次数:
150
from scipy.sparse import csr_matrix import numpy as np indptr = np.array([0, 2, 3, 6]) indices = np.array([0, 2, 2, 0, 1, 2]) data = np.array([1, 2, 3 ...
分类:
其他好文 时间:
2018-11-10 00:09:35
阅读次数:
264
第五章中完整的训练MNIST数据的神经网络模型的程序代码中,直接运行程序的话会遇到以下的错误。 把下面的这行代码 tf.initialize_all_variables.run()AttributeError: 'function' object has no attribute 'run' ...
分类:
其他好文 时间:
2018-11-09 14:21:13
阅读次数:
239
In graph theory, the complement of a graph G is a graph H on the same vertices such that two distinct vertices of H are adjacent if and only if they a ...
分类:
其他好文 时间:
2018-11-04 21:03:05
阅读次数:
157