Exemplo n.º 1
0
def get(pso_name, swarm_size, benchmark_name, dimensionality, num_iterations, experiment_num, force_calculation=False, verbose=False):
    # Status report
    if verbose:
        print t.now(), '   - getting droc',
        print ':', pso_name, swarm_size, benchmark_name, dimensionality, num_iterations, experiment_num

    existing_result = None
    if not force_calculation:
        existing_result = _fetch(
            pso_name, swarm_size, benchmark_name, dimensionality, num_iterations, experiment_num)
    elif verbose:
        print t.now(), '   - forcing calculation.'

    if force_calculation or existing_result is None:
        if verbose:
            print t.now(), '   - droc result not found. calculating...'
        new_result = _calculate(pso_name, swarm_size, benchmark_name, dimensionality,
                                num_iterations, experiment_num, force_calculation=force_calculation, verbose=verbose)
        if verbose:
            print t.now(), '   - storing droc result...'
        _store(pso_name, swarm_size, benchmark_name, dimensionality,
               num_iterations, experiment_num, new_result)
        if verbose:
            print t.now(), '   - done.'
        return new_result
    else:
        return existing_result
Exemplo n.º 2
0
def _make_prep_configs(pso_names, swarm_sizes, benchmark_names,
                       dimensionalities, nums_iterations):
    print t.now(), 'determining prep configurations...'
    print t.now(), '(processing', len(pso_names), 'pso names,', len(
        swarm_sizes), 'swarm sizes,', len(
            benchmark_names), 'benchmark names, and', len(dimensionalities)

    global _prep_configs

    for pso_name in pso_names:
        for swarm_size in swarm_sizes:
            for benchmark_name in benchmark_names:
                for dimensionality in dimensionalities:
                    benchmark = benchmarks.get(benchmark_name)
                    for dimensionality in dimensionalities:
                        if not benchmark.is_dimensionality_valid(
                                dimensionality):
                            continue
                        for num_iterations in nums_iterations:
                            for experiment_num in range(0, 30):
                                prep_config = (pso_name, swarm_size,
                                               benchmark_name, dimensionality,
                                               num_iterations, experiment_num)
                                if not prep_config in _prep_configs:
                                    _prep_configs.append(prep_config)
Exemplo n.º 3
0
def benchmark():
    # Run and time small number of computationally-expensive simulations.

    start = timer()
    for i in range(30):
        diversities.get('alternative_barebones_pso',
                        500,
                        'zakharov',
                        500,
                        0,
                        i,
                        verbose=True,
                        force_calculation=True)
    duration = timer() - start
    print '\n'
    print t.now(), 'duration:', duration
Exemplo n.º 4
0
def _calculate(pso_name, pso_population_size, benchmark_name, benchmark_dimensions, verbose=False, num_iterations=None):
    # Set up the PSO for a single diversity experiment
    pso = psos.get(pso_name)
    benchmark = benchmarks.get(benchmark_name)
    pso.function = benchmark.function
    pso.lower_bound = benchmark.min(0)
    pso.upper_bound = benchmark.max(0)
    pso.num_dimensions = benchmark_dimensions
    pso.init_pso_defaults()
    pso.init_swarm(size=pso_population_size)

    # Initialize the x and y values for diversity measurements taken
    diversity_ys = []

    # For each iteration of the PSO algorithm, take a diversity measurement.
    if verbose:
        prev_perc = -1
        # perc_increment = 1
        prev_time = time.time()
        time_increment = 1

    if num_iterations is None:
        num_iterations = _max_iterations
    for i in range(0, num_iterations):
        if verbose:
            perc = (i*100)/num_iterations
            if perc > prev_perc and time.time() > (prev_time + time_increment):
                prev_perc = perc
                prev_time = time.time()
                print t.now(), '     -', perc, 'percent complete...'

        xs = pso.positions
        diversity_measurement = diversity.avg_distance_around_swarm_centre(xs)

        assert not np.isnan(diversity_measurement), 'Diversity result is NaN!'

        diversity_ys.append(diversity_measurement)
        pso.iterate()

    if verbose:
        print t.now(), '     - 100 percent complete.'

    # Return the diversity measurements
    return diversity_ys
Exemplo n.º 5
0
def _make_configs(pso_names, swarm_sizes, benchmark_names, dimensionalities,
                  nums_iterations):
    print t.now(), 'determining configurations...'
    print t.now(), '(processing', len(pso_names), 'pso names,', len(
        swarm_sizes), 'swarm sizes,', len(
            benchmark_names), 'benchmark names,', len(
                dimensionalities), 'dimensionalities, and', len(
                    nums_iterations), 'numbers of iterations)'

    global _configs

    for pso_1_i in range(0, len(pso_names) - 1):
        pso_1_name = pso_names[pso_1_i]
        for pso_2_i in range(pso_1_i + 1, len(pso_names)):
            pso_2_name = pso_names[pso_2_i]
            if pso_1_name == pso_2_name:
                continue
            for swarm_size in swarm_sizes:
                for benchmark_name in benchmark_names:
                    benchmark = benchmarks.get(benchmark_name)
                    for dimensionality in dimensionalities:
                        if not benchmark.is_dimensionality_valid(
                                dimensionality):
                            continue
                        for num_iterations in nums_iterations:
                            config = (pso_1_name, pso_2_name, swarm_size,
                                      benchmark_name, dimensionality,
                                      num_iterations)
                            if not config in _configs:
                                _configs.append(config)
    print t.now(), 'done.'
Exemplo n.º 6
0
def get(pso_1_name, pso_2_name, swarm_size, benchmark_name, dimensionality, num_iterations, verbose=False, benchmark=False):
    if verbose:
        print t.now(), ' - getting rank between psos',
        print ':', pso_1_name, pso_2_name, swarm_size, benchmark_name, dimensionality, num_iterations

    if benchmark:
        # Don't try and fetch existing result, and don't store result
        _calculate(pso_1_name, pso_2_name, swarm_size, benchmark_name,
                   dimensionality, num_iterations, verbose=verbose, benchmark=True)
    else:
        existing_result = _fetch(
            pso_1_name, pso_2_name, swarm_size, benchmark_name, dimensionality, num_iterations)
        if existing_result is None:
            if verbose:
                print t.now(), '   - droc rank between pso\'s not found. calculating...'
            new_result = _calculate(pso_1_name, pso_2_name, swarm_size,
                                    benchmark_name, dimensionality, num_iterations, verbose=verbose)
            if verbose:
                print t.now(), '   - storing result...'
            _store(pso_1_name, pso_2_name, swarm_size, benchmark_name,
                   dimensionality, num_iterations, new_result)
            return new_result
        else:
            return existing_result
Exemplo n.º 7
0
def get(pso_name, swarm_size, benchmark_name, dimensionality, iteration, experiment, verbose=False, force_calculation=False):
    if force_calculation:
        if verbose:
            print t.now(), '     - forcing calculation'
        new_results = _calculate(pso_name, swarm_size, benchmark_name,
                                 dimensionality, verbose=verbose, num_iterations=_max_iterations)

        if verbose:
            print t.now(), '     - storing', len(new_results), 'diversity results...'
        for (iteration, new_result) in enumerate(new_results):
            _store(pso_name, swarm_size, benchmark_name,
                   dimensionality, iteration, experiment, new_result)
        diversity_table.commit()
        if verbose:
            print t.now(), '     - done.'
        return new_results[iteration]

    else:
        # If the requested result exists, return it
        existing_result = _fetch_existing(
            pso_name, swarm_size, benchmark_name, dimensionality, iteration, experiment)
        if existing_result is None:
            if verbose:
                print t.now(), "     - diversity result not found. calculating for", _max_iterations, "iterations..."
            new_results = _calculate(
                pso_name, swarm_size, benchmark_name, dimensionality, verbose=verbose)

            if verbose:
                print t.now(), '     - storing', len(new_results), 'diversity results...'
            for (iteration, new_result) in enumerate(new_results):
                _store(pso_name, swarm_size, benchmark_name,
                       dimensionality, iteration, experiment, new_result)
            diversity_table.commit()
            if verbose:
                print t.now(), '     - done.'
            return new_results[iteration]
        else:
            return existing_result
Exemplo n.º 8
0
def process(batch_num, num_batches, prep=False, verbose=False):
    all_pso_names = [
        'alternative_barebones_pso', 'barebones_pso', 'gbest_pso',
        'gc_gbest_pso', 'gc_lbest_pso', 'gc_von_neumann_pso', 'lbest_pso',
        'social_only_pso', 'von_neumann_pso'
    ]

    all_swarm_sizes = [25]

    all_benchmark_names = [
        'spherical',
        'rastrigin',
        'rosenbrock',
        'weierstrass',
        # ^^^ already done
        # vvv new
        # 'ackley',
        # 'alpine',
        # 'beale',
        # 'bohachevsky1_generalized',
        # 'eggholder',
        # 'goldstein_price',
        # 'griewank',
        # 'levy13_generalized',
        # 'michalewicz',
        # 'pathological',
        # 'quadric',
        # 'quartic',
        # 'salomon',
        # 'schwefel_2_22',
        # 'schwefel_2_26',
        # 'six_hump_camel_back',
        # 'skew_rastrigin',
        # 'step',
        # 'zakharov'
    ]
    # all_benchmark_names = benchmarks.all_names

    all_dimensionalities = [
        #2,  # <== for the benchmarks that are only defined in 2D
        5  # <== for the rest
    ]

    all_nums_iterations = [25, 50, 100, 200, 500, 1000, 2000, 10000]

    global _configs

    if prep:
        _make_prep_configs(all_pso_names, all_swarm_sizes, all_benchmark_names,
                           [5], [2000])
        # _make_prep_configs(
        #     all_pso_names, [25], all_benchmark_names, all_dimensionalities, [2000])
        # _make_prep_configs(all_pso_names, [25], all_benchmark_names, [
        #                    5], all_nums_iterations)
        # Configs for the ANTS2014 results
        # _make_prep_configs(
        #     all_pso_names, [25], all_benchmark_names, [25], [2000])

        # _make_prep_configs(
        #     all_pso_names, [25], all_benchmark_names, [5], [25, 50, 75, 100, 125, 150, 2000, 10000])

        num_configs = len(_prep_configs)
        batch_indices = range(batch_num, num_configs, num_batches)
        batch_size = len(batch_indices)

        for (i, index) in enumerate(batch_indices):
            prep_config = _prep_configs[index]
            print t.now(), 'Prep', i, 'of', batch_size, prep_config
            # diversities.get(*prep_config, verbose=verbose)
            drocs.get(*prep_config, verbose=verbose)
    else:
        # Configurations for comparing DRoC performance for different swarm sizes:
        # (with fixed 5D benchmarks and 2000 iterations per PSO)
        # _make_configs(all_pso_names, all_swarm_sizes,
        #               all_benchmark_names, [5], [2000])

        # Configurations for comparing DRoC performance at different dimensions:
        # (with fixed 25-particle swarms and 2000 iterations)
        # _make_configs(all_pso_names, [
        #               25], all_benchmark_names, all_dimensionalities, [2000])

        # Configurations for comparing DRoC performance at different numbers of iterations:
        # (with fixed 25-particle swarms and 5D benchmarks)
        _make_configs(all_pso_names, [25], all_benchmark_names, [5],
                      all_nums_iterations)

        # Configurations for the basic DRoC results from ANTS2014.
        # _make_configs(all_pso_names, [25], all_benchmark_names, [5], [2000])

        # Process all the configs (in batches as specified):
        num_configs = len(_configs)
        batch_indices = range(batch_num, num_configs, num_batches)
        batch_size = len(batch_indices)

        for (i, index) in enumerate(batch_indices):
            config = _configs[index]
            print t.now(), 'Rank', i, 'of', batch_size
            rank.get(*config, verbose=verbose)