@@ -204,7 +204,7 @@ through more generations because no further improvement is possible.
204
204
if ga_instance.best_solution()[1 ] >= 70 :
205
205
return " stop"
206
206
207
- .. _header-n225 :
207
+ .. _header-n87 :
208
208
209
209
PyGAD 2.5.0
210
210
-----------
@@ -296,11 +296,11 @@ code.
296
296
gene_space = [range (5 ), range (10 , 20 )]
297
297
298
298
If the user did not assign the initial population to the
299
- ``initial_population `` parameter, the the initial population is created
299
+ ``initial_population `` parameter, the initial population is created
300
300
randomly based on the ``gene_space `` parameter. Moreover, the mutation
301
301
is applied based on this parameter.
302
302
303
- .. _header-n224 :
303
+ .. _header-n115 :
304
304
305
305
PyGAD Projects at GitHub
306
306
========================
@@ -310,7 +310,7 @@ https://pypi.org/project/pygad. PyGAD is built out of a number of
310
310
open-source GitHub projects. A brief note about these projects is given
311
311
in the next subsections.
312
312
313
- .. _header-n89 :
313
+ .. _header-n117 :
314
314
315
315
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
316
316
--------------------------------------------------------------------------------
@@ -321,7 +321,7 @@ GitHub Link: https://github.com/ahmedfgad/GeneticAlgorithmPython
321
321
is the first project which is an open-source Python 3 project for
322
322
implementing the genetic algorithm based on NumPy.
323
323
324
- .. _header-n92 :
324
+ .. _header-n120 :
325
325
326
326
`NumPyANN <https://github.com/ahmedfgad/NumPyANN >`__
327
327
----------------------------------------------------
@@ -335,7 +335,7 @@ neural network without using a training algorithm. Currently, it only
335
335
supports classification and later regression will be also supported.
336
336
Moreover, only one class is supported per sample.
337
337
338
- .. _header-n95 :
338
+ .. _header-n123 :
339
339
340
340
`NeuralGenetic <https://github.com/ahmedfgad/NeuralGenetic >`__
341
341
--------------------------------------------------------------
@@ -348,7 +348,7 @@ projects
348
348
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
349
349
and `NumPyANN <https://github.com/ahmedfgad/NumPyANN >`__.
350
350
351
- .. _header-n98 :
351
+ .. _header-n126 :
352
352
353
353
`NumPyCNN <https://github.com/ahmedfgad/NumPyCNN >`__
354
354
----------------------------------------------------
@@ -360,7 +360,7 @@ convolutional neural networks using NumPy. The purpose of this project
360
360
is to only implement the **forward pass ** of a convolutional neural
361
361
network without using a training algorithm.
362
362
363
- .. _header-n101 :
363
+ .. _header-n129 :
364
364
365
365
`CNNGenetic <https://github.com/ahmedfgad/CNNGenetic >`__
366
366
--------------------------------------------------------
@@ -372,7 +372,7 @@ convolutional neural networks using the genetic algorithm. It uses the
372
372
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
373
373
project for building the genetic algorithm.
374
374
375
- .. _header-n104 :
375
+ .. _header-n132 :
376
376
377
377
Submitting Issues
378
378
=================
@@ -389,7 +389,7 @@ is not working properly or to ask for questions.
389
389
If this is not a proper option for you, then check the **Contact Us **
390
390
section for more contact details.
391
391
392
- .. _header-n108 :
392
+ .. _header-n136 :
393
393
394
394
Ask for Feature
395
395
===============
@@ -406,7 +406,7 @@ to ahmed.f.gad@gmail.com.
406
406
407
407
Also check the **Contact Us ** section for more contact details.
408
408
409
- .. _header-n112 :
409
+ .. _header-n140 :
410
410
411
411
Projects Built using PyGAD
412
412
==========================
@@ -425,15 +425,15 @@ Within your message, please send the following details:
425
425
426
426
- Preferably, a link that directs the readers to your project
427
427
428
- .. _header-n123 :
428
+ .. _header-n151 :
429
429
430
430
For More Information
431
431
====================
432
432
433
433
There are different resources that can be used to get started with the
434
434
genetic algorithm and building it in Python.
435
435
436
- .. _header-n125 :
436
+ .. _header-n153 :
437
437
438
438
Tutorial: Implementing Genetic Algorithm in Python
439
439
--------------------------------------------------
@@ -457,7 +457,7 @@ good resource to start with coding the genetic algorithm.
457
457
458
458
|image0 |
459
459
460
- .. _header-n136 :
460
+ .. _header-n164 :
461
461
462
462
Tutorial: Introduction to Genetic Algorithm
463
463
-------------------------------------------
@@ -476,7 +476,7 @@ which is available at these links:
476
476
477
477
|image1 |
478
478
479
- .. _header-n146 :
479
+ .. _header-n174 :
480
480
481
481
Tutorial: Build Neural Networks in Python
482
482
-----------------------------------------
@@ -496,7 +496,7 @@ available at these links:
496
496
497
497
|image2 |
498
498
499
- .. _header-n156 :
499
+ .. _header-n184 :
500
500
501
501
Tutorial: Optimize Neural Networks with Genetic Algorithm
502
502
---------------------------------------------------------
@@ -516,7 +516,7 @@ available at these links:
516
516
517
517
|image3 |
518
518
519
- .. _header-n166 :
519
+ .. _header-n194 :
520
520
521
521
Tutorial: Building CNN in Python
522
522
--------------------------------
@@ -542,7 +542,7 @@ good resource to start with coding CNNs.
542
542
543
543
|image4 |
544
544
545
- .. _header-n179 :
545
+ .. _header-n207 :
546
546
547
547
Tutorial: Derivation of CNN from FCNN
548
548
-------------------------------------
@@ -561,7 +561,7 @@ which is available at these links:
561
561
562
562
|image5 |
563
563
564
- .. _header-n189 :
564
+ .. _header-n217 :
565
565
566
566
Book: Practical Computer Vision Applications Using Deep Learning with CNNs
567
567
--------------------------------------------------------------------------
@@ -587,7 +587,7 @@ Find the book at these links:
587
587
.. figure :: https://user-images.githubusercontent.com/16560492/78830077-ae7c2800-79e7-11ea-980b-53b6bd879eeb.jpg
588
588
:alt:
589
589
590
- .. _header-n204 :
590
+ .. _header-n232 :
591
591
592
592
Contact Us
593
593
==========
0 commit comments