SEVANTORY commited on
Commit
17dff87
·
verified ·
1 Parent(s): e528901

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -3
README.md CHANGED
@@ -1,3 +1,41 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # Datasets of ML4MOC
5
+
6
+ Presolved Data is stored in `.\instance`. The folder structure after the datasets are set up looks as follows
7
+
8
+ ```bash
9
+ instances/
10
+ MIPLIB/ -> 1065 instances
11
+ set_cover/ -> 3994 instances
12
+ independent_set/ -> 1604 instances
13
+ nn_verification/ -> 3104 instances
14
+ load_balancing/ -> 2286 instances
15
+ ```
16
+
17
+ ### Dataset Description
18
+
19
+ #### MIPLIB
20
+
21
+ Heterogeneous dataset from [MIPLIB 2017](https://miplib.zib.de/), a well-established benchmark for evaluating MILP solvers. The dataset includes a diverse set of particularly challenging mixed-integer programming (MIP) instances, each known for its computational difficulty.
22
+
23
+ #### Set Covering
24
+
25
+ This dataset consists of instances of the classic Set Covering Problem, which can be found [here](https://github.com/ds4dm/learn2branch/tree/master). Each instance requires finding the minimum number of sets that cover all elements in a universe. The problem is formulated as a MIP problem.
26
+
27
+ #### Maximum Independent Set
28
+
29
+ This dataset addresses the Maximum Independent Set Problem, which can be found [here](https://github.com/ds4dm/learn2branch/tree/master). Each instance is modeled as a MIP, with the objective of maximizing the size of the independent set.
30
+
31
+ #### NN Verification
32
+
33
+ This “Neural Network Verification” dataset is to verify whether a neural network is robust to input perturbations can be posed as a MIP. The MIP formulation is described in the paper [On the Effectiveness of Interval Bound Propagation for Training Verifiably Robust Models (Gowal et al., 2018)](https://arxiv.org/abs/1810.12715). Each input on which to verify the network gives rise to a different MIP.
34
+
35
+ #### Load Balancing
36
+
37
+ This dataset is from [NeurIPS 2021 Competition](https://github.com/ds4dm/ml4co-competition). This problem deals with apportioning workloads. The apportionment is required to be robust to any worker’s failure. Each instance problem is modeled as a MILP, using a bin-packing with an apportionment formulation.
38
+
39
+ ### Dataset Spliting
40
+
41
+ Each dataset was split into a training set $D_{\text{train}}$ and a testing set $D_{\text{test}}$, following an approximate 80-20 split. Moreover, we split the dataset by time and "optimality", which means according to the proportion of optimality for each parameter is similar in training and testing sets. This ensures a balanced representation of both temporal variations and the highest levels of parameter efficiency in our data partitions.