Tagged articles
13 articles
Page 1 of 1
Model Perspective
Model Perspective
Sep 14, 2025 · Artificial Intelligence

How Ant Colony Optimization Solves Complex Routing Problems

This article explains the natural inspiration behind Ant Colony Optimization, its core principles, mathematical modeling, pheromone update rules, convergence behavior, and step‑by‑step workflow, illustrating how simple local interactions enable efficient solutions to combinatorial optimization challenges like the traveling salesman problem.

Ant Colony Optimizationmetaheuristicoptimization
0 likes · 8 min read
How Ant Colony Optimization Solves Complex Routing Problems
Model Perspective
Model Perspective
Jul 25, 2024 · Artificial Intelligence

How Harris Hawks Optimization Mimics Eagle Hunting to Solve Complex Problems

The Harris Hawks Optimization (HHO) algorithm, inspired by the coordinated hunting tactics of Harris hawks, models exploration and exploitation phases to tackle complex optimization challenges, illustrated through a traffic signal timing case study that demonstrates its effectiveness and limitations.

AI AlgorithmsExploration-ExploitationHarris Hawks Optimization
0 likes · 6 min read
How Harris Hawks Optimization Mimics Eagle Hunting to Solve Complex Problems
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 1, 2023 · Artificial Intelligence

Particle Swarm Optimization (PSO): Principles, Mechanics, and Implementation Overview

This article provides a comprehensive overview of Particle Swarm Optimization, covering its biological inspiration, abstract modeling of bird foraging behavior, key concepts, algorithmic workflow, velocity update formulas, practical tips, and references for further study.

Evolutionary ComputationPSOParticle Swarm Optimization
0 likes · 12 min read
Particle Swarm Optimization (PSO): Principles, Mechanics, and Implementation Overview
Model Perspective
Model Perspective
Feb 28, 2023 · Artificial Intelligence

Master Simulated Annealing, Genetic Algorithm, and PSO with Python

Explore three powerful optimization techniques—Simulated Annealing, Genetic Algorithm, and Particle Swarm Optimization—through clear explanations, step-by-step procedures, and complete Python implementations that demonstrate how to find global minima of complex functions in practice and compare their performance.

Particle Swarm Optimizationgenetic algorithmmetaheuristic
0 likes · 14 min read
Master Simulated Annealing, Genetic Algorithm, and PSO with Python
Model Perspective
Model Perspective
Nov 7, 2022 · Artificial Intelligence

How Genetic Algorithms Mimic Evolution to Solve Complex Optimization Problems

This article introduces genetic algorithms, explains their biological inspiration, outlines key concepts and operators, details the step-by-step optimization process, and demonstrates their application to a traveling‑salesman case with Python code, highlighting encoding, selection, crossover, mutation, and fitness evaluation.

Evolutionary ComputationTraveling Salesmangenetic algorithm
0 likes · 14 min read
How Genetic Algorithms Mimic Evolution to Solve Complex Optimization Problems
Model Perspective
Model Perspective
Oct 23, 2022 · Artificial Intelligence

Understanding the Butterfly Optimization Algorithm: Theory and Python Code

This article explains the Butterfly Optimization Algorithm (BOA), covering its biological inspiration, core concepts such as scent-based global and local search, key parameters, iteration process, and provides a complete Python implementation with example usage and visualisation of convergence.

Butterfly Optimization AlgorithmPythonartificial intelligence
0 likes · 15 min read
Understanding the Butterfly Optimization Algorithm: Theory and Python Code
Model Perspective
Model Perspective
Oct 16, 2022 · Artificial Intelligence

Unlocking the Seagull Optimization Algorithm: Principles, Migration & Attack Mechanics

This article introduces the Seagull Optimization Algorithm (SOA), explains how it mimics seagull migration and attack behaviors to solve optimization problems, details its migration and prey‑attack phases, outlines the step‑by‑step workflow, and provides a full Python implementation with code examples.

PythonSeagull Optimization Algorithmmetaheuristic
0 likes · 10 min read
Unlocking the Seagull Optimization Algorithm: Principles, Migration & Attack Mechanics
Model Perspective
Model Perspective
Aug 25, 2022 · Artificial Intelligence

How Particle Swarm Optimization Mimics Nature to Find Global Optima

Particle Swarm Optimization (PSO), inspired by bird flocking behavior, is a simple yet powerful population‑based metaheuristic that updates particle velocities and positions using individual and global bests, offering fast convergence, robustness, and wide applications across function optimization, neural networks, classification, and robotics.

Evolutionary Algorithmsglobal optimizationinertia weight
0 likes · 9 min read
How Particle Swarm Optimization Mimics Nature to Find Global Optima
Model Perspective
Model Perspective
May 31, 2022 · Fundamentals

How Simulated Annealing Finds Global Optima: From Physics to Optimization

Simulated Annealing, inspired by the physical annealing process and formalized by Metropolis and later Kirkpatrick, is a Monte‑Carlo based stochastic optimization method that probabilistically accepts worse solutions to escape local minima, with applications ranging from TSP and knapsack problems to graph coloring and scheduling.

boltzmann distributionmetaheuristicoptimization
0 likes · 5 min read
How Simulated Annealing Finds Global Optima: From Physics to Optimization
Model Perspective
Model Perspective
May 31, 2022 · Fundamentals

How Simulated Annealing Finds High‑Quality Solutions: A Step‑by‑Step Guide

This article outlines the step‑by‑step procedure of the Simulated Annealing algorithm, covering initialization, new‑solution generation, incremental objective‑difference calculation, Metropolis acceptance, solution replacement, temperature updating, and includes a concise pseudocode illustration to help practitioners implement the method effectively.

metaheuristicobjective functionoptimization algorithm
0 likes · 4 min read
How Simulated Annealing Finds High‑Quality Solutions: A Step‑by‑Step Guide
ITPUB
ITPUB
Apr 24, 2017 · Artificial Intelligence

How Simulated Annealing Beats Hill Climbing for Solving the Traveling Salesman Problem

This article explains the hill‑climbing greedy search, introduces the simulated annealing meta‑heuristic with its probabilistic acceptance rule and temperature schedule, provides full pseudocode, and demonstrates how to apply it to obtain near‑optimal solutions for the NP‑complete Traveling Salesman Problem.

hill climbingmetaheuristicsimulated annealing
0 likes · 7 min read
How Simulated Annealing Beats Hill Climbing for Solving the Traveling Salesman Problem