Electron microscopy
 
Output (Target Variable, y, Y)
- Python for Integrated Circuits -
- An Online Book -
Python for Integrated Circuits                                                                                   http://www.globalsino.com/ICs/        


Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix

=================================================================================

In machine learning and statistics, the convention is to represent the target variable or output using a lowercase letter "y." The lowercase "y" is used to denote individual instances or observations of the target variable in a dataset. It is common to see it written as when referring to a single data point.

For example, in a linear regression problem, if you have a dataset with input features and target values , you might see the relationship described as:

          --------------------------------------------------------------------- [3905]

Here:

  • represents an individual target value.
  • represents the input features.
  • represents the relationship (hypothesis) between the features and the target variable.
  • represents the error term.

When discussing the target variable as a whole or referring to it in a more general sense, you can use "Y" (capital letter) to represent the set of all target values. However, in equations and notations, individual instances of the target variable are typically denoted as (lowercase).

In machine learning, a training example is typically represented as a pair of input features () and their corresponding target variable (). This pair, denoted as , is called a training example because it is used during the training phase of a machine learning algorithm to teach the model how to make predictions or learn patterns from data.

Here's why is called a training example:

  1. Input Features (): The part of the training example represents the input features or attributes of the data. These features are what the machine learning model uses to make predictions or decisions. For example, in a machine learning model for predicting house prices, the input features () might include the number of bedrooms, square footage, neighborhood, etc.

  2. Target Variable (): The part of the training example represents the target variable or the output that the model is trying to predict. In supervised learning, the goal is to learn a mapping from input features () to the target variable (). Continuing with the house price prediction example, would represent the actual sale price of a house.

  3. Training Phase: During the training phase of a machine learning algorithm, the model is exposed to a dataset containing multiple such training examples ( pairs). The model learns from these examples by adjusting its parameters to minimize the difference between its predictions and the actual target values.

  4. Generalization: The ultimate objective of training a machine learning model is to make accurate predictions on new, unseen data. By learning patterns and relationships from the training examples, the model aims to generalize its knowledge to make predictions for similar examples it has not encountered before.

For cases with multiple examples , pair is the ith training example.

============================================

         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         

 

 

 

 

 



















































 

 

 

 

 

=================================================================================