Items tagged “machine learning”
26 results found

Article
Convolutional neural network
A convolutional neural network (CNN) is a particular implementation of a neural network used in deep learning that exclusively processes array data such as images, and is thus frequently used in machine learning applications targeted at medical images 1.
Architecture
A convolutional neural net...
Article
Batch size (machine learning)
Batch size is a term used in machine learning and refers to the number of training examples utilized in one iteration. The batch size can be one of three options:
batch mode: where the batch size is equal to the total dataset thus making the iteration and epoch values equivalent
mini-batch mod...
Article
Epoch (machine learning)
An epoch is a term used in machine learning and indicates the number of passes of the entire training dataset the machine learning algorithm has completed. Datasets are usually grouped into batches (especially when the amount of data is very large). Some people use the term iteration loosely and...
Article
Iteration (machine learning)
An iteration is a term used in machine learning and indicates the number of times the algorithm's parameters are updated. Exactly what this means will be context dependent. A typical example of a single iteration of training of a neural network would include the following steps:
processing the ...
Article
Cost function (machine learning)
A cost function is a mechanism utilized in supervised machine learning, the cost function returns the error between predicted outcomes compared with the actual outcomes. The aim of supervised machine learning is to minimize the overall cost, thus optimizing the correlation of the model to the sy...
Article
Backpropagation (machine learning)
Backpropagation in supervised machine learning is the process used to calculate the gradient of the error function associated with each parameter weighting within a convoluted neural network (CNN). Essentially, the gradient estimates how the system parameters should change in order to optimize t...
Article
Ensembling
Ensembling (sometimes ensemble learning) is a class of meta-algorithmic techniques where multiple models are trained and their results are aggregated to improve classification performance. It is effective in a wide variety of problems.
Two commonly used methods are:
boosting: a method of wei...
Article
Neural network (overview)
Artificial neural networks are a powerful type of model capable of processing many types of data. Initially inspired by the connections between biological neural networks, modern artificial neural networks only bear slight resemblances at a high level to their biological counterparts. Nonetheles...
Article
Radiomics
Radiomics (as applied to radiology) is a field of medical study that aims to extract a large number of quantitative features from medical images using data characterization algorithms. The data is assessed for improved decision support. It has the potential to uncover disease characteristics tha...
Article
Logistic regression (machine learning)
Logistic regression in machine learning is a classification model which predicts the probabilities of binary outcomes, as opposed to linear regression which predicts actual values.
Logistic regression outputs are constrained between 0 and 1, and hence is a popular simple classification method ...
Article
Principal component analysis
Principal component analysis is a mathematical transformation that can be understood in two parts:
the transformation maps multivariable data (Nold dimensions) into a new coordinate system (Nnew dimensions) with minimal loss of information.
data projected on the first dimension of the new coor...
Article
Data augmentation
Data augmentation is a technique that increases the amount of data by adding slightly modified copies of already existing data. This increases the diversity of the training set, which helps to reduce overfitting when training a machine learning model and can have a positive effect on the model's...
Article
Overfitting
Overfitting is a problem in machine learning that introduces errors based on noise and meaningless data into prediction or classification. Overfitting tends to happen in cases where training data sets are either of insufficient size or training data sets include parameters and/or unrelated featu...
Case
Overfitting (diagram)

Diagnosis not applicable
Published 19 Apr 2019
32% complete
Diagram
Article
Bagging
Bagging is a term often used in the fields of machine learning, data science and computational statistics that refers to bootstrap aggregation. Bootstrapped aggregation of data can be employed in many different AI (artificial intelligence) algorithms, and is often a necessary step to making rand...
Article
Random forest (machine learning)
Random Forest also known as random decision forests are a specific type of ensembling algorithm that utilizes a combination of decision trees based on subsets of a dataset. A random forest algorithm does not make a decision tree of smaller decision trees, but rather utilizes decision trees in pa...
Article
Loss function
A loss function is a mathematical function commonly used in statistics. Loss functions are frequently used to create machine learning algorithms.
The loss function computes the error for a single training example in contrast to a Cost function, which is the average of the loss functions from ea...
Article
Mean squared error
Mean squared error is a specific type of loss function. Mean square error is calculated by the average, specifically the mean, of errors that have been squared from data as it relates to a function ( often a regression line).
The utility of mean square error comes from the fact that squared nu...
Article
Optimization algorithms
Optimization algorithms are widely utilized mathematical functions that solve problems via the maximization or minimization of a function. These algorithms are used for a variety of purposes from patient scheduling to radiology.
Machine learning
Optimization algorithms are used in machine lea...
Article
Clustering
Clustering, also known as cluster analysis, is a machine learning technique designed to group similar data points together. Since the data points do not necessarily have to be labeled, clustering is an example of unsupervised learning. Clustering in machine learning should not be confused with d...