ContextSensitiveGrammarInduction.GeneticSearch 1.0.2

dotnet add package ContextSensitiveGrammarInduction.GeneticSearch --version 1.0.2
NuGet\Install-Package ContextSensitiveGrammarInduction.GeneticSearch -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ContextSensitiveGrammarInduction.GeneticSearch" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ContextSensitiveGrammarInduction.GeneticSearch --version 1.0.2
#r "nuget: ContextSensitiveGrammarInduction.GeneticSearch, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ContextSensitiveGrammarInduction.GeneticSearch as a Cake Addin
#addin nuget:?package=ContextSensitiveGrammarInduction.GeneticSearch&version=1.0.2

// Install ContextSensitiveGrammarInduction.GeneticSearch as a Cake Tool
#tool nuget:?package=ContextSensitiveGrammarInduction.GeneticSearch&version=1.0.2

This repository contains the genetic algorithm for context-sensitive language induction. Please read the presentation of the library below.

Quick presentation

The library contains two main modules: Parsing and GA. The former represents a Type-1 grammar alongside helper functions. The latter is the implementation of a genetic algorithm with all required genetic operators. The library uses the steady state genetic algorithm (see the description below).

Installation

You can install the library as the NuGet package, search the phrase: ContextSensitiveGrammarInduction.GeneticSearch and use the version 1.0.2 (package source: nuget.org). You should have selected the platform net47 (.NETFramework 4.7) for your projects.

Example of usage (F#)

open System
open GA
open System.Collections.Generic

...

let parameters = {
    pop_size = 50;
    tournament_size = 3;
    p_mutation = 0.01;
    iterations = 1000;
    verbose = 200;
    rnd = Random();
    grammar_size = 5;
    variables = 3;
    alphabet = ['a'; 'b'];
    examples = SortedSet ["ab"; "aabb"; "aaabbb"]
    counterexamples = SortedSet ["a"; "b"; "aa"; "bb"; "ba"; "abb"; "bba"; "abab"]
}
let grammar, bar = runGA parameters
printfn $"{grammar}"
printfn $"\nwith bar = {bar}"
[Output:]
200: best bar = 3/4
400: best bar = 3/4
600: best bar = 37/48
800: best bar = 37/48
1000: best bar = 37/48
1000: best bar = 37/48
V0 -> V0 V2
V0 V0 -> V1 V2
V1 -> a
V1 -> b
V1 V2 -> V0 V1
V1 V2 -> V0 V2
V2 -> V0 V2
V2 V0 -> V1 V1


with bar = 0,7708333333333334

Example of usage (C#)

using System;
using System.Collections.Generic;
using Microsoft.FSharp.Collections;
...
GA.GAParams parameters = new GA.GAParams(
    pop_size: 50,
    tournament_size: 3,
    p_mutation: 0.01,
    iterations: 1000,
    verbose: 200,
    rnd: new Random(),
    grammar_size: 5,
    variables: 3,
    alphabet: ListModule.OfSeq(new List<char> { 'a', 'b' }),
    examples: new SortedSet<string>() { "ab", "aabb", "aaabbb"},
    counterexamples: new SortedSet<string>() {"a", "b", "aa", "bb", "ba", "abb", "bba", "abab"}
);
var (grammar, bestBar) = GA.runGA(parameters);
Console.WriteLine(grammar);
Console.WriteLine("with bar = " + bestBar);

Documentation

To run the genetic algorithm, use the runGA function (from the GA module) that takes a set of parameters as an argument. The set is the type of GAParams and contains parameters values for the genetic algorithm and the configuration for an induced grammar. The function returns the best-found grammar in Kuroda normal form as well as the best balanced accuracy (see the example above).

type GAParams = {
    
    // Population size for GA.
    pop_size : int;
    
    // Tournament size for the tournament selection method.
    tournament_size : int;

    // Mutation rate for GA.
    p_mutation : float;

    // Number of evaluations for GA (e.g. if the population size is 200 then one iteration
    // is 200 evaluations, hence 2000 evaluations is 10 iterations
    // in the classical meaning of an iteration).
    iterations : int;

    // If the verbose is set more than zero then the program will print the best individual
    // in each n-th and the last iteration.
    verbose : int;

    // Radomizer for genetic operators (the crossover and mutation), it must be the `Random` type.
    rnd : Random;

    // Expected size of a grammar as the number of rules.
    grammar_size : int;

    // The number variables in the induced grammar (non-terminal symbols).
    variables : int;

    // Terminal symbols in the induced grammar.
    alphabet : char list;

    // The list of words that should be accepted by the induced grammar.
    examples : SortedSet<string>;

    // The list of words that should not be accepted by the induced grammar.
    counterexamples : SortedSet<string>
}

Difference between the steady state genetic algorithm and the generational genetic algorithm

The steady state GA is a simpler version of the generational one and in it two parents are selected and crossed obtaining an offspring that are mutated and inserted in the population, whereas in the generational version a large portion of the population is selected and crossed (typically half the individuals), the resulting offspring is mutated and inserted into the population, thus replacing the old individuals.

-- Andreu Sancho-Asensio, Universitat Ramon Llull

Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 346 7/9/2021

Libary that contains the genetic algorithm for context sensitive grammar induction.