×
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

Can AutoML Vision be custom-used for analyzing data other than images?

by Michał Otoka / Sunday, 07 September 2025 / Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, Advancing in Machine Learning, AutoML Vision - part 1

AutoML Vision is a machine learning product developed by Google Cloud, designed specifically for building custom models to classify, detect, and interpret image data. Its core functionality is centered on automating the process of training, evaluating, and deploying deep learning models for image-based tasks, such as image classification, object detection, and image segmentation. To address whether AutoML Vision can be custom-used for analyzing data types other than images, it is necessary to examine its architecture, input modalities, and the broader context of Google Cloud’s AutoML offerings.

AutoML Vision: Scope and Design

AutoML Vision operates on the premise of automated image analysis. Its user interface, data ingestion mechanisms, pre-processing steps, model architectures, and evaluation metrics are all tailored for visual data. The service expects input data in the form of image files (e.g., JPEG, PNG) and corresponding labels for supervised learning tasks. The user uploads image datasets via the Google Cloud Console or API, specifies the desired task (classification or object detection), and the system manages the data splitting, feature extraction, model selection, hyperparameter tuning, and training pipeline without requiring in-depth machine learning expertise from the user.

The underlying technology stack utilizes convolutional neural networks (CNNs) and related architectures, which are particularly adept at extracting features from spatially correlated data, such as pixel arrays in images. The output from AutoML Vision is typically a trained model that can be used to predict image classes or bounding box coordinates for unseen images.

Analysis of Data Types

Given the design specificity of AutoML Vision, its utility is limited to image-type data. Attempting to input non-image data (such as tabular data, time-series data, audio files, or text documents) would result in incompatibility at multiple layers, starting from data ingestion to model processing. The system does not provide mechanisms for parsing, feature engineering, or modeling on non-image data.

For example, suppose a user attempts to upload a CSV file representing tabular data (such as customer transactions or sensor readings) into AutoML Vision. The service would not accept this format, as it does not recognize it as a valid image input. Even if the tabular data were somehow converted into an image format (e.g., by rendering a heatmap or chart and saving it as a PNG), the semantic meaning of the data would not be preserved, and the models trained would not be suitable for the original analytical objectives associated with tabular data.

Similarly, audio data (such as speech or environmental sounds) or text data (documents, emails, social media posts) require specialized preprocessing and model architectures. While there are research techniques that convert audio signals into spectrogram images for CNN-based analysis or encode text data as image-like matrices, these approaches are not natively supported by AutoML Vision, and their implementation would require a custom preprocessing pipeline outside the scope of the product’s intended usage.

AutoML Family: Modalities Beyond Images

Although AutoML Vision is limited to image data, Google Cloud AutoML encompasses a suite of products, each tailored for different data types:

1. AutoML Tables: Designed for structured, tabular data such as spreadsheets, databases, and CSV files. AutoML Tables provides automated feature engineering, model selection (including gradient boosting, random forests, and neural networks), and evaluation metrics suited for regression and classification tasks on tabular data.

2. AutoML Natural Language: Purpose-built for text data, supporting tasks such as sentiment analysis, entity extraction, and text classification. It utilizes natural language processing (NLP) models optimized for document and sentence-level interpretation.

3. AutoML Video Intelligence: Intended for video data, enabling tasks such as video classification, object tracking, and action recognition. It leverages temporal as well as spatial modeling techniques.

4. AutoML Translation: Facilitates automated training of custom translation models for text data in different languages.

Each of these AutoML products shares the overarching goal of democratizing machine learning by automating the complex steps involved in model development. However, each is architected for the unique requirements and challenges posed by its respective data modality.

Didactic Example: Use Cases and Product Selection

Consider a business seeking to automate quality control in a manufacturing process by inspecting images of products for defects. AutoML Vision is ideal for this use case, as it can be trained to recognize subtle differences in product appearance and classify or locate defects. The user uploads a labeled dataset of product images, and AutoML Vision handles the training of a defect detection model.

Contrast this with a scenario where a business wants to predict customer churn based on structured data such as demographics, purchase history, and engagement metrics. In this case, the data is entirely non-visual and best represented in tables. AutoML Tables is the appropriate tool, as it can process tabular data, perform automatic feature engineering (e.g., handling missing values, encoding categorical variables), and select optimal models for classification.

For audio analysis, such as classifying environmental sounds or transcribing speech, Google Cloud provides services such as Speech-to-Text and AutoML Natural Language (for the downstream text analysis), but AutoML Vision would not be suitable unless the audio data is first transformed into an image format (such as a spectrogram), and even then, the results would depend heavily on the appropriateness of such feature engineering for the analytical goal.

Technical Perspective: Why AutoML Vision Cannot Be Extended to Non-Image Data

The architectural specialization of AutoML Vision is rooted in several technical aspects:

– Data Input Layer: AutoML Vision’s APIs and user interfaces are designed to ingest image files in specific formats. There is no provision for parsing non-image data formats.

– Preprocessing Pipeline: The preprocessing steps are tailored for images, including resizing, normalization of pixel values, and data augmentation techniques like rotation, flipping, and cropping. Non-image data do not benefit from such transformations.

– Model Architecture: The model architectures (CNNs, possibly with custom layers for detection or segmentation) are designed to exploit spatial locality and invariance in image data. Non-image data, such as a table of sales records, do not possess these properties and thus would be ill-suited to such models.

– Labeling and Evaluation: The labeling tools and evaluation metrics (accuracy, precision, recall for image classes; mean average precision for object detection) are defined around image-based tasks.

– Export and Deployment: Models trained in AutoML Vision are exported in formats suitable for image inference (e.g., TensorFlow SavedModel, Edge TPU). The input signatures expect images as input.

For these reasons, AutoML Vision cannot be customized to analyze non-image data without fundamentally altering its preprocessing, modeling, and deployment infrastructure, in which case it would cease to be AutoML Vision in its current form.

Best Practices: Selecting the Correct AutoML Product

When approaching a machine learning problem, the data type should guide the selection of the appropriate AutoML product:

– For image data (e.g., photographs, medical scans, satellite images): Use AutoML Vision.
– For structured tabular data (e.g., spreadsheets, database tables): Use AutoML Tables.
– For free-form or structured text (e.g., documents, reviews, emails): Use AutoML Natural Language.
– For videos (e.g., surveillance footage, sports recordings): Use AutoML Video Intelligence.
– For translation tasks: Use AutoML Translation.

Attempting to use a product outside its intended data modality leads to suboptimal results, incompatibility issues, or outright failure to process the data.

Examples of Model Customization within AutoML Vision

While custom usage within AutoML Vision is possible in the sense of defining custom labels, specifying custom image splits, and adjusting evaluation criteria, these customizations are confined to image data. For instance, a researcher studying plant disease could upload leaf images categorized by disease type, and adjust the training-validation split or augment images with domain-specific transformations (e.g., adjusting color channels to simulate different lighting conditions). These customizations enhance model performance within the image analysis domain but do not extend the product’s utility to non-image data.

Alternative Strategies for Non-Image Data

Organizations seeking automated machine learning for non-image data should leverage the appropriate AutoML product or consider the following alternatives:

– Custom Model Development: If the data type or task is not covered by existing AutoML products, organizations may need to develop custom pipelines using open-source libraries (e.g., scikit-learn, TensorFlow, PyTorch), or other managed services that support broader customization.

– Data Transformation: In rare cases, data can be transformed into an image-like representation (e.g., time-series data converted to recurrence plots or Gramian angular fields), and then processed with image-based models. However, this requires significant domain expertise and careful validation to ensure meaningful results.

– Third-party Solutions: There are third-party AutoML solutions (e.g., H2O.ai, DataRobot) that offer support for a wider range of data modalities within a unified interface.

AutoML Vision is engineered for automated machine learning on image data only, and cannot be custom-used for analyzing data types outside the visual domain. For non-image data such as tabular, text, audio, or video, Google Cloud provides dedicated AutoML products with tailored pipelines, interfaces, and model architectures. Selecting the correct AutoML product according to the data type is critical for successful machine learning outcomes.

Other recent questions and answers regarding AutoML Vision - part 1:

  • What is the complete workflow for preparing and training a custom image classification model with AutoML Vision, from data collection to model deployment?
  • What are the steps involved in preparing our data for training a machine learning model using Pandas library?
  • What is the process of creating a CSV file that lists the path and label for each image in our dataset?
  • What is the recommended method for organizing and managing our labeled images and data in Google Cloud Storage?
  • How can we collect a large amount of labeled photos for training our model using AutoML Vision?
  • What is AutoML Vision and how does it help in building and deploying custom machine learning models?

More questions and answers:

  • Field: Artificial Intelligence
  • Programme: EITC/AI/GCML Google Cloud Machine Learning (go to the certification programme)
  • Lesson: Advancing in Machine Learning (go to related lesson)
  • Topic: AutoML Vision - part 1 (go to related topic)
Tagged under: Artificial Intelligence, AutoML, Data Types, Google Cloud, Image Analysis, Vision
Home » Artificial Intelligence » EITC/AI/GCML Google Cloud Machine Learning » Advancing in Machine Learning » AutoML Vision - part 1 » » Can AutoML Vision be custom-used for analyzing data other than images?

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.