Datasets:
Tasks:
Other
Formats:
json
Languages:
English
Size:
< 1K
Tags:
reasoning-datasets-competition
combinatorial optimization
LLM evaluation
google OR tools
test dataset
optimization
License:
Update README.md
Browse files
README.md
CHANGED
@@ -1,28 +1,46 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
## Overview
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
- **
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
26 |
|
27 |
## Attribute Details
|
28 |
Below are the attributes extracted from the first instance along with their inferred data types. Note that the dataset may contain additional problem-specific attributes that vary by problem type:
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- "en"
|
4 |
+
pretty_name: "LLM Combinatorial Optimization Test Dataset"
|
5 |
+
tags:
|
6 |
+
- "reasoning-datasets-competition"
|
7 |
+
- "combinatorial optimization"
|
8 |
+
- "LLM evaluation"
|
9 |
+
- "google OR tools"
|
10 |
+
- "test dataset"
|
11 |
+
- "optimization"
|
12 |
+
license: "mit"
|
13 |
+
task_categories:
|
14 |
+
- "other"
|
15 |
+
---
|
16 |
+
|
17 |
+
# LLM Combinatorial Optimization Test Dataset
|
18 |
|
19 |
## Overview
|
20 |
+
|
21 |
+
This dataset is created for evaluating the effectiveness of Large Language Models (LLMs) in solving various combinatorial optimization problems. The dataset was generated by combining multiple JSON files containing problem instances from different problem domains. Each instance represents a distinct optimization problem along with its associated solution outputs generated using Google's OR Tools.
|
22 |
+
|
23 |
+
## Structure and Attributes
|
24 |
+
|
25 |
+
Each instance in this dataset is a JSON object that contains some common attributes along with problem-specific details. The common attributes present in every instance include:
|
26 |
+
|
27 |
+
- **input**:
|
28 |
+
The actual problem data. This attribute represents the raw input needed to describe the optimization problem (e.g., graph information for vehicle routing, job and machine details for job-shop scheduling, etc.).
|
29 |
+
|
30 |
+
- **instruction**:
|
31 |
+
A natural language description of the problem. This attribute captures the general instructions and details (such as number of machines and jobs in a job-shop scheduling problem) that vary for each problem type.
|
32 |
+
|
33 |
+
- **output_list_of_list**:
|
34 |
+
Expected feasible solution represented as a list of lists. This format outlines a structured solution, potentially describing paths, schedules, or allocations.
|
35 |
+
|
36 |
+
- **output_starjob**:
|
37 |
+
A human-readable solution format that includes detailed solution steps. This output explains function calculations and other intermediary steps (for example, how the makespan is computed in a job-shop scheduling problem, or how adjustments are made in knapsack problems).
|
38 |
+
|
39 |
+
In addition to these, each instance has the attribute **problem_type**, which indicates the specific category of the combinatorial optimization problem (such as "vrp", "jssp", etc.). Depending on the problem type, instances may also include extra problem-specific attributes that are unique to that type.
|
40 |
+
|
41 |
+
For example:
|
42 |
+
- **Instances with `problem_type`: "vrp"** might contain additional spatial or routing parameters.
|
43 |
+
- **Instances with `problem_type`: "jssp"** include details about the number of machines and jobs, which are also reflected in the `instruction` attribute.
|
44 |
|
45 |
## Attribute Details
|
46 |
Below are the attributes extracted from the first instance along with their inferred data types. Note that the dataset may contain additional problem-specific attributes that vary by problem type:
|