- 博客(11)
- 收藏
- 关注
原创 RF, GBDT, XGBOOST 之 GBDT
随机森林GBDTXGBOOST博主记忆力较差,主要目的是以后忘了的时候可以不用去网上找各种资料,内容有从其他地方摘录,也有自己总结,转载请注明出处其实Wikipedia GBDT 对算法写的最清楚, 从gradient boosting 到 gradient boosting (decision) treeGradient boostingGradient Boosting是一种Boostin
2017-06-07 14:50:06 944
原创 tensorflow function笔记: tf.tile
tf.tileFunctiontf.tile(input, multiples, name=None)tile n. 瓷砖通过拼接一个给定的tensor构建一个新的tensor Constructs a tensor by tiling a given tensor.output tensor 的第i维有 input.dims(i) * multiples[i] 个元素 This operat
2017-03-31 11:33:00 6088
原创 tensorflow function笔记: tf.expand_dims and tf.squeeze
tf.expand_dims()Functiontf.expand_dims(input, axis=None, name=None, dim=None)Inserts a dimension of 1 into a tensor’s shape. 在第axis位置增加一个维度Given a tensor input, this operation inserts a dimension of 1
2017-03-31 11:22:03 4392
原创 tensorflow function笔记: tf.nn.conv2d
tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, data_format=None, name=None)Argumentsinput shape: [batch, in_height, in_width, in_channels]filter shape: [filter_height, filter
2017-03-20 17:02:11 484
原创 tensorflow function笔记: dropout
tf.nn.dropout(x, keep_prob, noise_shape=None, seed=None, name=None)
2017-03-13 23:29:22 363
原创 C++中的const
C++语言中的const关键字const是一个C和C++语言的关键字,意思是宣告一个常数(不能改变的变量),即只读。const作为类型限定符,是类型的一部分。以下是和C语言兼容的用法:int m = 1, n = 2; // int 类型的对象const int a = 3; // const int 类型的对象int const b = 4; //同上const int * p //指向 c
2017-03-06 21:33:52 355
原创 numpy.sum
Parametersnumpy.sum(a, axis=None, dtype=None, out=None, keepdims=False)a: numpy array axis: If axis is a tuple of ints, a sum is performed on all of the axes specified in the tuple instead of a sin
2017-03-02 09:52:57 600
原创 朴素贝叶斯
朴素贝叶斯朴素贝叶斯贝叶斯定理基本方法模型多项模型 MultinomialNB贝叶斯定理贝叶斯定理是关于随机事件A和B的条件概率的一则定理。 P(A|B)=P(B|A)P(A)P(B){\displaystyle P(A|B)={\frac {P(B|A)\,P(A)}{P(B)}}} 在贝叶斯定理中,每个名词都有约定俗成的名称:P(A|B)是已知B发生后A的条件概率,也由于得自B的
2017-02-07 11:03:12 321
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人