AI Dictionary of Terms

Neural Network

A computational model inspired by the human brain, consisting of interconnected layers of nodes (neurons) that process input data, learn patterns, and make predictions or decisions.

The Simple Version

Imagine a large team of specialists working together on an assembly line to identify a fruit. The first person looks at the color and passes it to the next person. The second person looks at the shape and passes it along. The third person checks the texture. By the time the fruit reaches the end of the line, the team has combined all these small clues to confidently say, “This is an apple.”

A neural network works the same way. It is made of layers of artificial “neurons.” The first layer notices simple things (like edges or colors). The next layer combines those into shapes. The final layer makes a decision based on all the combined information. As it makes mistakes, it adjusts how much weight it gives to each clue until it gets it right.

Detailed Explanation

A Neural Network (NN) is the foundational architecture of modern machine learning. It consists of three main types of layers:

  1. Input Layer: Receives the raw data (e.g., pixel values, text tokens). an Hidden Layers: One or more layers that perform mathematical transformations on the data. Each neuron applies a weight to its input, adds a bias, and passes the result through an activation function (like ReLU) to introduce non-linearity.
  2. Output Layer: Produces the final prediction or classification.

How it learns (Backpropagation): The network makes a guess, compares it to the correct answer using a “loss function,” and then calculates the error. It then works backward through the layers, adjusting the weights and biases slightly to reduce the error next time. This process is repeated thousands or millions of times.

Key Characteristics

Business Context

Neural networks are the engine behind almost all modern enterprise AI applications. Understanding them helps leaders evaluate AI vendor claims and infrastructure needs:

Real-World Analogy

A panel of judges at a talent show. Each judge (neuron) scores a different aspect of the performance (pitch, stage presence, originality). Their scores are weighted based on their expertise, combined, and passed to the head judge (output layer) who makes the final decision.

Code Example

# Simple Feedforward Neural Network using PyTorch
import torch
import torch.nn as nn

class SimpleNeuralNetwork(nn.Module):
    def __init__(self, input_size, hidden_size, output_size):
        super(SimpleNeuralNetwork, self).__init__()
        
        # Define the layers
        self.layer1 = nn.Linear(input_size, hidden_size)
        self.relu = nn.ReLU() # Activation function
        self.layer2 = nn.Linear(hidden_size, output_size)
        
    def forward(self, x):
        # Pass data through layer 1, apply activation, then layer 2
        out = self.layer1(x)
        out = self.relu(out)
        out = self.layer2(out)
        return out

# Initialize the network
# Example: 10 input features, 32 hidden neurons, 2 output classes
model = SimpleNeuralNetwork(input_size=10, hidden_size=32, output_size=2)

# Test with dummy data (batch of 5 samples)
dummy_input = torch.randn(5, 10)
predictions = model(dummy_input)

print("Predictions shape:", predictions.shape)

Common Misconceptions

Sources & Further Reading