henri24 commited on
Commit
6ba9496
·
verified ·
1 Parent(s): f2e631d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -23
README.md CHANGED
@@ -1,28 +1,46 @@
1
- # Combined Combinatorial Optimization Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ## Overview
4
- This dataset is created for evaluating the effectiveness of Large Language Models (LLMs) on various combinatorial optimization problems. Each instance in the dataset represents a problem instance and includes all the necessary attributes to learn and evaluate problem solutions generated by Google's OR Tools.
5
-
6
- ## Problem Types and Attributes
7
- Each instance in the dataset is expected to have the following attributes:
8
- - **input**: The actual problem data (e.g., graph data for VRP, jobs and machines for JSSP, etc.).
9
- - **instruction**: A general description of the problem. This attribute contains problem-specific instructions or details (for example, the number of machines and jobs in a jssp problem). The description varies for each problem type.
10
- - **output_list_of_list**: Expected feasible solution provided as a list of lists.
11
- - **output_starjob**: Expected solution in a human-readable format. This includes detailed explanations such as how the makespan is calculated in JSSP or how the knapsack capacity is updated step by step.
12
-
13
- Additionally, instances are tagged with a specific **problem_type** (e.g., 'vrp', 'jssp', etc.) which may have additional attributes, depending on the specific requirements of the problem type. For example, instances where `problem_type` equals `'vrp'` might include extra attributes relevant only to Vehicle Routing Problems.
14
-
15
- ## Dataset Statistics
16
- - **Total Instances**: 150
17
-
18
- ### Instance Counts by Problem Type
19
- | Problem Type | Count |
20
- |--------------|-------|
21
- | jssp | 30 |
22
- | binpack | 30 |
23
- | vrp | 30 |
24
- | tsp | 30 |
25
- | knapsack | 30 |
 
 
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: