AI Dictionary of Terms

Edge Computing

A deployment paradigm where AI inference occurs on local devices (phones, IoT devices, browsers, edge servers) rather than centralized cloud infrastructure, enabling low-latency, privacy-preserving, and offline-capable AI applications.

The Simple Version

Cloud AI is like calling a expert consultant in another city every time you have a question — powerful but slow and requires internet.

Edge AI is like having a knowledgeable assistant right next to you — instant answers, works offline, and your data never leaves the room.

Edge computing brings AI to the device itself, enabling real-time processing without cloud dependency.

Detailed Explanation

Edge computing for AI involves running models on devices at the “edge” of the network — phones, laptops, IoT devices, cars, browsers — rather than sending data to remote cloud servers.

Key Enablers:

Deployment Options:

Trade-offs:

Key Characteristics

Business Context

Edge AI enables new categories of applications and addresses key enterprise concerns:

Use Cases:

Strategic Benefits:

Challenges:

Real-World Analogy

A pocket calculator vs. a mainframe computer. The mainframe (cloud) is incredibly powerful but requires you to walk to the computer room, submit your calculation, and wait for results. The pocket calculator (edge) is less powerful but gives you instant answers right in your hand, anywhere, anytime.

Code Example

# Running a quantized model on-device using ONNX Runtime
import onnxruntime as ort
import numpy as np

# Load a quantized ONNX model (optimized for edge devices)
session = ort.InferenceSession("model_quantized.onnx")

# Prepare input
input_data = np.random.randn(1, 3, 224, 224).astype(np.float32)
input_name = session.get_inputs()[0].name

# Run inference on device (CPU, NPU, or GPU)
outputs = session.run(None, {input_name: input_data})

print("Inference completed on device")
print("Output shape:", outputs[0].shape)

# This runs entirely on the device - no cloud, no internet required

Common Misconceptions

Sources & Further Reading