Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aqibsaeed/Genetic-CNN
CNN architecture exploration using Genetic Algorithm
https://github.com/aqibsaeed/Genetic-CNN
deap deep-learning genetic-algorithm machine-learning tensorflow
Last synced: about 1 month ago
JSON representation
CNN architecture exploration using Genetic Algorithm
- Host: GitHub
- URL: https://github.com/aqibsaeed/Genetic-CNN
- Owner: aqibsaeed
- License: apache-2.0
- Created: 2017-03-11T00:46:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-18T23:11:53.000Z (over 2 years ago)
- Last Synced: 2024-05-21T07:49:29.695Z (7 months ago)
- Topics: deap, deep-learning, genetic-algorithm, machine-learning, tensorflow
- Language: Python
- Size: 323 KB
- Stars: 216
- Watchers: 13
- Forks: 97
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-image-classification - unofficial-tensorflow : https://github.com/aqibsaeed/Genetic-CNN
- awesome-image-classification - unofficial-tensorflow : https://github.com/aqibsaeed/Genetic-CNN
README
### Genetic Algorithm for Convolutional Neural Networks
CNN architecture exploration using Genetic Algorithm as discussed in the following paper: Genetic CNN
Figure 1: Adapted from Genetic CNN paper. A two-stage network with 4 and 5 nodes at first and second stage respectively. The default input and output nodes are shown in red and green colour respectively. The node connections within light blue region are learned via Genetic Algorithm. The default input node (in red) will be connected to each node without any predecessor in an encoded region. Likewise, the node without successor will be connected to default output node (in green). Also, the nodes without connections will be dropped from the graph (e.g. node B2 in stage 2). Moreover, if a node has more than one parent, they will be summed element-wise before feeding as input to that layer. Within each stage, the number of convolutional filters is a constant and the spatial resolution remains unchanged. The pooling layers are added to down-sample the dataset at each stage.
### Tools Required
Python 3.5 is used during development and following libraries are required to run the code provided in the notebook:Note: If you see mistakes or want to suggest changes, please submit a pull request.