特征选择 (feature_selection) Filter 1. 移除低方差的特征 (Removing features with low variance) 2. 单变量特征选择 (Univariate feature selection) Wrapper 3. 递归特征消除 (Recursi ...
分类:
其他好文 时间:
2019-05-27 13:29:37
阅读次数:
92
特征选择 (feature_selection) Filter 1. 移除低方差的特征 (Removing features with low variance) 2. 单变量特征选择 (Univariate feature selection) Wrapper 3. 递归特征消除 (Recursi ...
分类:
其他好文 时间:
2019-05-27 13:26:05
阅读次数:
100
例:输入是m*m*c的图像,卷积核大小是k*k,其输出是n*n*d,也表示卷积核的数量是d,其总参数是多少,总的乘法计算量是多少? 总参数:c*k*k*d 总乘法计算量:c*k*k*n*n*d 解释如下: 对于输出feature-map上某一个channel的点,经过如下两步得到: 1. 卷积核k* ...
分类:
其他好文 时间:
2019-05-25 15:47:10
阅读次数:
616
bitcoinj的介绍: bitcoinj提供了一个与Bitcoin协议交互的类库。bitcoinj维护了一个钱包(wallet),以及发送/接收交易(transactions)的方法,此外还维护了许多其他的功能特点,将会在下面一一列举。 Feature 1: 高度优化的简单支付验证(simplif ...
分类:
其他好文 时间:
2019-05-18 23:43:04
阅读次数:
147
import tensorflow as tf def _int64_feature(value): return tf.train.Feature(int64_list=tf.train.Int64List(value=[value])) num_shards = 2 instances_per_... ...
分类:
编程语言 时间:
2019-05-18 14:16:42
阅读次数:
103
import numpy as np import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data # 定义函数转化变量类型。 def _int64_feature(value): return ... ...
分类:
编程语言 时间:
2019-05-18 12:27:27
阅读次数:
142
FPN(feature pyramid networks)算法讲解 https://blog.csdn.net/u014380165/article/details/72890275 FPN(feature pyramid networks)算法讲解 https://blog.csdn.net/u0 ...
分类:
编程语言 时间:
2019-05-15 15:50:11
阅读次数:
206
42028: Assignment 2 – Autumn 2019 Page 1 of 4Faculty of Engineering and Information TechnologySchool of Software42028: Deep Learning and Convolutional ...
分类:
其他好文 时间:
2019-05-12 19:51:54
阅读次数:
127
ECE 425/525 Digital Signal ProcessingSpring 2019Dept. of Electrical and Computer Engineering Miami University1Homework 11 AssignmentWeights: 60ptsDue ...
分类:
其他好文 时间:
2019-05-12 19:42:34
阅读次数:
99
软件开发中,总有无穷无尽的新的功能要不断添加进来。 添加一个新功能时,你肯定不希望因为一些实验性质的代码,把主分支搞乱了, 所以,每添加一个新功能,最好新建一个feature分支, 在上面开发,完成后,合并,最后,删除该feature分支(个人倾向于不删)。 只是演示效果, 开发中如果并不需要此功能 ...
分类:
其他好文 时间:
2019-05-12 13:47:35
阅读次数:
118