×
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

How does an already trained machine learning model take a new scope of data into account?

by fabien lambergeon / Tuesday, 06 May 2025 / Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Introduction, What is machine learning

When a machine learning model is already trained and encounters new data, the process of integrating this new scope of data can take several forms, depending on the specific requirements and context of the application. The primary methods to incorporate new data into a pre-trained model include retraining, fine-tuning, and incremental learning. Each of these approaches has its own set of advantages and considerations, and the choice of method depends on factors such as the nature of the new data, computational resources, and the desired outcome.

1. Retraining the Model:

Retraining involves using the entire dataset, including both the original and new data, to train the model from scratch. This approach ensures that the model can learn from the combined dataset, potentially improving its performance by leveraging the full breadth of available information. Retraining is particularly beneficial when the new data significantly alters the underlying distribution or introduces new features that were not previously considered.

However, retraining can be computationally expensive and time-consuming, especially for large datasets or complex models. It requires access to the original data, which may not always be feasible due to storage limitations or privacy concerns. Additionally, retraining might lead to overfitting if the model becomes too tailored to the specific characteristics of the new data, thereby reducing its generalization capability.

Example: Consider a spam detection model that was initially trained on a dataset of email messages. If new types of spam emails emerge, retraining the model with both the old and new emails can help it adapt to the evolving patterns of spam.

2. Fine-Tuning the Model:

Fine-tuning is a more targeted approach that involves making small adjustments to the model's parameters using the new data. This method is particularly useful when the new data is similar to the original dataset but contains subtle differences or additional information that the model needs to account for. Fine-tuning can be seen as a form of transfer learning, where a pre-trained model is adapted to a new, but related task.

Fine-tuning typically requires less computational power than retraining, as it involves updating only a subset of the model's parameters. It is especially effective when the new data is limited in size, allowing the model to incorporate new information without the risk of overfitting. However, fine-tuning assumes that the original model is already well-optimized for the task at hand, and the new data does not drastically alter the problem space.

Example: A convolutional neural network (CNN) trained on a large dataset of animal images can be fine-tuned with a smaller dataset of cat images to improve its accuracy in distinguishing different breeds of cats.

3. Incremental Learning:

Incremental learning, also known as online learning or continual learning, involves updating the model continuously as new data becomes available. This approach is well-suited for scenarios where data arrives in streams or batches over time, and the model needs to adapt dynamically without being retrained from scratch.

Incremental learning algorithms are designed to update the model's parameters incrementally, allowing it to learn from new data while retaining knowledge from previous experiences. This method is particularly advantageous in environments where data is constantly evolving, such as stock market prediction or recommendation systems.

One challenge of incremental learning is the risk of catastrophic forgetting, where the model loses knowledge of previously learned information as it focuses on new data. To mitigate this, techniques such as rehearsal (retraining on a subset of old data) and regularization (penalizing changes to important parameters) can be employed.

Example: In a recommendation system for an e-commerce platform, incremental learning allows the model to adjust its recommendations based on the latest user interactions and purchase history without requiring a complete retraining.

4. Hybrid Approaches:

In practice, a combination of these methods may be employed to effectively integrate new data into a pre-trained model. Hybrid approaches can leverage the strengths of each method while addressing their limitations. For instance, a model might undergo periodic retraining to incorporate substantial changes in data distribution, while fine-tuning and incremental learning are used for more frequent, smaller updates.

5. Considerations for Incorporating New Data:

When deciding how to incorporate new data into a machine learning model, several considerations should be taken into account:

– Data Quality and Relevance: The quality and relevance of the new data are important factors that influence the choice of method. High-quality data that is representative of the problem space can significantly enhance model performance.

– Computational Resources: The availability of computational resources, such as processing power and memory, can impact the feasibility of retraining or fine-tuning. Incremental learning may be preferred in resource-constrained environments.

– Model Complexity: The complexity of the model and the nature of the task can dictate the most appropriate approach. Complex models with many parameters may benefit from fine-tuning, while simpler models might be retrained more easily.

– Time Constraints: The time available for updating the model is an important consideration. Incremental learning offers the advantage of real-time updates, while retraining and fine-tuning may require more time.

– Risk of Overfitting: The risk of overfitting should be carefully managed, particularly when working with limited new data. Techniques such as cross-validation and regularization can help mitigate this risk.

Integrating new data into an already trained machine learning model is a multifaceted process that requires careful consideration of various factors. By selecting the appropriate method—whether it be retraining, fine-tuning, incremental learning, or a hybrid approach—practitioners can ensure that their models remain accurate and relevant in the face of evolving data landscapes.

Other recent questions and answers regarding What is machine learning:

  • What is the difference between machine learning and artificial intelligence?
  • Is AI a subset of machine learning and not vice versa?
  • What are accuracy, precision, recall, and F1 scores?
  • How to create a program to predict possible failures in a car? What programming language and libraries to use? And what algorithm to use?
  • How can machine learning help in supply chain prediction and risk management?
  • What are prominent and prospective specializations in AI?
  • How can machine learning help me as an experienced translator and conference interpreter?
  • How can I use machine learning in manufacturing?
  • Finance or, better, trading (stocks, crypto, ETFs,…) requires a lot of data to be analyzed. How can I create a ML model to take into consideration all those factors—financial and non-financial, like human psychology, political events, weather?
  • Would it be possible to use data with multiple language datasets included, where the algorithm has to use data from sources that are in different languages?

View more questions and answers in What is machine learning

More questions and answers:

  • Field: Artificial Intelligence
  • Programme: EITC/AI/GCML Google Cloud Machine Learning (go to the certification programme)
  • Lesson: Introduction (go to related lesson)
  • Topic: What is machine learning (go to related topic)
Tagged under: Artificial Intelligence, Data Integration, Fine-tuning, Incremental Learning, Machine Learning, Model Training
Home » Artificial Intelligence » EITC/AI/GCML Google Cloud Machine Learning » Introduction » What is machine learning » » How does an already trained machine learning model take a new scope of data into account?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (117)
  • 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 90% EITCI DSJC Subsidy support
90% of EITCA Academy fees subsidized in enrolment

    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-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP

    We care about your privacy

    EITCI uses cookies and similar technologies to keep this site secure, remember your choices, provide personalized experience, measure the traffic, serve more relevant content and certification programmes. You can accept all cookies or customize your preferences. Cookies are variables used to store website specific information on your device to facilitate processing of data for personalized website visit, such as login to your account, accessing the programmes, placing enrolment orders in chosen programmes and improving your EITC certification journey. You can change or withdraw your consent at any time by clicking the Consent Preferences button at the left-bottom of your screen. We respect your choices and are committed to providing you with a transparent and secure browsing experience, which may be limited when cookies aren't accepted. For more details refer to the Privacy Policy
    Customize Consent Preferences
    We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.
    The cookies categorized as Necessary are stored on your browser as they are essential for enabling the basic functionalities of the site.
    To learn more about how Google processes personal information, visit: Google privacy policy

    Necessary

    Always Active

    Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

    Functional

    Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

    Preferences

    Stores personalization choices such as interface preferences.

    External media and social features

    Allows embedded video, social, chat, and external interactive services that may set their own cookies. Keep off until the user chooses these features.

    Analytics

    Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

    Marketing and conversions

    Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

    CHAT WITH SUPPORT
    Do you have any questions?
    Attach files with the paperclip or paste screenshots into the message box (Ctrl+V). Max 5 file(s), 10 MB each.
    We will reply here and by email. Your conversation is tracked with a support token.