Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c20a2b6

Browse files
authored
Merge branch 'master' into patch-1
2 parents 2fa7c5a + c2e78b2 commit c20a2b6

File tree

10 files changed

+1066
-556
lines changed

10 files changed

+1066
-556
lines changed

README.md

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# GeneticAlgorithmPython: Building Genetic Algorithm in Python
1+
# PyGAD: Genetic Algorithm in Python
22

3-
[This project](https://github.com/ahmedfgad/GeneticAlgorithmPython) is part of [PyGAD](https://pypi.org/project/pygad) which is an open-source Python 3 library for building the genetic algorithm and optimizing machine learning algorithms.
3+
[PyGAD](https://pypi.org/project/pygad) is an open-source easy-to-use Python 3 library for building the genetic algorithm and optimizing machine learning algorithms. It supports Keras and PyTorch.
44

5-
Check documentation of the [GeneticAlgorithmPython](https://github.com/ahmedfgad/GeneticAlgorithmPython) project in the PyGAD's documentation: https://pygad.readthedocs.io/en/latest/README_pygad_ReadTheDocs.html
5+
Check documentation of the [PyGAD](https://pygad.readthedocs.io/en/latest).
66

7-
[![Downloads](https://pepy.tech/badge/pygad)](https://pepy.tech/project/pygad)
7+
[![Downloads](https://pepy.tech/badge/pygad)](https://pepy.tech/project/pygad) ![Docs](https://readthedocs.org/projects/pygad/badge)
88

99
![PYGAD-LOGO](https://user-images.githubusercontent.com/16560492/101267295-c74c0180-375f-11eb-9ad0-f8e37bd796ce.png)
1010

@@ -18,26 +18,16 @@ You can donate via [Open Collective](https://opencollective.com/pygad): [opencol
1818

1919
To donate using PayPal, use either this link: [paypal.me/ahmedfgad](https://paypal.me/ahmedfgad) or the e-mail address [email protected].
2020

21-
# Tutorial Project
22-
23-
**IMPORTANT** If you are coming for the code of the tutorial titled [**Genetic Algorithm Implementation in Python**](https://www.linkedin.com/pulse/genetic-algorithm-implementation-python-ahmed-gad), then it has been moved to the [Tutorial Project](https://github.com/ahmedfgad/GeneticAlgorithmPython/tree/master/Tutorial%20Project) directory on 06 May 2020.
24-
2521
# Installation
2622

2723
To install [PyGAD](https://pypi.org/project/pygad), simply use pip to download and install the library from [PyPI](https://pypi.org/project/pygad) (Python Package Index). The library lives a PyPI at this page https://pypi.org/project/pygad.
2824

29-
For Windows, issue the following command:
25+
Install PyGAD with the following command:
3026

3127
```python
3228
pip install pygad
3329
```
3430

35-
For Linux and Mac, replace `pip` by use `pip3` because the library only supports Python 3.
36-
37-
```python
38-
pip3 install pygad
39-
```
40-
4131
PyGAD is developed in Python 3.7.3 and depends on NumPy for creating and manipulating arrays and Matplotlib for creating figures. The exact NumPy version used in developing PyGAD is 1.16.4. For Matplotlib, the version is 3.1.0.
4232

4333
To get started with PyGAD, please read the documentation at [Read The Docs](https://pygad.readthedocs.io/) https://pygad.readthedocs.io.
@@ -340,10 +330,7 @@ Find the book at these links:
340330

341331
342332
* [LinkedIn](https://www.linkedin.com/in/ahmedfgad)
343-
* [Amazon Author Page](https://amazon.com/author/ahmedgad)
344-
* [Heartbeat](https://heartbeat.fritz.ai/@ahmedfgad)
345333
* [Paperspace](https://blog.paperspace.com/author/ahmed)
346334
* [KDnuggets](https://kdnuggets.com/author/ahmed-gad)
347335
* [TowardsDataScience](https://towardsdatascience.com/@ahmedfgad)
348-
* [GitHub](https://github.com/ahmedfgad)
349-
336+
* [GitHub](https://github.com/ahmedfgad)

__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
from .pygad import * # Relative import.
12

2-
__version__ = "2.13.0"
3+
__version__ = "2.14.3"

0 commit comments

Comments
 (0)