Description
[Read More]
Applied Machine Learning Summary
Handle with Bad Case (Error Analysis)
继续。
[Read More]
Outline of Applied Machine Learning Algorithms
概率统计推断:分类/回归(CTR预估,推荐系统)聚类(用户群分析,异常检测)。
平面构成分析:图像识别(包括人脸),计算机视觉
时间序列分析:NLP(包括语音?),计算机听觉
[Read More]
Newton's Method
牛顿法
牛顿法(Newton’s Method)是一种近似求解实数域和复数域上方程 $f(x) = 0$ 根的方法,主要利用函数的泰勒级数前几项找对应的根。
[Read More]
Random Forest
随机森林
随机森林(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]