-1

Analogous to the question: What is "feature space"?

What is the mathematical definition used in the field of machine learning for sample space?

For example, correlations can exist in feature space between features and in sample space between samples.

baf84b4c
  • 123
  • 8
  • 1
    As far as I'm aware (and if someone knows better, please do correct me), the definition of sample space for machine learning is not in any way different than that from Probability Theory, that is to say, the sample space of a random variable is the *set of all possible outcomes* for that variable. Is there some reason why this definition is not sufficient for you? – Emil May 02 '18 at 21:58

1 Answers1

2

In machine learning a feature vector is an n-dimensional vector of numerical features that represent some object. Many algorithms in machine learning require a numerical representation of objects, because such representations are better for numerical processing (dimensionality reduction, find correlations, outliers, similarities etc..) and statistical analysis. In the literature often this vector space that includes all the possible feature vectors from a population of a specific domain, is called feature space.

In machine learning sample space is more or less the same as feature space, but it does not include the interpretation of the vector space. Particularly, a sample space is the space that includes all the possible outcomes in a statistical experiment or another definition could be that is the space of all possible samples that belong to a specific population.