Table of Contents
Reasons to deploy AI at the edge
Challenges of AI at the edge and how to solve them
Balancing the Benefits and Challenges of Edge AI
Home Technology peripherals AI AI at the edge: Three tips to consider before deploying

AI at the edge: Three tips to consider before deploying

Apr 12, 2023 am 09:22 AM
AI ai edge computing

As artificial intelligence (AI) matures, adoption continues to increase. According to recent research, 35% of organizations are using artificial intelligence and 42% are exploring its potential. While AI is well understood and deployed in large numbers in the cloud, it is still nascent at the edge and faces some unique challenges.

Many people use artificial intelligence throughout the day, from navigating their cars to tracking their steps to talking to digital assistants. Even though users frequently access these services on mobile devices, the results of the calculations still exist in the cloud usage of AI. More specifically, a person requests information, the request is processed by a central learning model in the cloud, and the results are sent back to the person's local device.

Edge AI is understood and deployed less frequently than cloud AI. From the beginning, AI algorithms and innovations have relied on a fundamental assumption—that all data can be sent to a central location. In this central location, algorithms have full access to the data. This allows the algorithm to build its intelligence like a brain or central nervous system, with full access to computation and data.

But AI at the edge is different. It distributes intelligence across all cells and nerves. By pushing intelligence to the edge, we empower these edge devices with agency. This is critical in many applications and fields such as healthcare and industrial manufacturing.

AI at the edge: Three tips to consider before deploying

Reasons to deploy AI at the edge

There are three main reasons for deploying AI at the edge.

Protecting Personally Identifiable Information (PII)

First, some organizations that handle PII or sensitive IP (intellectual property) prefer to keep the data at its source - In imaging machines in hospitals or manufacturing machines on factory floors. This reduces the risk of "drift" or "leakage" that may occur when data is transmitted over the network.

Minimize bandwidth usage

The second is the bandwidth issue. Sending large amounts of data from the edge to the cloud would clog the network and be impractical in some cases. It is not uncommon for imaging machines in health environments to generate files so large that transferring them to the cloud is impossible or takes days to complete.

Simply processing data at the edge is more effective, especially when the insights are aimed at improving proprietary machines. In the past, computing was much more difficult to move and maintain, so this data needed to be moved to the computing location. This paradigm is being challenged now that data is often more important and harder to manage, leading to use cases that warrant moving computation to the location of the data.

Avoid Latency

The third reason for deploying AI at the edge is latency. The internet is fast, but not real time. If there are situations where milliseconds matter, such as robotic arms assisting surgeries or time-sensitive production lines, organizations may decide to run AI at the edge.


Challenges of AI at the edge and how to solve them

Despite these benefits, there are still some unique challenges associated with deploying AI at the edge. Here are some tips you should consider to help manage these challenges.

Good and bad results of model training

Most AI technologies use large amounts of data to train models. However, in edge industrial use cases this often becomes more difficult, as most manufactured products are defect-free and therefore labeled or annotated as good. The resulting imbalance between "good results" and "bad results" makes it more difficult for the model to learn to identify problems.

Pure AI solutions that rely on data classification without contextual information are often not easy to create and deploy due to the lack of labeled data and even the occurrence of rare events. Adding context to AI, otherwise known as a data-centric approach, often brings benefits in terms of accuracy and scale of the final solution. The truth is that while AI can often replace mundane tasks performed manually by humans, it greatly benefits from human insight when building models, especially when there isn’t a lot of data to work with.

Get a commitment from experienced subject matter experts, working closely with the data scientists who build the algorithms, to get a jumpstart on AI learning.

AI cannot magically solve or provide an answer to every problem

There are usually many steps that go into the output. For example, a factory floor may have many workstations, and they may be dependent on each other. Humidity in one area of ​​the factory during one process may affect the results of another process later in a different area of ​​the production line.

People often think that artificial intelligence can magically piece together all these relationships. While this is possible in many cases, it can also require large amounts of data and a long time to collect, resulting in very complex algorithms that do not support interpretability and updating.

Artificial intelligence cannot live in a vacuum. Capturing these interdependencies will push the envelope from a simple solution to one that can scale over time and across different deployments.

Lack of stakeholder support limits the scale of AI

It’s difficult to scale AI throughout an organization if a group of people in the organization are skeptical of its benefits. The best (perhaps only) way to gain widespread support is to start with a high-value, difficult problem and then use AI to solve it.

At Audi, we consider solving the problem of frequency of replacement of welding gun electrodes. But the low cost of electrodes doesn't eliminate any mundane tasks humans are doing. Instead, they chose a welding process that is universally recognized as a difficult problem across the industry and significantly improved the quality of the process through artificial intelligence. This sparked the imagination of engineers across the company, who looked at how AI could be used in other processes to improve efficiency and quality.

Balancing the Benefits and Challenges of Edge AI

Deploying AI at the edge can help organizations and their teams. It has the potential to transform facilities into intelligent edges, improve quality, optimize manufacturing processes, and inspire developers and engineers across the organization to explore how they can integrate AI or advance AI use cases, including predictive analytics, recommendations to improve efficiency, or anomaly detection. But it also brings new challenges. As an industry, we must be able to deploy it while reducing latency, increasing privacy, protecting IP and keeping the network running smoothly.

The above is the detailed content of AI at the edge: Three tips to consider before deploying. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve SQL parsing problem? Use greenlion/php-sql-parser! How to solve SQL parsing problem? Use greenlion/php-sql-parser! Apr 17, 2025 pm 09:15 PM

When developing a project that requires parsing SQL statements, I encountered a tricky problem: how to efficiently parse MySQL's SQL statements and extract the key information. After trying many methods, I found that the greenlion/php-sql-parser library can perfectly solve my needs.

How to solve the complexity of WordPress installation and update using Composer How to solve the complexity of WordPress installation and update using Composer Apr 17, 2025 pm 10:54 PM

When managing WordPress websites, you often encounter complex operations such as installation, update, and multi-site conversion. These operations are not only time-consuming, but also prone to errors, causing the website to be paralyzed. Combining the WP-CLI core command with Composer can greatly simplify these tasks, improve efficiency and reliability. This article will introduce how to use Composer to solve these problems and improve the convenience of WordPress management.

How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! Apr 17, 2025 pm 09:54 PM

In Laravel development, dealing with complex model relationships has always been a challenge, especially when it comes to multi-level BelongsToThrough relationships. Recently, I encountered this problem in a project dealing with a multi-level model relationship, where traditional HasManyThrough relationships fail to meet the needs, resulting in data queries becoming complex and inefficient. After some exploration, I found the library staudenmeir/belongs-to-through, which easily installed and solved my troubles through Composer.

How to solve the complex problem of PHP geodata processing? Use Composer and GeoPHP! How to solve the complex problem of PHP geodata processing? Use Composer and GeoPHP! Apr 17, 2025 pm 08:30 PM

When developing a Geographic Information System (GIS), I encountered a difficult problem: how to efficiently handle various geographic data formats such as WKT, WKB, GeoJSON, etc. in PHP. I've tried multiple methods, but none of them can effectively solve the conversion and operational issues between these formats. Finally, I found the GeoPHP library, which easily integrates through Composer, and it completely solved my troubles.

How to solve the problem of PHP project code coverage reporting? Using php-coveralls is OK! How to solve the problem of PHP project code coverage reporting? Using php-coveralls is OK! Apr 17, 2025 pm 08:03 PM

When developing PHP projects, ensuring code coverage is an important part of ensuring code quality. However, when I was using TravisCI for continuous integration, I encountered a problem: the test coverage report was not uploaded to the Coveralls platform, resulting in the inability to monitor and improve code coverage. After some exploration, I found the tool php-coveralls, which not only solved my problem, but also greatly simplified the configuration process.

git software installation tutorial git software installation tutorial Apr 17, 2025 pm 12:06 PM

Git Software Installation Guide: Visit the official Git website to download the installer for Windows, MacOS, or Linux. Run the installer and follow the prompts. Configure Git: Set username, email, and select a text editor. For Windows users, configure the Git Bash environment.

How to solve the problem of virtual columns in Laravel model? Use stancl/virtualcolumn! How to solve the problem of virtual columns in Laravel model? Use stancl/virtualcolumn! Apr 17, 2025 pm 09:48 PM

During Laravel development, it is often necessary to add virtual columns to the model to handle complex data logic. However, adding virtual columns directly into the model can lead to complexity of database migration and maintenance. After I encountered this problem in my project, I successfully solved this problem by using the stancl/virtualcolumn library. This library not only simplifies the management of virtual columns, but also improves the maintainability and efficiency of the code.

Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Apr 17, 2025 pm 11:27 PM

I'm having a tricky problem when developing a front-end project: I need to manually add a browser prefix to the CSS properties to ensure compatibility. This is not only time consuming, but also error-prone. After some exploration, I discovered the padaliyajay/php-autoprefixer library, which easily solved my troubles with Composer.

See all articles