Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
802 views

Implementation of Particle Swarm Optimization Algorithm in R

I'm checking a simple moving average crossing strategy in R. Instead of running a huge simulation over the 2 dimenional parameter space (length of short term moving average, length of long term moving ...
3
votes
2answers
345 views

Is this java project idea practical? (Thread scheduler and Particle Swarm Optimization)

On a multicore box, the java thread schedulers decisions are rather arbitrary, it assigns thread priorities based on when the thread was created, from which thread it was created etc. The idea is to ...
3
votes
2answers
359 views

Quantum PSO and Charged PSO (PSO = Particle Swarm Optimizer)

I need to implement PSO's (namely charged and quantum PSO's). My questions are these: What Velocity Update strategy do each PSO's use (Synchronous or Asynchronous particle update) What social ...
2
votes
2answers
199 views

Simple 1-D particle swarm optimization algorithm for a noisy environment

I'm experimenting with particle swarm optimisation and am trying to determine the best approach for the following simple scenario: Optimizing a 1-dimensional function (i.e. particles are moving ...
1
vote
0answers
60 views

Particle Swam Optimization (PSO) learning and adapting

I have recently implemented a basic algorithm of PSO which when provided with a function of 2 variables(x,y) would return the minima of the function within a range. Now the issue is - the function ...
1
vote
1answer
214 views

PSO ring topology - how does it work?

I know that the topology of the global optimum is searched for each particle and global for the entire swarm. The ring, I know that there are a few neighborhoods and searched a lbest, a local ...
0
votes
0answers
32 views

how to build NN based PSO hybrid model

i m intrested to build the neural network based Particle swarm optimization hybrid model. the NN contains the artitecture of( 3:5:1) . but i dont have any idea how to impliment.
0
votes
1answer
205 views

Help Converting Math function into Code : Linear Kalman Particle Swarm Optimization

I'm trying to convert the math presented on this paper: http://www.bouncingchairs.net/pskalman-lategecco.pdf Around page 3 forward into working code. The algorithm itself is given around page 6, but ...