Electron microscopy
 
Training Exmaple (x, 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, 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.

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

         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         
         

 

 

 

 

 



















































 

 

 

 

 

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