python
文章平均质量分 78
two_star
Email:xingxin.hsing@gmail.com
Blog:https://twostarxx.github.io/
展开
-
Cost Function的原理及实现(Python, matlab)
成本函数梯度下降原创 2017-11-18 00:29:45 · 6711 阅读 · 0 评论 -
常用模型使用
文章目录LightGBMxgboostLearning CurvesLightGBMfrom sklearn.model_selection import train_test_splitcol = [i for i in train_notnull.columns if i not in ['sales', 'date','id']]y = 'sales'train_x, test_x...原创 2018-11-20 21:37:53 · 505 阅读 · 0 评论 -
【深度学习基础】《深度学习》李宏毅
目录Lecture I: Introduction of Deep Learning1. 深度学习的步骤2. 全连接前馈神经网络(Fully Connect Feedforward Network)2.1 神经元2.2. 激励函数2.3 Softmax layer2.4 网络结构2.5 应用举例(数字识别)3. 对函数进行优化(goodness of funct...原创 2018-11-21 21:09:05 · 10057 阅读 · 1 评论 -
【深度学习基础】正则化
https://mooc.study.163.com/learn/2001281003?tid=2001391036#/learn/content?type=detail&id=2001701043&cid=2001694281常用L1和L2正则化,随机失活(dropout)。第一周 深度学习的实战 1.4L1 & L2为什么则会原创 2018-11-21 21:10:42 · 2424 阅读 · 0 评论 -
【深度学习基础】正反向传播
文章目录深度神经网络的前向传播深度神经网络的前向传播前向传播的公式推导原创 2018-11-21 21:11:29 · 1085 阅读 · 0 评论 -
Python数据处理常用操作
Python数据处理常用操作垃圾回收机制计数机制垃圾回收机制计数机制python里每一个东西都是对象,它们的核心就是一个结构体:PyObject。PyObject是每个对象必有的内容,其中ob_refcnt就是做为引用计数。当一个对象有新的引用时,它的ob_refcnt就会增加,当引用它的对象被删除,它的ob_refcnt就会减少。...原创 2018-11-17 22:56:29 · 282 阅读 · 0 评论