Planned intervention: On Wednesday April 3rd 05:30 UTC Zenodo will be unavailable for up to 2-10 minutes to perform a storage cluster upgrade.
Published May 27, 2018 | Version v1
Dataset Open

Results of Bet-and-Run Strategies with Different Decision Makers on the Traveling Salesman Problem and the Minimum Vertex Cover Problem

  • 1. Institute of Applied Optimization, Hefei University
  • 2. School of Computer Science, University of Adelaide

Description

Results of Bet-and-Run Strategies with Different Decision Makers on the Traveling Salesman Problem and the Minimum Vertex Cover Problem

1. Introduction

In this repository, we provide the implementation and results of an improved generic Bet-and-Run strategy for black-box optimization.
The goal our new Bet-and-Run method is to obtain the best possible results within a given time budget T using a given black-box optimization algorithm.
If no prior knowledge about problem features and algorithm behavior is available, the question about how to use the time budget most efficiently arises. We propose to first start n>=1 independent runs of the algorithm during an initialization budget T1<T, pausing these runs, then apply a decision maker D to choose 1<=m<n runs from them (consuming T2>=0 time units in doing so), and then continuing these runs for the remaining T3=T-T1-T2 time units.

In previous bet-and-run strategies, the decision maker currentBest would simply select the run with the best-so-far results at negligible time.
We propose using more advanced methods and test several different approaches, including neural networks trained or polynomials fitted on the current trace of the algorithm to predict which run may yield the best results if granted the remaining budget.
Applying this implementation to run "virtual experiments," one can find that this approach can yield better results than the previous methods, but also find that the `currentBest` method is a very reliable and robust baseline approach.

Here you can find the results of such experiments on the Traveling Salesman Problem and the Minimum Vertex Cover Problem. Both betAndRun_tsp.tar.xz  and betAndRun_vertex_cover.tar.xz are extracted in the scale of 30 GiB of size.

2. Copyright

The source code in this repository is under MIT License and is published in the most recent version at http://github.com/thomasWeise/betAndRun, while the results are under the Creative Commons Attribution 4.0 License.

The code on bet-and-run (mainly under cn.edu.hfuu.iao.betAndRun) is jointly developed by Dr. Thomas Weise (http://iao.hfuu.edu.cn), tweise@hfuu.edu.cn, tweise@gmx.de) and Dr. Markus Wagner (http://cs.adelaide.edu.au/~markus/, markus.wagner@adelaide.edu.au).

The jpack (http://github.com/marmakoide/jpack) code for Artificial Neural Networks, Linear Algebra, and Evolution Strategies (e.g., CMA-ES) has originally been developed by Dr. Alexandre Devert (http://www.marmakoide.org, marmakoide@hotmail.fr, and http://github.com/marmakoide), who kindly granted us the permission to include it in our repository. The code published here is a slightly modified version of his code, but the copyright and authorship remains entirely with Dr. Devert, who provides it under the MIT license at GitHub under http://github.com/marmakoide/jpack. Please contact Dr. Devert for any questions, in particular regarding licensing and (re-)distribution.

Files

Files (4.4 GB)

Name Size Download all
md5:f7dce0d6d9e07cca59049a1691c0bafc
698.5 kB Download
md5:10b5a0da2fee79dc3028559aada3bc26
1.4 GB Download
md5:5d11c5dc6848fec5d18511b865d61e36
3.0 GB Download

Additional details

Related works