×
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
Questions and answers designated by tag: Deep Learning

How do the similarity between the source and target datasets, along with regularization techniques and the choice of learning rate, influence the effectiveness of transfer learning applied via TensorFlow Hub?

Sunday, 30 November 2025 by JOSE ALFONSIN PENA

Transfer learning, especially as enabled via platforms such as TensorFlow Hub, has become a core technique for leveraging pre-trained neural network models to improve the efficiency and performance of machine learning tasks. The effectiveness of transfer learning in this context is heavily influenced by several factors, including the similarity between the source and target datasets,

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, TensorFlow Eager Mode
Tagged under: Artificial Intelligence, Dataset Similarity, Deep Learning, Eager Execution, Learning Rate, Regularization, TensorFlow Hub, Transfer Learning

What do you understand by transfer learning and how do you think it relates to the pre-trained models offered by TensorFlow Hub?

Sunday, 30 November 2025 by JOSE ALFONSIN PENA

Transfer learning is a methodology within machine learning and artificial intelligence where knowledge gained while solving one problem is leveraged to address a different, but related, problem. The underlying principle is that neural networks trained on large, generic datasets are able to extract and encode feature representations that are broadly useful across a variety of

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, TensorFlow Hub for more productive machine learning
Tagged under: Artificial Intelligence, Deep Learning, Machine Learning Applications, Pre-trained Models, TensorFlow Hub, Transfer Learning

What are the differences between a linear model and a deep learning model?

Sunday, 30 November 2025 by RAFAEL MARTINEZ

A linear model and a deep learning model represent two distinct paradigms within machine learning, each characterized by their structural complexity, representational capacity, learning mechanisms, and typical use cases. Understanding the differences between these two approaches is foundational for practitioners and researchers who seek to apply machine learning techniques effectively to real-world problems. Linear Model:

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, First steps in Machine Learning, Deep neural networks and estimators
Tagged under: Artificial Intelligence, Deep Learning, Estimator API, Feature Engineering, Google Cloud, Linear Models, Machine Learning, Model Interpretability, Neural Networks, TensorFlow

If your laptop takes hours to train a model, how would you use a VM with GPU and JupyterLab to speed up the process and organize dependencies without breaking your environment?

Tuesday, 25 November 2025 by JOSE ALFONSIN PENA

When training deep learning models, computational resources play a significant role in determining the feasibility and speed of experimentation. Most consumer laptops are not equipped with powerful GPUs or sufficient memory to handle large datasets or complex neural network architectures efficiently; consequently, training times can extend to several hours or days. Utilizing cloud-based virtual machines

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, Deep learning VM Images
Tagged under: Artificial Intelligence, Cloud Storage, Deep Learning, Google Cloud, GPU, JupyterLab, PyTorch, TensorFlow, Virtual Environments

Is eager mode automatically turned on in newer versions of TensorFlow?

Tuesday, 04 November 2025 by MIRNA HANŽEK

Eager execution represents a significant shift in the programming model of TensorFlow, particularly when contrasted with the original graph-based execution paradigm that characterized TensorFlow 1.x. Eager mode enables operations to execute immediately as they are called from Python. This imperative approach simplifies debugging, development, and prototyping workflows by providing an intuitive interface similar to those

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, TensorFlow Eager Mode
Tagged under: Artificial Intelligence, Deep Learning, Eager Execution, Machine Learning, Python, TensorFlow

What are the types of ML?

Monday, 03 November 2025 by Sebastian Macovei

Machine learning (ML) is a branch of artificial intelligence that focuses on the development of algorithms and statistical models which enable computer systems to perform specific tasks without explicit instructions, relying instead on patterns and inference derived from data. Machine learning has become a foundational technology in a wide array of modern applications ranging from

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Introduction, What is machine learning
Tagged under: Artificial Intelligence, Cloud Computing, Data Science, Deep Learning, Google Cloud, Machine Learning, Reinforcement Learning, Semi-supervised Learning, Supervised Learning, Transfer Learning, Unsupervised Learning

Is it possible to convert a model from json format back to h5?

Thursday, 11 September 2025 by Michał Otoka

The process of converting models between different serialization formats is a common requirement in the field of deep learning, particularly when moving between environments or frameworks, such as from Keras (using HDF5 files, `.h5`) to TensorFlow.js (using JSON), and vice versa. The specific question of whether it is possible to convert a model from the

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, Importing Keras model into TensorFlow.js
Tagged under: Artificial Intelligence, Deep Learning, HDF5, Keras, Model Conversion, TensorFlow.js

Does the Keras library allow the application of the learning process while working on the model for continuous optimization of its performance?

Wednesday, 10 September 2025 by Michał Otoka

The Keras library, which serves as a high-level neural networks API, is widely utilized in the field of machine learning for its user-friendly interface and powerful features. It is fully compatible with backends such as TensorFlow, Theano, and Microsoft Cognitive Toolkit (CNTK). One of the fundamental aspects of machine learning is the iterative process of

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, Introduction to Keras
Tagged under: Artificial Intelligence, Deep Learning, Incremental Learning, Keras, Model Optimization, Neural Networks

Is in-sample accuracy compared to out-of-sample accuracy one of the most important features of model performance?

Monday, 08 September 2025 by Martyna Helman

In-sample accuracy compared to out-of-sample accuracy is a fundamental concept in deep learning, and understanding the distinction between these two metrics is of central importance for building, evaluating, and deploying neural network models using Python and PyTorch. This topic directly relates to the core objective of machine learning and deep learning: to develop models that

  • Published in Artificial Intelligence, EITC/AI/DLPP Deep Learning with Python and PyTorch, Introduction, Introduction to deep learning with Python and Pytorch
Tagged under: Artificial Intelligence, Deep Learning, Generalization, Model Evaluation, Overfitting, PyTorch

How easy is working with TensorBoard for model visualization

Saturday, 16 August 2025 by Cleopas2025

TensorBoard is a powerful visualization toolkit designed to facilitate the inspection, understanding, and debugging of machine learning models, particularly those developed using TensorFlow. Its utility stretches across the entire model development lifecycle, from the initial stages of experimentation to the ongoing monitoring of training and evaluation metrics. The platform provides a rich suite of features

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, First steps in Machine Learning, TensorBoard for model visualization
Tagged under: Artificial Intelligence, Data Science, Deep Learning, Google Cloud, Keras, Machine Learning Tools, Model Debugging, Model Training, TensorBoard, TensorFlow, Visualization
  • 1
  • 2
  • 3
  • 4
Home

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 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
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.