Giter Site home page Giter Site logo

pso-ann's People

Contributors

dependabot[bot] avatar kuhess avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

pso-ann's Issues

BUG pso.py

I think the code
‘self.V = self.chi * (self.V
+ self.phi_p * R_p * (self.P - self.X)
+ self.phi_g * R_g * (self.g - self.X))’
should be
‘self.V = self.chi * self.V
+ self.phi_p * R_p * (self.P - self.X)
+ self.phi_g * R_g * (self.g - self.X)’.

How to interpret the weigths

Once you have optimized the weights for ann, how can I interpret the acquired weigths so I can get the connections between nodes?

BUG example_mnist.py

Hi I believe there is a bug in 'example_mnist.py' in the function
vector_to_weights.
The indexing variable idx should be updated after the first iteration s.t.
idx = idx_max

Otherwise not the whole vector of weights is read.

bug of pso.py

In pso.py, the updated velocity is written in Lines 65-69 as follows:
self.V = self.chi * (
self.V
+ self.phi_p * R_p * (self.P - self.X)
+ self.phi_g * R_g * (self.g - self.X)
)
however, it is written on Wikipedia
vi,d ← wvi,d + φprp*(pi,d-xi,d) + φgrg(gd-xi,d)
Does it delete the bracket and change to this code?
self.V = self.chi * self.V + self.phi_p * R_p * (self.P - self.X) + self.phi_g * R_g * (self.g - self.X)

some questions in ann

hi,I am Senior in a university of china and I am stduying about pso-ann model for wifi-location indoor.
I hava read your code and the output of the digital-data is a single number, the output-layer just one node. however in my research,the ann out put should be a coordinate(x,y),means two output,so could u please show me how to modify the model to meet the output. thanks a lot.
my email : [email protected]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.