New Post

Poplar Optimization Algorithm || Step-By-Step || ~xRay Pixy

Image
The Poplar Optimization Algorithm (POA) is a nature-inspired optimization method based on how poplar trees reproduce. It uses sexual propagation (seed dispersal by wind) for exploration and asexual reproduction (cutting and regrowth) for exploitation. Mutation and chaos factors help maintain diversity and prevent premature convergence, making POA efficient for solving complex optimization problems. Learn the Poplar Optimization Algorithm Step-By-Step using Examples. Video Chapters: Poplar Optimization Algorithm (POA) 00:00 Introduction 02:12 POA Applications 03:32 POA Steps 05:50 Execute Algorithm 1 13:45 Execute Algorithm 2 16:38 Execute Algorithm 3 18:15 Conclusion Main Points of the Poplar Optimization Algorithm (POA) Nature-Inspired Algorithm โ€“ Based on the reproductive mechanisms of poplar trees. Two Key Processes : Sexual Propagation (Seed Dispersal) โ€“ Uses wind to spread seeds, allowing broad exploration. Asexual Reproduction (Cuttings) โ€“ Strong branches grow ...

Harris Hawks Optimization Algorithm Step-by-Step with Example ~xRay Pixy๐Ÿ‡๐ŸŒฟ๐ŸŒž

Harris Hawks Optimization Algorithm



Harris Hawks Optimization Algorithm Introduction
Harris hawks optimizer (HHO) is a nature-inspired population-based optimization algorithm. Harris Hawks Optimization algorithm is a Population-based algorithm. This algorithm mimics the Exploring, Exploiting, and Attacking strategies of Harris Hawks. Harris Hawks Optimization algorithm can be used to solve different engineering problems.
About Harris Hawk
Harris Hawk is a large medium bird and also known as Dusky Hawk. Harris Hawk hunt in cooperative groups and group size is 2 to 7 birds. Hawks Diet: Large insects, Birds, Lizards, and Mammals.
Harris Hawks Optimization Algorithm Steps-by-Step. INPUT: Population Size (N), and a maximum number of iterations (MaxT). OUTPUT: Target Location and its Fitness Values.
Step 01: Initialize the population randomly ๐‘‹_๐‘– ( ๐‘–=1,2,3,4,โ€ฆ๐‘ ). Step 02: Check While ( (t โ‰ฅ max )Stopping Criteria is Matched or Not ) Step 03: Calculate fitness value for each hawk and Select Best. Step 04: Set ๐‘‹_๐‘Ÿ๐‘Ž๐‘๐‘๐‘–๐‘ก as the best location for the rabbit. Step 05: For each hawk Position: update Energy and Jump Strength. Step 06: Exploration Phase Step 07: Exploitation Phase
Following 2 Strategies are Followed by Hawks to detect a prey:
Step 08: Update Location Vector using 4 strategies: Soft Round-Up, Hard Round-Up, Soft round-up with progressive rapid dives, Hard round-up with progressive rapid dives. Step 09: Return Best Rabbit Location and its Fitness Value. How Harris Hawks Detect Prey? Harris Hawks haunt randomly on certain cities and wait to detect prey. They check the Position of other family members and target position. Q. How hawks will catch the prey? CASE 01: Soft round Up ( E โ‰ฅ 0.5 and r โ‰ฅ 0.5 ) CASE 02: Hard round Up ( E < 0.5 and r โ‰ฅ 0.5 ) CASE 03: Soft Round-Up with progressive rapid dives. ( E โ‰ฅ 0.5 and r < 0.5 ) CASE 04: Hard round Up with progressive rapid dives. ( E < 0.5 and r < 0.5 )


#Metaheuristic #Algorithms
Meta-heuristic Algorithms
Link - Click Here

Comments

  1. can you suggest or share document for the HHO mathematical equation explanation? thank you.

    ReplyDelete

Post a Comment

Popular Post

PARTICLE SWARM OPTIMIZATION ALGORITHM NUMERICAL EXAMPLE

Cuckoo Search Algorithm for Optimization Problems

Particle Swarm Optimization (PSO)

PSO (Particle Swarm Optimization) Example Step-by-Step

PSO Python Code || Particle Swarm Optimization in Python || ~xRay Pixy

how is the LBP |Local Binary Pattern| values calculated? Step-by-Step with Example

Whale Optimization Algorithm Code Implementation || WOA CODE || ~xRay Pixy

Grey Wolf Optimization Algorithm

Grey Wolf Optimization Algorithm Numerical Example

Bat algorithm Explanation Step by Step with example