yolov3-tiny中有下面这些层: Convolutional Maxpooling Leaky-Relu Linear-Relu(正常的Relu) Residual Block Strided Residual Block Upsample 查看TensorRT支持的网络层种类: https: ...
分类:
其他好文 时间:
2019-05-12 10:55:16
阅读次数:
747
目录: 一、TensorFlow的基本操作 二、tf函数 三、TensorFlow的算术操作 四、张量操作Tensor Transformations 4.1 数据类型转换Casting 4.2 形状操作Shapes and Shaping 4.3 切片与合并(Slicing and Joining ...
分类:
其他好文 时间:
2019-05-10 12:42:43
阅读次数:
125
理论 在混合精度训练中,权重,激活值和梯度是保存成fp16的形式,为了能够匹配fp32的网络精度,有一个权重的fp32的master copy。 在tensorflow中的具体实现 tensorflow支持fp16的存储和tensor计算。包含tf.float16的数据类型的卷积和矩阵运算会自动使用 ...
分类:
其他好文 时间:
2019-05-02 23:25:03
阅读次数:
729
1.1 list 转 numpy ndarray = np.array(list) 1.2 numpy 转 list list = ndarray.tolist() 2.1 list 转 torch.Tensor tensor=torch.Tensor(list) 2.2 torch.Tensor ...
分类:
编程语言 时间:
2019-04-29 20:41:42
阅读次数:
402
paper: 《Attention Augmented Convolutional Networks》 https://arxiv.org/pdf/1904.09925.pdf 这篇文章是google brain的,应该有分量。上来就说:卷积神经网络有一个重要的弱点就是 它仅仅操作于于一个领域,对于 ...
分类:
Web程序 时间:
2019-04-25 11:42:18
阅读次数:
2109
RuntimeError: bool value of Tensor with more than one value is ambiguous 运行下面这段代码的时候出错了,后来网上搜说改成 if w1.grad is not None: 可以通过。 ...
分类:
其他好文 时间:
2019-04-24 15:59:37
阅读次数:
1923
What to do when you've installed cuda and tensorflow, but you get this error right after you import tensorflow? "ImportError: libcublas.so.9.0: cannot ...
分类:
其他好文 时间:
2019-04-21 00:15:27
阅读次数:
192
Here is a popular issue when you want to use tensorbard with your upgraded tensorflow and tensorboard. In general you will get this issue, when you ha ...
分类:
其他好文 时间:
2019-04-20 22:59:45
阅读次数:
544
研究大数据和数据挖掘的都知道,并行化算法研究是大数据领域一个较为重要的研究热点。近年来国内外开始关注在 Spark 平台上如何实现各种机器学习和数据挖掘并行化算法设计。Spark 提供了大量的库,包括SQL、DataFrames、MLlib、GraphX、Spark Streaming。 开发者可以 ...
分类:
其他好文 时间:
2019-04-20 09:58:04
阅读次数:
139
Blackjack CodeForces - 104A Tensor特别喜欢玩扑克,还总是爱发明一些关于扑克牌的游戏,有天他突然脑洞大开想到了这样的一个游戏: 现在有一副52张的扑克牌(没有大小王),规定每一张牌都有他自己的values,2~10点数分别对应2~10的values,QJK代表的val ...
分类:
其他好文 时间:
2019-04-19 19:27:30
阅读次数:
143