×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

Explain the concept of underfitting and why it occurs in machine learning models.

by EITCA Academy / Saturday, 05 August 2023 / Published in Artificial Intelligence, EITC/AI/TFF TensorFlow Fundamentals, Overfitting and underfitting problems, Solving model’s overfitting and underfitting problems - part 1, Examination review

Underfitting is a phenomenon that occurs in machine learning models when the model fails to capture the underlying patterns and relationships present in the data. It is characterized by high bias and low variance, resulting in a model that is too simple to accurately represent the complexity of the data. In this explanation, we will consider the concept of underfitting, its causes, and its implications in machine learning.

Underfitting occurs when a model is unable to learn the underlying patterns in the data due to its simplicity or lack of complexity. This can happen for various reasons, including the use of a model with too few parameters or features, inadequate training, or the presence of noise or outliers in the data.

One common cause of underfitting is the use of a linear model to fit a non-linear relationship between the input features and the target variable. Linear models, such as linear regression, assume a linear relationship between the features and the target variable. If the true relationship is non-linear, the model will fail to capture the complexity of the data, resulting in underfitting.

Another cause of underfitting is the use of a model with too few parameters or features. If the model is too simple, it may not have enough capacity to learn the underlying patterns in the data. For example, if a linear regression model is used to predict a target variable based on a single input feature, it may not be able to capture the non-linear relationship between the feature and the target variable.

Inadequate training can also lead to underfitting. If the model is not trained for a sufficient number of iterations or epochs, it may not converge to the optimal solution. This can result in a model that fails to capture the underlying patterns in the data.

The presence of noise or outliers in the data can also contribute to underfitting. Noise refers to random variations or errors in the data, while outliers are data points that deviate significantly from the rest of the data. If the model is sensitive to noise or outliers, it may fail to generalize well to unseen data, resulting in underfitting.

Underfitting has several implications in machine learning. Firstly, an underfit model will have poor predictive performance on both the training and test data. It will exhibit high bias, meaning that it consistently makes systematic errors in its predictions. This can be observed by a high training error and a similar test error, indicating that the model is unable to learn the underlying patterns in the data.

Secondly, an underfit model may fail to capture the complexity of the data, resulting in a loss of valuable information. This can limit the model's ability to make accurate predictions or uncover meaningful insights from the data.

To address underfitting, several strategies can be employed. One approach is to increase the complexity of the model by adding more parameters or features. This can be done by using a more flexible model architecture, such as a deep neural network, or by including higher-order terms or interaction terms in the feature representation.

Another strategy is to increase the amount of training data. More data can help the model better capture the underlying patterns in the data and reduce the impact of noise or outliers.

Regularization techniques, such as L1 or L2 regularization, can also be used to prevent underfitting. Regularization adds a penalty term to the loss function, which encourages the model to learn simpler representations and reduces the risk of overfitting. By finding the right balance between bias and variance, regularization can help mitigate underfitting.

Underfitting occurs when a machine learning model fails to capture the underlying patterns in the data due to its simplicity or lack of complexity. It can be caused by the use of a linear model for non-linear relationships, inadequate training, or the presence of noise or outliers. Underfitting leads to poor predictive performance and a loss of valuable information. Strategies to address underfitting include increasing the complexity of the model, increasing the amount of training data, and applying regularization techniques.

Other recent questions and answers regarding EITC/AI/TFF TensorFlow Fundamentals:

  • In the example keras.layer.Dense(128, activation=tf.nn.relu) is it possible that we overfit the model if we use the number 784 (28*28)?
  • How important is TensorFlow for machine learning and AI and what are other major frameworks?
  • What is underfitting?
  • How to determine the number of images used for training an AI vision model?
  • When training an AI vision model is it necessary to use a different set of images for each training epoch?
  • What is the maximum number of steps that a RNN can memorize avoiding the vanishing gradient problem and the maximum steps that LSTM can memorize?
  • Is a backpropagation neural network similar to a recurrent neural network?
  • How can one use an embedding layer to automatically assign proper axes for a plot of representation of words as vectors?
  • What is the purpose of max pooling in a CNN?
  • How is the feature extraction process in a convolutional neural network (CNN) applied to image recognition?

View more questions and answers in EITC/AI/TFF TensorFlow Fundamentals

More questions and answers:

  • Field: Artificial Intelligence
  • Programme: EITC/AI/TFF TensorFlow Fundamentals (go to the certification programme)
  • Lesson: Overfitting and underfitting problems (go to related lesson)
  • Topic: Solving model’s overfitting and underfitting problems - part 1 (go to related topic)
  • Examination review
Tagged under: Artificial Intelligence, Bias, Complexity, Linear Models, Machine Learning, Regularization, Underfitting, Variance
Home » Artificial Intelligence » EITC/AI/TFF TensorFlow Fundamentals » Overfitting and underfitting problems » Solving model’s overfitting and underfitting problems - part 1 » Examination review » » Explain the concept of underfitting and why it occurs in machine learning models.

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.

Eligibility for EITCA Academy 80% EITCI DSJC Subsidy support

80% of EITCA Academy fees subsidized in enrolment by

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2025  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?