- Scala for Machine Learning(Second Edition)
- Patrick R. Nicolas
- 371字
- 2021-07-08 10:43:02
Why machine learning?
The recent explosion in the number of digital devices has generated an ever-increasing amount of data. The best analogy I can find to describe the need, desire, and urgency for extracting knowledge from large datasets is the process of extracting a precious metal from a mine, and in some cases, extracting blood from a stone.
Knowledge is quite often defined as a model that can be constantly updated or tweaked as new data comes into play. Models are obviously domain-specific, ranging from credit risk assessment, face recognition, maximization of quality of service, classification of pathological symptoms of disease, optimization of computer networks, and security intrusion detection, to customers' online behavior and purchase history.
Machine learning problems are categorized as classification, prediction, optimization, and regression.
Classification
The purpose of classification is to extract knowledge from historical data. For instance, a classifier can be built to identify a disease from a set of symptoms. The scientist collects information regarding body temperature (continuous variable), congestion (discrete variables of HIGH, MEDIUM, and LOW), and the actual diagnosis (flu). This dataset is used to create a model such as IF temperature > 102 AND congestion = HIGH THEN patient has the flu (probability 0.72), which doctors can use in their diagnosis.
Prediction
Once the model is trained using historical observations and validated against historical observations, it can be used to predict some outcome. A doctor collects symptoms from a patient, such as body temperature and nasal congestion, and anticipates the state of his/her health.
Optimization
Some global optimization problems are intractable using traditional linear and non-linear optimization methods. Machine learning techniques improve the chances that the optimization method converges toward a solution (intelligent search). You can imagine that fighting the spread of a new virus requires optimizing a process that may evolve over time as more symptoms and cases are uncovered.
Regression
Regression is a classification technique that is particularly suitable for a continuous model. Linear (least squares), polynomial, and logistic regressions are among the most commonly used techniques to fit a parametric model or function, y= f (x), x={xi} to a dataset. Regression is sometimes regarded as a specialized case of classification for which the output variables are continuous instead of categorical.
- Spring技術內幕:深入解析Spring架構與設計
- iOS 9 Game Development Essentials
- Julia機器學習核心編程:人人可用的高性能科學計算
- Java程序員面試算法寶典
- Building Mobile Applications Using Kendo UI Mobile and ASP.NET Web API
- Java程序設計與實踐教程(第2版)
- 手把手教你學C語言
- Python漫游數學王國:高等數學、線性代數、數理統計及運籌學
- Yocto for Raspberry Pi
- Python算法指南:程序員經典算法分析與實現
- Windows Phone 7.5:Building Location-aware Applications
- ServiceNow:Building Powerful Workflows
- QPanda量子計算編程
- Flask Web開發:基于Python的Web應用開發實戰(第2版)
- 算法精解:C語言描述