Free cookie consent management tool by TermsFeed Policy Generator
wiki:Documentation/FAQ

Version 10 (modified by swagner, 13 years ago) (diff)

--

HeuristicLab FAQ

How to cite HeuristicLab?

If you find HeuristicLab useful and employ it to develop your own software or solve an interesting application problem, please share improvements or enhancements with us and the metaheuristic community (as per the GNU General Public License). In particular, if you publish any results derived from the use of HeuristicLab, we will be grateful, if you cite the following reference in your papers:

  • S. Wagner, Heuristic Optimization Software Systems - Modeling of Heuristic Optimization Algorithms in the HeuristicLab Software Environment, PhD Thesis, Institute for Formal Models and Verification, Johannes Kepler University Linz, Austria, 2009.

What's wrong, if controls are not correctly resized in the HeuristicLab Optimizer?

On some machines it might happen that controls are not correctly resized and the HeuristicLab GUI looks like this:

This behavior results from a bug in the GUI frameworks (either Windows Forms or the Dock Panel Suite) which occurs, if the Windows text size is set to a value larger than 100%. To avoid this bug, the Windows text size in the Windows display settings has to be set to 100%. This can be done in the dialog shown below which can be opened from the Windows Control Panel (Control Panel -> Appearance and Personalization -> Display).

What is the correct file format to import data-analysis problem data?

Your data file must be available in form of a table. HeuristicLab does not support sparse matrix formats as used for instance by libSVM. To import your data into HeuristicLab you must prepare your data file to follow a comma separated values format (CSV). On import HeuristicLab tries to guess which separator character is used. Allowed separator characters are ';', ',', 'Space' and 'Tab'. The values should be given as real-values and use a period ('.') as decimal separator. German users can also use the comma (',') character as decimal separator, but of course in this case ',' is not allowed as separator character (use either ';', 'Space' or 'TAB'). The first line of the CSV file can contain variable names.

Examples for valid HeuristicLab data-analysis files:

x01 x02 x03 y
1.0 2.0 3.0 0.0
0.0 1.0 2.0 1.0
...
x01 x02 x03 y
1,0 2,0 3,0 0,0
0,0 1,0 2,0 1,0
...

Attachments (4)

Download all attachments as: .zip