machine learning technique for building predictive models from known input and response data
supervised learning is the most common type of machine learning algorithms. it uses a known dataset (called the training dataset) to train an algorithm with a known set of input data (called features) and known responses to make predictions. the training dataset includes labeled input data that pair with desired outputs or response values. from it, the supervised learning algorithm seeks to create a model by discovering relationships between the features and output data and then makes predictions of the response values for a new dataset.
prior to applying supervised learning, unsupervised learning is frequently used to discover patterns in the input data that suggest candidate features, and feature engineering transforms them to be more suitable for supervised learning. in addition to identifying features, the correct category or response needs to be identified for all observations in the training set, which is a very labor-intensive step. semi-supervised learning lets you train models with very limited labeled data and thus reduce the labelling effort.
once the algorithm is trained, a test dataset, which hasn’t been used for training, is typically used to predict the performance of the algorithm and validate it. to obtain accurate performance results, it is critical that both the training and test set are a good representation of “reality”( i.e., data from the production environment and the model were both validated correctly).
you can train, validate, and tune predictive supervised learning models in matlab® with deep learning toolbox™, and statistics and machine learning toolbox™.
supervised learning algorithms categories
classification: used for categorical response values, where the data can be separated into specific classes. a binary classification model has two classes and a multiclass classification model has more. you can train classification models with the classification learner app with matlab.
common classification algorithms for this category include:
regression: used for numerical continuous-response values. regression models can be easily trained with the regression learner app with matlab, learn how in and in this .
common regression algorithms include:
supervised learning applications
supervised learning is used in financial applications for credit scoring, algorithmic trading, and bond classification; in biological applications for tumor detection and drug discovery; in energy applications for price and ; in pattern recognition applications for speech and images; and in predictive maintenance for .
examples and how to
videos
examples
articles and tutorials
software reference
see also: statistics and machine learning toolbox, deep learning toolbox, machine learning, unsupervised learning, adaboost, linear regression, nonlinear regression, data fitting, data analysis, mathematical modeling, predictive modeling, artificial intelligence, automl, regularization, biomedical signal processing