-
Updated
Jan 29, 2020 - Python
genetic-algorithm
Here are 2,523 public repositories matching this topic...
-
Updated
May 22, 2020 - Java
-
Updated
Feb 7, 2018 - JavaScript
a step-by-step guide
Hi, it is a nice work to learning machine learning and I like it very much. I am new to HTML and JS, can you give a step-by-step guide to install, train and play this game?
-
Updated
Jun 7, 2019 - C
Update code on docs
The code in the documentation should be updated so it can be used with a newer version of Neataptic. E.g. Architect -> architect
. The JSFiddle's should also be updated accordingly.
-
Updated
Oct 1, 2017 - ASP
-
Updated
Oct 1, 2018 - C#
-
Updated
Aug 19, 2019 - Python
-
Updated
Apr 23, 2020 - Python
-
Updated
Feb 11, 2020 - C#
-
Updated
May 22, 2020 - Python
-
Updated
Feb 3, 2020 - Go
-
Updated
Nov 20, 2019 - JavaScript
-
Updated
Dec 23, 2018 - Python
The generation of the diagrams for the user manual requires a lot of manual work: trigger the generation and copying the graphs into the right directory. This generation process needs to be unified and automated. Ideally one script call, e.g. generate_graphs.sh
, should trigger the generation process and copy the results into the correct directory.
The place where the diagram generation code i
Description of the bug
The run()
method of the SimulatedAnnealing class has a bug when the annealing method does not find a better state than the initial one.
When does it happens
The bug happens when the annealing algorithm fails to find a better state than the initial one. This can happen when the maxim
-
Updated
Jul 28, 2019 - Python
I am entering the subject as a non mathematician and non data scientist. I'm a potential user of your code who is looking to solve actual down to earth practical problems. While your code apparently beautifully includes a multitude of problems and algorithms, they are really wasted on me as I simply don't get the math, the lingo or the examples.
I therefore suggest you provide a few practical e
-
Updated
Oct 29, 2019 - Python
-
Updated
Mar 4, 2020 - C
-
Updated
Jun 27, 2017 - JavaScript
-
Updated
May 22, 2020 - Python
-
Updated
Nov 14, 2019 - JavaScript
-
Updated
Mar 13, 2019 - C
-
Updated
Feb 27, 2018 - JavaScript
-
Updated
Oct 26, 2019 - JavaScript
-
Updated
May 8, 2020 - Python
-
Updated
May 18, 2020 - Python
Improve this page
Add a description, image, and links to the genetic-algorithm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the genetic-algorithm topic, visit your repo's landing page and select "manage topics."
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))