- Statistics for Machine Learning
- Pratap Dangeti
- 330字
- 2021-07-02 19:05:58
Comparison between regression and machine learning models
Linear regression and machine learning models both try to solve the same problem in different ways. In the following simple example of a two-variable equation fitting the best possible plane, regression models try to fit the best possible hyperplane by minimizing the errors between the hyperplane and actual observations. However, in machine learning, the same problem has been converted into an optimization problem in which errors are modeled in squared form to minimize errors by altering the weights.
In statistical modeling, samples are drawn from the population and the model will be fitted on sampled data. However, in machine learning, even small numbers such as 30 observations would be good enough to update the weights at the end of each iteration; in a few cases, such as online learning, the model will be updated with even one observation:

Machine learning models can be effectively parallelized and made to work on multiple machines in which model weights are broadcast across the machines, and so on. In the case of big data with Spark, these techniques are implemented.
Statistical models are parametric in nature, which means a model will have parameters on which diagnostics are performed to check the validity of the model. Whereas machine learning models are non-parametric, do not have any parameters, or curve assumptions; these models learn by themselves based on provided data and come up with complex and intricate functions rather than predefined function fitting.
Multi-collinearity checks are required to be performed in statistical modeling. Whereas, in machine learning space, weights automatically get adjusted to compensate the multi-collinearity problem. If we consider tree-based ensemble methods such as bagging, random forest, boosting, and so on, multi-collinearity does not even exist, as the underlying model is a decision tree, which does not have a multi-collinearity problem in the first place.
With the evolution of big data and distributed parallel computing, more complex models are producing state-of-the-art results which were impossible with past technology.
- Learn Type:Driven Development
- AWS Serverless架構:使用AWS從傳統部署方式向Serverless架構遷移
- MongoDB for Java Developers
- Java實戰(第2版)
- JavaScript程序設計(第2版)
- 開源項目成功之道
- 大學計算機基礎實驗指導
- Python數據可視化之美:專業圖表繪制指南(全彩)
- 深入淺出Python數據分析
- C# 7.1 and .NET Core 2.0:Modern Cross-Platform Development(Third Edition)
- Clojure Data Structures and Algorithms Cookbook
- Isomorphic Go
- LabVIEW數據采集(第2版)
- Mastering VMware vSphere Storage
- JavaScript全棧開發