最新 最热

Finding the closest objects in the feature space在特征空间中找到最接近的对象

Sometimes, the easiest thing to do is to just find the distance between two objects. We just need to find some distance metric, compute the pairwise distances, ...

2020-04-24
0

Quantizing an image with KMeans clustering使用KMeans聚类量化图片

Image processing is an important topic in which clustering has some application.

2020-04-24
0

python数据分析——在python中实现线性回归

线性回归是基本的统计和机器学习技术之一。经济,计算机科学,社会科学等等学科中,无论是统计分析,或者是机器学习,还是科学计算,都有很大的机会需要用到线性模型。建议先学习它,然后再尝试更复杂的方法。...

2020-04-22
0

Directly applying Bayesian ridge regression直接使用贝叶斯岭回归

In the Using ridge regression to overcome linear regression's shortfalls recipe, we discussed the connections between the constraints imposed by ridge regressio...

2020-04-22
0

Using sparsity to regularize models使用稀疏性来正则化模型

The least absolute shrinkage and selection operator (LASSO) method is very similar to ridge regression and LARS. It's similar to Ridge Regression in the sense t...

2020-04-21
0

Optimizing the ridge regression parameter最优化岭回归参数

Once you start using ridge regression to make predictions or learn about relationships in the system you're modeling, you'll start thinking about the choice of ...

2020-04-21
0

Using stochastic gradient descent for regression使用随机梯度下降进行回归分析

In this recipe, we'll get our first taste of stochastic gradient descent. We'll use it for regression here, but for the next recipe, we'll use it for classifica...

2020-04-20
0

Using Gaussian processes for regression降维之高斯过程

In this recipe, we'll use the Gaussian process for regression. In the linear models section,we saw how representing prior information on the coefficients was po...

2020-04-20
0

Using truncated SVD to reduce dimensionality使用截断奇异值进行降维

Truncated Singular Value Decomposition (SVD) is a matrix factorization technique that factors a matrix M into the three matrices U, Σ, and V. This is very simil...

2020-04-20
0

Imputing missing values through various strategies填充处理缺失值的不同方法

Data imputation is critical in practice, and thankfully there are many ways to deal with it.In this recipe, we'll look at a few of the strategies. However, be a...

2020-04-20
0