×
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

What is the simplest route to most basic didactic AI model training and deployment on Google AI Platform using a free tier/trial using a GUI console in a step-by-step manner for an absolute begginer with no programming background?

by EITCA Academy / Sunday, 11 May 2025 / Published in Artificial Intelligence, EITC/AI/GCML Google Cloud Machine Learning, First steps in Machine Learning, Plain and simple estimators

To begin training and deploying a basic AI model using the Google AI Platform via the web-based GUI, especially as an absolute beginner with no programming background, it is advisable to use Google Cloud’s Vertex AI Workbench and AutoML (now part of Vertex AI) features. These tools are specifically designed for users without coding experience and offer step-by-step, graphical interfaces for building machine learning models. The following guide outlines each phase of this process, focusing on didactic clarity and practical utility.

Step 1: Setting up a Google Cloud Account and Project

1. Sign Up for Google Cloud
– Visit [https://cloud.google.com/](https://cloud.google.com/) and click on “Get started for free.” Google provides a free trial with credits for new users, typically $300 valid for 90 days.
– Follow the prompts to create a Google Cloud account using your Google credentials, entering billing information (you won’t be charged until you exceed the free credits).

2. Create a New Project
– After logging in, open the [Google Cloud Console](https://console.cloud.google.com/).
– Click the project dropdown (top navigation bar) and select “New Project.”
– Name your project (e.g., “ml-demo-project”) and select an organization if applicable. Click “Create.”

3. Enable Billing and APIs
– Ensure billing is enabled for your new project (follow prompts if necessary).
– Navigate to “APIs & Services” → “Library.” Search for “Vertex AI API” and click “Enable.”

Step 2: Preparing Data for Model Training

1. Understanding Dataset Requirements
– AutoML in Vertex AI supports structured data (tabular), image, text, and video.
– For demonstration, use a simple tabular dataset—such as the classic Iris flower dataset or your own CSV data.
– The file should be in CSV format, with columns representing features (inputs) and one column for the target label (what you want to predict).

2. Storing Data in Cloud Storage
– Navigate to “Storage” in the left sidebar of the Cloud Console.
– Click “Create bucket,” assign a unique name (e.g., “ml-demo-bucket”), select the region, and accept defaults for other settings.
– After the bucket is created, click on it, then “Upload files,” and upload your CSV dataset.

Step 3: Accessing Vertex AI and Launching AutoML

1. Open Vertex AI
– In the Cloud Console, navigate to “Vertex AI” in the left sidebar.

2. Creating a Dataset
– Click on “Datasets” under the Vertex AI menu.
– Select “Create” and choose the dataset type (e.g., “Tabular” for CSV data).
– Name your dataset, select the region, then click “Create.”
– After creation, click “Import data,” select “From Cloud Storage,” and specify the path to your CSV file in the format: `gs://[your-bucket-name]/[your-file].csv`.
– Let the platform analyze and import your data. You’ll see a preview where you can verify detected columns and types.

Step 4: Configuring and Training the Model

1. Initiating Model Training
– Once data import completes, click “Train new model.”
– Provide a name for your model (e.g., “iris-predictor”).
– Select the target column (the feature you intend to predict, e.g., “species”).
– Choose a model objective (e.g., “Classification” for predicting categories, “Regression” for predicting numbers).
– For absolute beginners, keep the default feature selection; Vertex AI can automatically select and preprocess features.

2. Advanced Options (Optional)
– You can leave advanced settings at their defaults to ensure simplicity.
– If interested, you may adjust the training budget (measured in node hours) to control how long training runs. The free trial covers modest experiments.

3. Start Training
– Click “Start training.”
– Vertex AI will automatically split your data into training, validation, and test sets, handle preprocessing, build several candidate models, and evaluate them.
– Training typically takes a few minutes to several hours depending on dataset size and complexity.

Step 5: Evaluating the Trained Model

1. Viewing Evaluation Metrics
– After training completes, Vertex AI presents evaluation results, including metrics such as accuracy, precision, recall, F1-score (for classification), or RMSE/MAE (for regression).
– The confusion matrix is shown for classification tasks, helping you understand prediction performance by class.

2. Understanding the Results
– For didactic purposes, review these metrics:
– Accuracy: Proportion of correct predictions out of all predictions.
– Precision: How often the model is correct when it predicts a certain class.
– Recall: Proportion of actual cases of a class that the model correctly identifies.
– Use these to assess if the model is performing adequately for your educational or demonstration needs.

Step 6: Deploying the Model for Prediction

1. Model Deployment
– In the model details screen, click “Deploy to endpoint.”
– Assign a name to the endpoint (e.g., “iris-predictor-endpoint”).
– Keep the default machine type, which is suitable for demo-level usage and is covered by the free trial.
– Click “Deploy.” This process will set up an online endpoint to receive prediction requests.

2. Making Predictions via GUI
– Once the model is deployed, click “Test & use.”
– Enter new data directly in the form (matching the model’s input features) to obtain predictions.
– Example: If using the Iris dataset, input sepal length, sepal width, petal length, and petal width to receive the predicted species.

Step 7: Exploring Model Explainability (Optional, but Didactic)

– Vertex AI offers explainability features that highlight which input features most influenced the model’s prediction.
– Access the “Explain” tab for your model and review which columns the model used most for making predictions.
– This provides valuable insight for learners about how machine learning models make decisions, reinforcing the relationship between input data and outputs.

Step 8: Cleaning Up Resources

– To avoid unnecessary charges, delete deployed endpoints and unused resources after experimentation:
– Go to Vertex AI → “Endpoints,” select your endpoint, and click “Delete.”
– Delete datasets, models, and Cloud Storage buckets as needed.
– Optionally, delete the entire project from the Cloud Console’s project settings.

—

Didactic Value and Explanation

This graphical, step-by-step approach to machine learning on Google Cloud’s Vertex AI platform is particularly effective for absolute beginners for several reasons:

1. Intuitive User Interface

The graphical console eliminates the need to write code, making machine learning approachable for users without a technical background. Each action (uploading data, training a model, deploying, and predicting) is performed through guided forms and buttons.

2. Immediate Feedback

Vertex AI provides instant feedback at each phase—whether it is uploading data, verifying columns, evaluating model performance, or making predictions. This allows learners to see the concrete results of their actions at every step.

3. End-to-End Lifecycle

By progressing from data upload to model deployment and prediction in a single interface, learners gain a full overview of the machine learning process, reinforcing a conceptual understanding of the stages involved in AI projects.

4. Didactic Use of Examples

Using well-known datasets, such as the Iris flower classification, enables clear, relatable demonstrations of machine learning principles—such as how input features determine model outputs and how evaluation metrics quantify performance.

5. Transparency and Explainability

Model explainability tools are integrated into the GUI, enabling users to visualize which features most influence predictions. This demystifies the “black box” nature of AI and supports comprehension of model behavior.

6. Safe Experimentation

The free trial and modest resource limits provide a risk-free environment for experimentation. Users can try different datasets, model objectives, or data splits without incurring costs or affecting production systems.

7. Minimal Technical Barriers

This approach does not require knowledge of programming, command-line tools, or complex environment setup. Users interact with menus, forms, and graphical outputs, lowering the barriers to entry for learning machine learning concepts.

—

Example Use Case

Consider a beginner interested in predicting whether an iris flower is one of three species based on four measurements (sepal length, sepal width, petal length, and petal width). The steps would be:

– Download the Iris dataset in CSV format from the UCI Machine Learning Repository or Kaggle.
– Upload the CSV to a Cloud Storage bucket.
– Create a Vertex AI tabular dataset and import the CSV.
– Train a classification model by specifying “species” as the target column.
– Review accuracy and confusion matrix after training.
– Deploy the model and enter new flower measurements in the GUI to receive a predicted species.
– Use the explainability tab to see which measurements most influenced the predictions.

This process provides a complete, hands-on introduction to machine learning on Google Cloud—covering data preparation, model building, deployment, and interpretation, all through a GUI suited for those with no programming experience.

—

Further Learning Steps

After mastering this workflow, learners can deepen their understanding by:

– Experimenting with different datasets (e.g., Titanic survival prediction).
– Exploring other Vertex AI model types, such as image or text classification.
– Reviewing the automatically generated model reports for deeper insight.
– Gradually introducing basic programming concepts by exploring the “Notebooks” section or exporting trained models for use in Google Colab.
– Watching the “Vertex AI” introductory videos available in the Google Cloud documentation.

When ready, transitioning from GUI-based tools to code-based workflows is facilitated by the familiarity gained with the overall process, terminology, and project structure.

—

Other recent questions and answers regarding EITC/AI/GCML Google Cloud Machine Learning:

  • How Keras models replace TensorFlow estimators?
  • How to configure specific Python environment with Jupyter notebook?
  • How to use TensorFlow Serving?
  • What is Classifier.export_saved_model and how to use it?
  • Why is regression frequently used as a predictor?
  • Are Lagrange multipliers and quadratic programming techniques relevant for machine learning?
  • Can more than one model be applied during the machine learning process?
  • Can Machine Learning adapt which algorithm to use depending on a scenario?
  • How to practically train and deploy simple AI model in Google Cloud AI Platform via the GUI interface of GCP console in a step-by-step tutorial?
  • What is the simplest, step-by-step procedure to practice distributed AI model training in Google Cloud?

View more questions and answers in EITC/AI/GCML Google Cloud Machine Learning

More questions and answers:

  • Field: Artificial Intelligence
  • Programme: EITC/AI/GCML Google Cloud Machine Learning (go to the certification programme)
  • Lesson: First steps in Machine Learning (go to related lesson)
  • Topic: Plain and simple estimators (go to related topic)
Tagged under: Artificial Intelligence, AutoML, Cloud Storage, Data Science, No-Code ML, Vertex AI
Home » Artificial Intelligence / EITC/AI/GCML Google Cloud Machine Learning / First steps in Machine Learning / Plain and simple estimators » What is the simplest route to most basic didactic AI model training and deployment on Google AI Platform using a free tier/trial using a GUI console in a step-by-step manner for an absolute begginer with no programming background?

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 80% EITCI DSJC Subsidy support

80% of EITCA Academy fees subsidized in enrolment by

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

    TOP
    Chat with Support
    Chat with Support
    Questions, doubts, issues? We are here to help you!
    End chat
    Connecting...
    Do you have any questions?
    Do you have any questions?
    :
    :
    :
    Send
    Do you have any questions?
    :
    :
    Start Chat
    The chat session has ended. Thank you!
    Please rate the support you've received.
    Good Bad