随机森林(Random Forest,RF)基于 Bagging 的想法,训练多个学习器集成所有的方式降低模型在训练数据集上的方差,并且各个学习器可以并行操作。
[Read More]
3. Longest Substring Without Repeating Characters
最长不重复子序列 (Medium)
Description
Given a string, find the length of the longest substring without repeating characters.
[Read More]
Regression Metrics
回归指标
Table of Contents
[Read More]
Object Detection
Q&A
解决目标检测中对输入图像大小的限制方法? - 知乎
[Read More]
238. Product of Array Except Self
Medium
Description
Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i].
[Read More]
Gradient Boosting Machine
梯度提升算法(GBM)
提升树利用加法模型和前向分布算法实现学习的优化过程,当损失函数是平方损失 (回归) 和指数损失 (分类) 时,每一步的优化是很简单的,但对一般损失函数 (损失函数类别可参考这篇介绍) 而言,往往每一步优化并不那么容易。
[Read More]