自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 C/C++面试题:class和struct有什么区别

c++ class struct

2017-08-10 17:54:01 490

原创 RF, GBDT, XGBOOST 之 GBDT

随机森林GBDTXGBOOST博主记忆力较差,主要目的是以后忘了的时候可以不用去网上找各种资料,内容有从其他地方摘录,也有自己总结,转载请注明出处其实Wikipedia GBDT 对算法写的最清楚, 从gradient boosting 到 gradient boosting (decision) treeGradient boostingGradient Boosting是一种Boostin

2017-06-07 14:50:06 897

原创 RF, GBDT, XGBOOST 之 Random forest

随机森林算法 优点

2017-06-07 10:17:46 853

原创 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 6055

原创 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 4372

原创 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 450

原创 tensorflow function笔记: dropout

tf.nn.dropout(x, keep_prob, noise_shape=None, seed=None, name=None)

2017-03-13 23:29:22 335

原创 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 329

原创 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 574

转载 AdaBoosting

AdaBoost 算法算法解释[1] 统计学算法

2017-02-08 11:36:50 904

原创 朴素贝叶斯

朴素贝叶斯朴素贝叶斯贝叶斯定理基本方法模型多项模型 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 296

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除