×
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

Please elaborate on the concepts of label and hard negative, and how to test without a program like Teachable Machine?

by Sarita Sewsaran / Wednesday, 12 August 2026 / Published in Artificial Intelligence, EITC/AI/AIF Artificial Intelligence Fundamentals, AI in plain language: what it is and how projects work, Your first model (no code): train, test, and discover failure modes

The concepts of “label” and “hard negative” are central to understanding how artificial intelligence (AI) models, specifically those in the domain of supervised learning, are developed and evaluated. These concepts are fundamentally intertwined with how data is prepared, how models learn from data, and how their strengths and weaknesses are subsequently assessed.

1. The Concept of a Label in AI

A label in the context of AI, particularly in supervised learning, refers to the annotation or ground truth category assigned to a data point. This annotation serves as the target output that the model is expected to predict. Labels are supplied by humans or by automated processes that are assumed to be accurate, and they are used during the training phase to guide the model in learning the mapping from input data (such as images, sounds, or texts) to the correct output.

a. Purpose of Labels

– Guiding Model Learning: During training, the model receives both the input (such as an image) and the corresponding label (such as “cat” or “dog”). The model’s predictions are compared with these labels, and the differences (errors) are used to adjust the model’s parameters to improve future predictions.
– Enabling Evaluation: Labels are indispensable for evaluating the model’s performance. By comparing the model’s predictions on previously unseen (test) data with their true labels, one can calculate metrics such as accuracy, precision, and recall.

b. Types of Labels

– Binary Labels: Indicate one of two possible classes (e.g., “spam” or “not spam” in email filtering).
– Multiclass Labels: Indicate one of multiple possible classes (e.g., “cat”, “dog”, “bird” in animal image classification).
– Multilabel: Each data point can have more than one label (e.g., an image containing both a tree and a car).

c. Example

Consider an image classification task where the goal is to recognize handwritten digits in images. Each image is labeled with a number from 0 to 9. The label is the correct digit that the image represents.

2. The Concept of Hard Negatives

A hard negative refers to a data example that is particularly challenging for the model to classify correctly, usually because it closely resembles an example from the target class but actually belongs to a different class. Hard negatives are often used in the context of tasks where distinguishing between similar classes is difficult. Incorporating hard negatives during training and testing can significantly improve a model’s robustness and real-world performance.

a. Role of Hard Negatives

– Improving Model Generalization: By exposing the model to difficult examples during training, it learns to be more discriminative, reducing the likelihood of making errors when faced with confusing or ambiguous data.
– Identifying Model Weaknesses: Hard negatives are important for stress-testing a model and finding failure modes—scenarios where the model is likely to make mistakes.

b. Example

In a facial recognition system, the goal might be to recognize whether two images are of the same person. A hard negative in this context would be a pair of images of two different people who look very similar (e.g., identical twins or people with similar features). These examples are challenging and, if not handled properly, can lead to false positives.

3. Testing Without Automated Tools (e.g., Teachable Machine)

While interactive tools like Teachable Machine provide a user-friendly interface to train, test, and explore AI models without coding, it is entirely possible to conduct meaningful testing of AI concepts without such tools. This process can be manual and involves critical thinking about data, predictions, and error analysis.

a. Manual Testing Process

1. Data Collection and Labeling
– Gather a small dataset relevant to the task (e.g., printed photographs, audio recordings, or text samples).
– Assign labels to each data point. For example, label images as “cat” or “dog,” or label emails as “spam” or “not spam.”

2. Establishing Simple Rules or Models
– Without coding, one could use a set of decision rules based on observable features. For instance, in image classification, one might use color or shape to distinguish between classes.

3. Prediction
– Apply the rules to each data point to generate a prediction.
– Record both the prediction and the true label.

4. Evaluation
– Compare predictions to true labels.
– Count the number of correct and incorrect predictions.
– Categorize errors into types (e.g., false positives, false negatives).

5. Identifying Failure Modes
– Look for patterns in the errors.
– Particularly, identify which examples were consistently misclassified—these may be hard negatives.
– Analyze why these examples caused errors: Was it due to similarity between classes, poor rule design, or noisy data?

b. Example: Manual Image Classification

Suppose the task is to distinguish between apples and tomatoes using printed photographs. The dataset consists of 20 images, labeled by hand.

– Create Rules: Decide that if the object is green, it is an apple; if red and round, it is a tomato.
– Test the Rules: Go through each image, apply the rule, and write down the predicted label.
– Compare to True Labels: For each image, check if the prediction matches the actual label.
– Analyze Errors: If green tomatoes or red apples are present, these might be classified incorrectly. Such examples are hard negatives because they challenge the rule based on color alone.
– Refine Rules: Consider adding more features, such as size or stem shape, to better differentiate.

c. Using Paper and Pen

Even without images, one can simulate the process using descriptions. For instance, write down attributes of objects, assign labels, and use these for manual testing. This process builds intuition about the importance of good labels, the challenges posed by hard negatives, and the need for robust decision criteria.

4. Didactic Value of Understanding These Concepts

Grasping the roles of labels and hard negatives enriches the foundational understanding required for developing, evaluating, and refining AI models.

a. Importance of Label Quality

The accuracy and consistency of labels directly influence the model’s ability to learn correct associations. Poor-quality labels, such as incorrect or inconsistent annotations, lead to suboptimal models and unreliable predictions. This brings attention to the human element in AI—the necessity for careful data curation, clear labeling guidelines, and regular quality checks.

b. Impact of Hard Negatives on Learning

By introducing hard negatives into training and testing, educators and practitioners encourage models to learn more nuanced and subtle distinctions between classes. This prepares the model for real-world data, which is often messy, ambiguous, and full of edge cases.

c. Discovery of Failure Modes

Testing with challenging examples (including hard negatives) reveals systematic weaknesses in the model or decision rules. This process is critical for model improvement, as it highlights scenarios where the model’s assumptions break down or where data is insufficiently representative.

d. Encouragement of Analytical Thinking

Manually performing the steps of labeling, prediction, and error analysis fosters a deeper appreciation for the complexities of AI and machine learning. It demystifies the process and provides a concrete framework for thinking about how models learn and fail.

e. Laying the Groundwork for Advanced Topics

A clear understanding of these fundamental concepts paves the way for more advanced topics, such as:

– Data augmentation (expanding the dataset with variations to improve model robustness)
– Active learning (selecting the most informative examples for labeling)
– Hard negative mining (systematically seeking out and using hard negatives in training)
– Model interpretability and explainability

5. Examples to Illustrate Concepts

a. Labels in Text Classification

Imagine a spam filter for emails. Each email is assigned a label: "spam" or "not spam." The model learns from the labeled examples to identify which features (such as certain words, sender addresses, or patterns) are indicative of spam. If some emails are incorrectly labeled (e.g., a legitimate email marked as spam), the model learns the wrong associations, leading to poor performance.

b. Hard Negatives in Object Detection

Suppose an AI model is trained to detect cars in street images. Most negative examples during training are images of trees, buildings, or clouds—objects very different from cars. The model quickly learns to distinguish cars from these easy negatives. However, it may struggle to differentiate cars from similar-looking objects like buses or vans. These similar objects, when incorrectly labeled as negatives (i.e., not cars), are hard negatives. If the model is not exposed to enough hard negatives, it may misclassify vans as cars or vice versa.

c. Manual Testing in Classroom Settings

A teacher can illustrate these concepts by having students sort pictures of animals into categories. Some animals, such as wolves and huskies, may look very similar. If students consistently misclassify huskies as wolves, these are hard negatives for the classification task. The exercise highlights the importance of subtle distinguishing features and the role of accurate labeling in effective classification.

6. Testing Without Automated Programs: Educational Approaches

Manual testing, as described, provides valuable educational benefits:

– Developing Critical Assessment Skills: Students learn to evaluate the reliability of their own classification rules.
– Understanding Data Biases: By inspecting hard negatives and misclassifications, one can uncover biases in the data or in the decision rules.
– Experiencing Model Limitations: Hands-on activities reveal that no simple rule or model is perfect, especially in the presence of ambiguous or challenging examples.

Techniques include:

– Confusion Matrices on Paper: Manually create a confusion matrix to visualize where most errors occur, and identify which classes are most often confused.
– Error Analysis Sessions: Set aside time to review and discuss misclassified examples, hypothesize reasons for misclassification, and brainstorm improvements.
– Role Reversal Activities: Have students create their own hard negatives for classmates, challenging them to classify or label difficult examples.

7. Conclusion

A thorough understanding of labels and hard negatives, as well as practical strategies for testing models without automated tools, forms the backbone of foundational AI education. These concepts not only inform better practices in data preparation and model evaluation but also cultivate the analytical skills needed to navigate increasingly complex AI systems. By engaging directly with data, labels, and challenging examples, learners and practitioners gain lasting insights into the nature and limitations of machine learning models.

Other recent questions and answers regarding AI in plain language: what it is and how projects work:

  • Can you elaborate on the difference between deep learning and generative AI, please? More specifically, how can one be certain when something is categorized as deep learning AI but is not generative AI?
  • Does GenAI use DeepAI?

More questions and answers:

  • Field: Artificial Intelligence
  • Programme: EITC/AI/AIF Artificial Intelligence Fundamentals (go to the certification programme)
  • Lesson: AI in plain language: what it is and how projects work (go to related lesson)
  • Topic: Your first model (no code): train, test, and discover failure modes (go to related topic)
Tagged under: AI Education, Artificial Intelligence, Data Labeling, Error Analysis, Failure Modes, Hard Negative Mining, Model Evaluation, Supervised Learning
Home » Artificial Intelligence » EITC/AI/AIF Artificial Intelligence Fundamentals » AI in plain language: what it is and how projects work » Your first model (no code): train, test, and discover failure modes » » Please elaborate on the concepts of label and hard negative, and how to test without a program like Teachable Machine?

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.