@@ -302,6 +302,24 @@ is applied based on this parameter.
302
302
303
303
.. _header-n115 :
304
304
305
+ PyGAD 2.6.0
306
+ ------------
307
+
308
+ Release Date: 6 August 2020
309
+
310
+ 1. A bug fix in assigning the value to the ``initial_population ``
311
+ parameter.
312
+
313
+ 2. A new parameter named ``gene_type `` is added to control the gene
314
+ type. It can be either ``int `` or ``float ``. It has an effect only
315
+ when the parameter ``gene_space `` is ``None ``.
316
+
317
+ 3. 7 new parameters that accept callback functions: ``on_start ``,
318
+ ``on_fitness ``, ``on_parents ``, ``on_crossover ``, ``on_mutation ``,
319
+ ``on_generation ``, and ``on_stop ``.
320
+
321
+ .. _header-n124 :
322
+
305
323
PyGAD Projects at GitHub
306
324
========================
307
325
@@ -310,7 +328,7 @@ https://pypi.org/project/pygad. PyGAD is built out of a number of
310
328
open-source GitHub projects. A brief note about these projects is given
311
329
in the next subsections.
312
330
313
- .. _header-n117 :
331
+ .. _header-n126 :
314
332
315
333
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
316
334
--------------------------------------------------------------------------------
@@ -321,7 +339,7 @@ GitHub Link: https://github.com/ahmedfgad/GeneticAlgorithmPython
321
339
is the first project which is an open-source Python 3 project for
322
340
implementing the genetic algorithm based on NumPy.
323
341
324
- .. _header-n120 :
342
+ .. _header-n129 :
325
343
326
344
`NumPyANN <https://github.com/ahmedfgad/NumPyANN >`__
327
345
----------------------------------------------------
@@ -335,7 +353,7 @@ neural network without using a training algorithm. Currently, it only
335
353
supports classification and later regression will be also supported.
336
354
Moreover, only one class is supported per sample.
337
355
338
- .. _header-n123 :
356
+ .. _header-n132 :
339
357
340
358
`NeuralGenetic <https://github.com/ahmedfgad/NeuralGenetic >`__
341
359
--------------------------------------------------------------
@@ -348,7 +366,7 @@ projects
348
366
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
349
367
and `NumPyANN <https://github.com/ahmedfgad/NumPyANN >`__.
350
368
351
- .. _header-n126 :
369
+ .. _header-n135 :
352
370
353
371
`NumPyCNN <https://github.com/ahmedfgad/NumPyCNN >`__
354
372
----------------------------------------------------
@@ -360,7 +378,7 @@ convolutional neural networks using NumPy. The purpose of this project
360
378
is to only implement the **forward pass ** of a convolutional neural
361
379
network without using a training algorithm.
362
380
363
- .. _header-n129 :
381
+ .. _header-n138 :
364
382
365
383
`CNNGenetic <https://github.com/ahmedfgad/CNNGenetic >`__
366
384
--------------------------------------------------------
@@ -372,7 +390,7 @@ convolutional neural networks using the genetic algorithm. It uses the
372
390
`GeneticAlgorithmPython <https://github.com/ahmedfgad/GeneticAlgorithmPython >`__
373
391
project for building the genetic algorithm.
374
392
375
- .. _header-n132 :
393
+ .. _header-n141 :
376
394
377
395
Submitting Issues
378
396
=================
@@ -389,7 +407,7 @@ is not working properly or to ask for questions.
389
407
If this is not a proper option for you, then check the **Contact Us **
390
408
section for more contact details.
391
409
392
- .. _header-n136 :
410
+ .. _header-n145 :
393
411
394
412
Ask for Feature
395
413
===============
@@ -406,7 +424,7 @@ to ahmed.f.gad@gmail.com.
406
424
407
425
Also check the **Contact Us ** section for more contact details.
408
426
409
- .. _header-n140 :
427
+ .. _header-n149 :
410
428
411
429
Projects Built using PyGAD
412
430
==========================
@@ -425,15 +443,15 @@ Within your message, please send the following details:
425
443
426
444
- Preferably, a link that directs the readers to your project
427
445
428
- .. _header-n151 :
446
+ .. _header-n160 :
429
447
430
448
For More Information
431
449
====================
432
450
433
451
There are different resources that can be used to get started with the
434
452
genetic algorithm and building it in Python.
435
453
436
- .. _header-n153 :
454
+ .. _header-n162 :
437
455
438
456
Tutorial: Implementing Genetic Algorithm in Python
439
457
--------------------------------------------------
@@ -457,7 +475,7 @@ good resource to start with coding the genetic algorithm.
457
475
458
476
|image0 |
459
477
460
- .. _header-n164 :
478
+ .. _header-n173 :
461
479
462
480
Tutorial: Introduction to Genetic Algorithm
463
481
-------------------------------------------
@@ -476,7 +494,7 @@ which is available at these links:
476
494
477
495
|image1 |
478
496
479
- .. _header-n174 :
497
+ .. _header-n183 :
480
498
481
499
Tutorial: Build Neural Networks in Python
482
500
-----------------------------------------
@@ -496,7 +514,7 @@ available at these links:
496
514
497
515
|image2 |
498
516
499
- .. _header-n184 :
517
+ .. _header-n193 :
500
518
501
519
Tutorial: Optimize Neural Networks with Genetic Algorithm
502
520
---------------------------------------------------------
@@ -516,7 +534,7 @@ available at these links:
516
534
517
535
|image3 |
518
536
519
- .. _header-n194 :
537
+ .. _header-n203 :
520
538
521
539
Tutorial: Building CNN in Python
522
540
--------------------------------
@@ -542,7 +560,7 @@ good resource to start with coding CNNs.
542
560
543
561
|image4 |
544
562
545
- .. _header-n207 :
563
+ .. _header-n216 :
546
564
547
565
Tutorial: Derivation of CNN from FCNN
548
566
-------------------------------------
@@ -561,7 +579,7 @@ which is available at these links:
561
579
562
580
|image5 |
563
581
564
- .. _header-n217 :
582
+ .. _header-n226 :
565
583
566
584
Book: Practical Computer Vision Applications Using Deep Learning with CNNs
567
585
--------------------------------------------------------------------------
@@ -587,7 +605,7 @@ Find the book at these links:
587
605
.. figure :: https://user-images.githubusercontent.com/16560492/78830077-ae7c2800-79e7-11ea-980b-53b6bd879eeb.jpg
588
606
:alt:
589
607
590
- .. _header-n232 :
608
+ .. _header-n241 :
591
609
592
610
Contact Us
593
611
==========
0 commit comments