×
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: TensorFlow

Does using TensorFlow Privacy take more time to train a model than TensorFlow without privacy?

Tuesday, 11 November 2025 by MIRNA HANŽEK

The use of TensorFlow Privacy, which provides differential privacy mechanisms for machine learning models, introduces additional computational overhead compared to standard TensorFlow model training. This increase in computational time is a direct result of the extra mathematical operations required to achieve differential privacy guarantees during the training process. Differential Privacy (DP) is a rigorous mathematical

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Expertise in Machine Learning, TensorFlow privacy
Tagged under: Artificial Intelligence, Differential Privacy, DP-SGD, Machine Learning, Privacy-Preserving ML, TensorFlow

What is the difference between using CREATE MODEL with LINEAR_REG in BigQuery ML versus training a custom model with TensorFlow in Vertex AI for time series prediction?

Monday, 10 November 2025 by JOSE ALFONSIN PENA

The distinction between using the `CREATE MODEL` statement with `LINEAR_REG` in BigQuery ML and training a custom model with TensorFlow in Vertex AI for time series prediction lies in multiple dimensions, including model complexity, configurability, scalability, operational workflow, integration into data pipelines, and typical use cases. Both approaches offer unique advantages and trade-offs, and the

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, GCP BigQuery and open datasets
Tagged under: Artificial Intelligence, BigQuery ML, Google Cloud Platform, TensorFlow, Time Series Forecasting, Vertex AI

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

If you are preparing a machine learning pipeline in Python, how would you integrate Facets Overview and Facets Deep Dive into your workflow to detect class imbalances and outliers before training a model with TensorFlow?

Thursday, 30 October 2025 by JOSE ALFONSIN PENA

Integrating Facets Overview and Facets Deep Dive within a Python-based machine learning pipeline provides significant benefits for exploratory data analysis, specifically in identifying class imbalances and outliers prior to model development with TensorFlow. Both tools, developed by Google, are designed to facilitate a thorough and interactive understanding of datasets, which is vital for constructing reliable

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Google tools for Machine Learning, Visualizing data with Facets
Tagged under: Artificial Intelligence, Class Imbalance, Data Visualization, EDA, Jupyter, Outlier Detection, TensorFlow

What impact does post-training quantization have when converting a TensorFlow object detection model to TensorFlow Lite in terms of accuracy and performance on iOS devices?

Thursday, 30 October 2025 by JOSE ALFONSIN PENA

Post-training quantization is a widely adopted technique used to optimize deep learning models—such as those built with TensorFlow—for deployment on edge devices, including iOS smartphones and tablets. When converting a TensorFlow object detection model to TensorFlow Lite, quantization offers significant benefits in terms of both model size and inference speed, but it also introduces certain

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Google tools for Machine Learning, TensorFlow object detection on iOS
Tagged under: Artificial Intelligence, IOS, Object Detection, Quantization, TensorFlow, TensorFlow Lite

What is the difference between tf.Print (capitalized) and tf.print and which function should be currently used for printing in TensorFlow?

Tuesday, 07 October 2025 by EITCA Academy

The distinction between `tf.Print` and `tf.print` in TensorFlow is a common source of confusion, particularly for individuals transitioning from TensorFlow 1.x to TensorFlow 2.x, or those referencing legacy code and documentation. Each function serves the purpose of printing information during TensorFlow program execution, but they differ significantly in their implementation, usage context, capabilities, and recommended

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Google tools for Machine Learning, Printing statements in TensorFlow
Tagged under: Artificial Intelligence, Debugging, Eager Execution, Migration, TensorFlow, Tf.function

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)?

Tuesday, 07 October 2025 by ASAD BAIG

The question concerns the use of the `Dense` layer in a neural network model built using Keras and TensorFlow, specifically relating to the number of units chosen for the layer and its implications on model overfitting, with reference to the input dimensionality of 28×28, which totals 784 features (commonly representing flattened grayscale images from datasets

  • Published in Artificial Intelligence, EITC/AI/TFF TensorFlow Fundamentals, Introduction to TensorFlow, Basic computer vision with ML
Tagged under: Artificial Intelligence, Computer Vision, Keras, MNIST, Model Capacity, Neural Networks, Overfitting, TensorFlow

How to install JAX on Hailo 8?

Saturday, 20 September 2025 by Michał Otoka

Installing JAX on the Hailo-8 platform requires a comprehensive understanding of both the JAX framework and the Hailo-8 hardware/software stack. The Hailo-8 is a specialized AI accelerator designed for edge devices, optimized for running deep learning inference tasks with high efficiency and low power consumption. JAX, developed by Google, is a Python library for high-performance

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Google Cloud AI Platform, Introduction to JAX
Tagged under: Artificial Intelligence, Edge AI, Hailo-8, JAX, Model Deployment, ONNX, Quantization, TensorFlow

Does the use of the bfloat16 data format require special programming techniques (Python) for TPU?

Tuesday, 16 September 2025 by Michał Otoka

The use of the bfloat16 (brain floating point 16) data format is a key consideration for maximizing performance and efficiency on Google Cloud TPUs, specifically with the TPU v2 and v3 architectures. Understanding whether its use requires special programming techniques in Python, especially when utilizing popular machine learning frameworks such as TensorFlow, is important for

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Expertise in Machine Learning, Diving into the TPU v2 and v3
Tagged under: Artificial Intelligence, Bfloat16, Cloud Computing, Mixed Precision, TensorFlow, TPU

Does the command render.render_vis(model, obj) come from the Lucid library?

Tuesday, 16 September 2025 by Michał Otoka

The command `render.render_vis(model, obj)` is indeed associated with the Lucid library, which is an open-source library developed primarily by researchers at Google. Lucid is specifically designed for neural network interpretability, especially in the context of visualizing and understanding the inner workings of convolutional neural networks (CNNs). The library provides a high-level interface for generating visualizations

  • Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Expertise in Machine Learning, Visualizing convolutional neural networks with Lucid
Tagged under: Artificial Intelligence, Convolutional Neural Networks, Feature Visualization, Lucid, Neural Network Interpretability, TensorFlow
  • 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.