Hackathon 2020 at baobab soluciones
Project description
hackathon baobab 2020
We want to schedule all jobs by deciding when and in which mode to execute each job. There are precedence relationships between pairs of jobs. There are two types of resources. Renewable resources (R) are consumed each period and have an availability that is recovered each period of time. Non-renewable resources (N) are consumed once per job and have an availability for the whole planning horizon. The objective is to reduce the finishing time (start time + duration) of the last job.
As an example the following image shows the input data (left), and the optimal solution (center: gantt, resource usage: right) for the instance c159_7.mm:
The instances for the problem are found here:
http://www.om-db.wi.tum.de/psplib/getdata_mm.html
On the data directory of this repository we have copied the smallest instances.
For the format of the solution, since there is no example that we know of, we'll be using the one in data/solutions/c15mm/c1564_9.output.json
Below are the instructions to use the helper functions and checker (they are optional).
To understand the format of the input data file, you can check how we parse it in python in the function Instance.from_mm(path) in the filehackathonbaobab2020/core/instance.py
Installation
python>=3.5 is needed. I'm assuming a Windows installation.
To install from source:
cd hackathonbaobab2020
python -m venv venv
venv/Scripts/activate
pip install -r requirements.txt
Alternatively, it's possible to install it as a pypi package. Here there is more control on which packages are installed.
Install only the core dependencies (core, schemas, default solver)::
pip install hackathonbaobab2020
Install all dependencies ('benchmark' to generate graphs, 'solvers' to install solver dependencies). The second line installs (in Ubuntu) the cbc solver::
pip install hackathonbaobab2020[benchmark,solvers]
sudo apt install coinor-cbc
How to add a new solver
These are the steps to add a solver and make it compatible with the command line and the python functions:
- Add a file inside the
hackathonbaobab2020/solverdirectory with a subclass ofhackathonbaobab2020.core.experiment.Experimentthat implements, at least, thesolve()method with the same argument names. - Your
solvemethod needs to return an integer with the status of the solving process. Current values are{4: "Optimal", 2: "Feasible", 3: "Infeasible", 0: "Unknown"}. - Your
solvemethod also needs to store the best solution found inself.solution. It needs to be an instance of theSolutionobject. - Edit the
hackathonbaobab2020/solver/__init__.pyto import your solver and edit thesolversdictionary by giving your solver a name. - If the
requirements.txtfile is missing some package you need for your solver, add it to the list undersolvers. Also edit thesetup.pyand add the dependency onsolverswithin theextras_requiredictionary.
Additional considerations:
- One way to see if the solver is correctly integrated is to test solving with it via the command line (see below).
- Everything that your solver needs should be inside the
hackathonbaobab2020/solverdirectory (you can put more than one file). Do not edit the files outside thesolverdirectories with code from your solver!
How to run tests
These tests are run also in github and test some small example problems with a timelimit of 120 s (check the options dictionary).
python tests/tests.py
Command line
The command line app has three main ways to use it.
To execute instances
To get all possible commands just run:
python hackathonbaobab2020/main.py solve-scenarios --help
The following assumes you have downloaded the zip j30.mm.zip of input instances, and you have stored it in the data directory. It solves instance j301_1.mm with the solver that is in hackathonbaobab2020/solver/algorithm1 named default in hackathonbaobab2020/solver/__init__.py.
python hackathonbaobab2020/main.py solve-scenarios --directory=data --scenario=j30.mm.zip --solver=default --instance=j3010_1.mm --no-test
You can also solve multiple scenarios or multiple instances by passing the --instances and --scenarios arguments. Just be careful with the string format:
python hackathonbaobab2020/main.py solve-scenarios --directory=data --scenarios='["c15.mm.zip", "c21.mm.zip", "j10.mm.zip", "j30.mm.zip", "m1.mm.zip", "m5.mm.zip", "n0.mm.zip", "n1.mm.zip", "n3.mm.zip", "r1.mm.zip", "r4.mm.zip", "r5.mm.zip"]' --solver=default
With the option argument, a json with the solving configuration is passed:
python hackathonbaobab2020/main.py solve-scenarios --directory=data --scenario=j30.mm.zip --solver=brute_EJ --instance=j3010_1.mm --no-test --options='{"DEBUG": 1, "timeLimit": 120}'
Finally, if you pass the zip option you create a nice little zip at the end.
The output format is always the same:
solver_name/scenario_name/instance_name/(input.json, output.json, options.json)
The options.json file contains some information from the solver such as the time it took to solve, the status (Optimal, Feasible, Infeasible, etc.), the name of the solver, etc.
To get statistics from a solution
You first need to have a zip with the results you want to get statistics from. For this, the easiest is to pass the zip option to the solve-scenarios function above.
Then you do something like:
python hackathonbaobab2020/main.py export-table --path=data/default.zip --path_out=data_default.csv
This generates a table in a csv with several columns: scenario, name (instance), objective (function value), solver, (solving) time, (number of) errors (in the solution).
To easily read the contents you can do:
import pandas as pd
df = pd.read_csv('data_default.csv')
print(df.head().to_markdown())
Which should print something like this:
| scenario | name | objective | solver | time | errors | |
|---|---|---|---|---|---|---|
| 0 | n3.mm | n311_1.mm | 44 | default | 0.000282581 | 1 |
| 1 | n0.mm | n013_7.mm | 35 | default | 0.000227326 | 0 |
| 2 | r4.mm | r452_6.mm | 46 | default | 0.00025893 | 1 |
| 3 | n3.mm | n343_4.mm | 37 | default | 0.000268723 | 1 |
| 4 | n1.mm | n121_4.mm | 55 | default | 0.000254337 | 0 |
Benchmarking solvers
In hackathonbaobab2020/execution/benchmark.py there are functions to automate the comparison of solvers. Function solve_all() executes a set of random instances. They require previously downloading the corresponding zips from the dataset site. Function compare produce a summary table based on the results. Finally, graphs use the generated table to produce graphs of the results.
Example of a resulting graph:
Using python objects
We use the following helper objects:
Instanceto represent input data.Solutionto represent a solution.Experimentto represent input data+solution.Algorithm(Experiment)to represent a resolution approach.
An example of the last one (4) is found in hackathonbaobab2020/solver/algorithm1.py. It schedules one job at a time while respecting the sequence. It passes all tests except the non-renewables, sometimes.
There are helper functions to read and write an instance and a solution to/from a file.
A small example of how to use the existing code is available in hackathonbaobab2020/execution/test_script.py.
Below an example:
from hackathonbaobab2020.core import Instance
from hackathonbaobab2020.solver import get_solver
# get mm file
path = "data/c15.mm/c154_3.mm"
# initialize an instance object
instance = Instance.from_mm(path)
# get the default solver (in solver/algorithm1.py)
solver = get_solver('default')
# initialize the solver with the instance
exp = solver(instance=instance)
# solve the instance using the solver
exp.solve({})
# The next functions do not depend on the solver and should not be overwritten:
# print the possible errors on the solution obtained from the solver
print(exp.check_solution())
# print the objective function of the solution
print(exp.get_objective())
# produce a gantt chart of the job's schedule, with a color per mode.
exp.graph()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hackathonbaobab2020-1.0.4.tar.gz.
File metadata
- Download URL: hackathonbaobab2020-1.0.4.tar.gz
- Upload date:
- Size: 50.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98ee173fe2687454cc257de4798d6c175afed75869722d925be65b22d150a652
|
|
| MD5 |
0724a89ae6170a53d49c42ab68e332c7
|
|
| BLAKE2b-256 |
c6ac05a1762a6e3ecc8628e86e4fa35f4d1b6c7ad1660679789d1455c24e9954
|
File details
Details for the file hackathonbaobab2020-1.0.4-py3-none-any.whl.
File metadata
- Download URL: hackathonbaobab2020-1.0.4-py3-none-any.whl
- Upload date:
- Size: 63.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9897f87ddc4a144e67b0fe5220cee15421bd5232a61276b10ad98d7afcb1cc1
|
|
| MD5 |
6ddbb2d09e7dfc95fc42bdc5b006ac99
|
|
| BLAKE2b-256 |
60f07f22c184acb4ed26d0f37abddc0c32fc6d7d5721aa09c51c63803a91f872
|