UAI 2016 Inference EvaluationResult File FormatThe first line must contain only the task solved: PR|MPE|MAR|MMAP. The rest of the file will contain the solution for the task. Solvers can write more then one solution by writing -BEGIN- at the head of the new solution. We will only consider the last solution in the file. In the example below the task we choose is PR. We have two solutions. The format of the <SOLUTION> part will be described below. PR <SOLUTION> -BEGIN- <SOLUTION> The solution format are as follows depending on the task
-0.2008
For example, an input model with 3 binary variables may have a solution line: 3 0 1 0
For example, a model with 3 variables, with cardinalities of 2, 2, 3 respectively. The solution might look like this: 3 2 0.1 0.9 2 0.3 0.7 3 0.2 0.2 0.6
For example, if the solution is an assignment of 0, 1 and 0 to three query variables indexed by 2 3 and 4 respectively, the solution will look as follows 3 2 0 3 1 4 0 If a solver does not produce a solution by the given time, it would be considered as having failed on the instance. |