User Tools

Site Tools


glossary

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
glossary [2022/09/12 12:27] adminglossary [2022/09/12 16:51] (current) admin
Line 26: Line 26:
  
 ===== C ===== ===== C =====
 +
 +==== class ====
 +
 +One of a set of target values for a [[:glossary#label|label]].
  
 ==== classification ==== ==== classification ====
  
-The [[:glossary#prediction|prediction]] of a model is a category.+The [[:glossary#prediction|prediction]] of a model is a category, i.e. a discrete [[:glossary#class|class]].
  
 ==== clustering ==== ==== clustering ====
  
 Grouping of data, particulary during [[:glossary#unsupervised_learning|unsupervised learning]]. There exist many clustering algorithms. Grouping of data, particulary during [[:glossary#unsupervised_learning|unsupervised learning]]. There exist many clustering algorithms.
 +
 +==== convolutional layer ====
 +
 +A layer in a [[:glossary#deep_neural_network|deep neural network]] in which a convolutional filter passes over the input matrix.
  
 ==== convolutional neural network (CNN) ==== ==== convolutional neural network (CNN) ====
 +
 +A neural network in which at least one layer is a [[:glossary#convolutional_layer|convolutional layer]].
  
 ==== cross-validation ==== ==== cross-validation ====
 +
 +A method to estimate how well a model will generalise to new data. In cross-validation, the model is trained on a subset of the data and then validated on the remaining non-overlapping subsets, e.g. [[:glossary#k-fold_cross-validation|k-fold cross-validation]].
  
 ===== D ===== ===== D =====
 +
 +==== data imbalance ====
 +
 +When the [[:glossary#label|labels]] of the [[:glossary#class|classes]] have significantly different statistical distributions in the data set. It is also termed class-imbalanced data set.
  
 ==== deep learning ==== ==== deep learning ====
Line 71: Line 87:
 ==== feature engineering ==== ==== feature engineering ====
  
-The process of converting data into useful [[:glossary#feature|features]] for training a model. [[:glossary#feature_selection|Feature selection]] is a part of feature engineering.+The process of converting data into useful [[:glossary#feature|features]] for training a model.
  
 ==== feature selection ==== ==== feature selection ====
Line 86: Line 102:
  
 ==== hidden layer ==== ==== hidden layer ====
 +
 +Artificial layer in a [[:glossary#neural_network|neural network]] between input and output layer. Typically, hidden layers contain [[:glossary#activation_function|activation functions]].
  
 ==== hierarchical agglomerative clustering ==== ==== hierarchical agglomerative clustering ====
Line 92: Line 110:
  
 ==== hyperparameters ==== ==== hyperparameters ====
 +
 +Higher-level properties of a model, such as the learning rate (how fast it can learn) or the number of [[:glossary#hidden_layer|hidden layers]].
  
 ===== I ===== ===== I =====
Line 99: Line 119:
 ===== K ===== ===== K =====
  
-==== k-fold validation ====+==== k-fold cross-validation ==== 
 + 
 +The training set is split into k smaller subsets. The model is trained on one of the k folds as training set and validated on the remaining (k-1) folds. This is done for all k folds. The performance measure calculated by the k-fold cross-validation is the average of the results of all k folds.
  
 ===== L ===== ===== L =====
glossary.1662978455.txt.gz · Last modified: 2022/09/12 12:27 by admin