Giter Club home page Giter Club logo

neat-python's People

Watchers

 avatar

neat-python's Issues

Neuron is not defined

What steps will reproduce the problem?
1. run xor2-spiking example

What version of the product are you using? On what operating system?
svn rev 355

Please provide any additional information below.


python xor2-spiking.py 

 ****** Running generation 0 ****** 

Traceback (most recent call last):
  File "xor2-spiking.py", line 41, in <module>
    pop.epoch(200, report=True, save_best=0)
  File "/usr/local/lib/python2.6/dist-packages/neat/population.py", line
252, in epoch
    self.evaluate()
  File "xor2-spiking.py", line 22, in eval_fitness
    brain = iznn.create_phenotype(chromosome)
  File "/usr/local/lib/python2.6/dist-packages/neat/iznn/network.py", line
36, in create_phenotype
    neurons[ng.id] = Neuron(ng.bias)
NameError: global name 'Neuron' is not defined


Original issue reported on code.google.com by [email protected] on 23 May 2009 at 8:33

Bug in Spiking XOR example

What steps will reproduce the problem?
1. Run the Spiking XOR example
2. Note that it gets fitness 1.0 but is still returns wrong answers

I've located this to the fitness function, which uses this:
  output = brain.advance([i * 10 for i in input])
where the i variable interferes with the input index.

Solution, replace:
output = brain.advance([i * 10 for i in input])
with;
output = brain.advance([x * 10 for x in input])

Now the spiking model works for me. Woohoo!!!

Original issue reported on code.google.com by [email protected] on 22 May 2009 at 9:53

Documentation

This project seems not to have any documentation. If it has documentation, you 
could upload it to https://readthedocs.org/ or to PyPI (after uploading the 
package there).

Original issue reported on code.google.com by [email protected] on 7 Nov 2014 at 11:45

Memory Leak

What steps will reproduce the problem?
1. Execute any experiment for few generations and the memory usage
continues to increase. 

What is the expected output? What do you see instead?
Memory should be in some bound, because at one point of time we at max keep
2 generation full of ANNs.


What version of the product are you using? On what operating system?
Latest build, on Ubuntu 8.10

Please provide any additional information below.
I tried writing destructor for ANN class in /neat/nn/nn_cpp/ANN.cpp but
still the memory leaks.


Original issue reported on code.google.com by [email protected] on 4 Apr 2009 at 9:29

Mutation of response value can't be disabled

Both the mutation of bias and response depend on the "prob_mutatebias":

        r = random.random
        if r() < Config.prob_mutatebias:
            self.__mutate_bias()
        if r() < Config.prob_mutatebias:
            self.__mutate_response()


Original issue reported on code.google.com by [email protected] on 9 Jul 2012 at 10:03

Not on PyPI

What steps will reproduce the problem?
1. pip search neat -> no machine learning related results
2. https://pypi.python.org/pypi?%3Aaction=search&term=neat&submit=search -> no 
machine learning related results

Is neat-python not available via pip? Why not?


Original issue reported on code.google.com by [email protected] on 7 Nov 2014 at 11:44

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.