Giter Club home page Giter Club logo

sparkealib's Introduction

Project:

Solving Problems with Genetic Algorithms using Spark.

Proposal:

Designing and implementing a generalized framework with implementation of all kind of mutation and cross-over operation that are specific to all problems whose solution can be represented as - A Vector of Doubles or Integers (Eg. finding waits of hidden units in Artificial Neural Network, Coefficient of terms in some equation ) A Permutation of Integers (Eg. Travelling Salesman problem. N-Queen Problem)

We will be designing a generalized framework that can use for any problem that can be represented in above formats. We will be running our algorithm parallel on different machines with different values of control parameters and finally select the most optimal solution of all.

As genetic algorithms involves randomness, so each algorithm run involves a probability of not reaching to an optimal solution. But if we are doing multiple runs with different control parameters then the probability of not reaching to a suboptimal solution by all the machine will be very less as compared to previous.

SparkEALib Documentation :

Package Structure:

Source Package:

  • SparkEA
  • Selection
  • SparkGA
  • Binary Representation
  • Integer Representation
  • Permutation Representation
  • ParallelizationEngine

Description of Classes:

SparkEA:

Accessories: Accessories is the common class between all type of representation which provides an interface to the user of library to provide an implementation of the “Fitness Function”

Gene: Gene is an abstract class for gene which is inherited by all different types of gene and some necessary functions are override-ed accordingly. E.g. getGene, setGene, loweBound, upperBound

Chromosome: Similar to Gene Chromosome is also a general class which contains signature and few implementation of all the necessary functions of a Chromosome and is inherited by all the Specific Chromosome like BinaryChromosome, IntegerChromosom etc. Contains the functions like getFitnessValue, getGene etc.

Params: Params is the General class for parameter settings of a Chromosome, this is inherited by all the specific Parameter classes and contains signature of some basic function and is mostly used for Run-Time Polymorphism to avoid repetition of Code.

Utility: As the name suggest this class contains most of the utility functions for example generating random probability in some give range, checking bounds, getting Fittest Chromosome among many etc.

Work: This is an interface which represents single working unit or we can say a single running implementation and contains signature of functions like fork, which we will describe later.

SparkEA.Selection:

SelectionMethods: Contains the implementation of some fitness based selection methods like RouletteWheel , though more methods can be added by user or other contributors like rank or tournament based methods.

SparkEA.BinaryRepresentation:

BinaryGene: Contains the implementation of a BinaryGene which can have values 0 or 1, implementation of function from Generalized gene class and some Representation specific functions like setRandom etc.

Parameters: It inherits the base Params class and implement the abstract functions while having this representation specific attributes like . MutationProbability, CrossOverProbability, MutationProbabilityChangeRate etc.

BinaryChromsome: Contains the array of BinaryGene, Object of Parameters and implementation of all the methods declared in the base Chromosome Class. In addition to these methods the class contains the Representation Specifc Mutation and Cross-Over function. Like for Binary Representation, uniformCrossover and RandomMutation.

ParentSelection: Class is used to select the parents for Crossover and uses the methods implemented in SelectionMethods class.

SurvivorSelection: As the name suggest it used to select the next generation and also uses the methods define in SelectionMethdos.

Solver: Solver class provides the user an interface to provide their implementation of solution like choice of their mutation and crossover function, number of iterations etc. User overrides a function named solve which contain a list of Chromosome as parameter which is the initial population.

Worker: It implements the Work interface and can be seen as single running unit of code. It contains function like fork, which is used to fork multiple similar working unit from one unit of code. It contains solve function which is called by the Spark Map function and which ultimately calls the function in the Solver class which contains the user’s implementation oe we can say definition of single unit.

Note: All the classes in Integer and Permutation Representation are analogous to Binary Representation while having representation specific function and Mutation and Crossovers.

ParallelizationEngine:

SimpleDistributor: Creates a Spark Application and Replicates the single Worker unit provided by user using fork and then runs them and aggregates the results at the end and returns the Fittest Chromosome after aggregation.

AdvanceDistributor: Creates a Spark Application, Replicates the single Worker unit into many while updating their Parameters according to the change rates provided by user. Runs these worker units with different parameters in parallel and aggregates the result and returns the fittest Chromosome.

Commands to Run Different Test Samples

  • Subset-Sum Problem: ./bin/spark-submit --class testsparkealib.Binary.TestSparkEALib /home/anshal/NetBeansProjects/TestSparkEALib/dist/TestSparkEALib.jar
  • N-Queen: ./bin/spark-submit --class testsparkealib.Permutation.PermutationTest /home/anshal/NetBeansProjects/TestSparkEALib/dist/TestSparkEALib.jar
  • Load Balancing: ./bin/spark-submit --class testsparkealib.IntegerPresentation.GuiMain /home/anshal/NetBeansProjects/TestSparkEALib/dist/TestSparkEALib.jar

sparkealib's People

Contributors

anshaldwivedi avatar anshal21 avatar

Watchers

James Cloos avatar Nilotpal Mrinal avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.