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 ...

Whale Optimization Algorithm for Association Rule Mining.

 Whale Optimization Algorithm for association rule mining.

Input: Number of Maximum Iteration and Population Size, Minsupport, minconfedence. 

Step 01: Initialize the population size for n search agents.[Xi(i=1,2,3,...n)]

Step 02: Initialize i, A, C, L, and p.

Step 03: Compute the fitness value of each search agent/whale.

Step 04: X* = the best rule

Step 05: While (CurrentIteration <= MaximumIteration )

Step 06: Update a, A, C, L and p.

Step 07: For all whale poplation check

         if (p<0.5)

if(|A|<1)

   For each Item in the solution Xi.

   Update Items.

Else if(|A|=1)

    Select a random Item in Xi.

Update Items.

End if

       For each item in the solution Xi.

If the Item is odd, it belongs to the antecedent,

Otherwise, it belongs to the consequence.

End for

Step 08: Calculate the fitness of each search agent.

Step 09: Update X* if there is a better solution.

Step 11: Iteration = currentIteration + 1

Step 12:    End While

Step 13:    Return X*

1.)  WHALE OPTIMIZATION ALGORITHM - NUMERICAL EXAMPLE

LINK - https://youtu.be/kq1K3mdDZt0

                 2.)    WHALE OPTIMIZATION ALGORITHM - MATHEMATICAL MODEL

Click Here - > Watch Now

https://youtu.be/f7hvvDkLoHs

#Metaheuristic #Algorithms
Meta-heuristic Algorithms

Link - Click Here

Comments

  1. hello , thank you for your youtube videos ? could you send me the academic paper of whale swarm optimization where you took the mathematical expressions (abed.benamar@gmail.com) , thank you again

    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