-
Notifications
You must be signed in to change notification settings - Fork 33
Nurserostering benchmark #789
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
IgnaceBleukx
wants to merge
11
commits into
master
Choose a base branch
from
nurserostering_benchmark
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9a3d364
start of nr benchmark
IgnaceBleukx 3cf21d9
finish model
IgnaceBleukx bd62b88
print data
IgnaceBleukx 13f0953
set to smallest instance
IgnaceBleukx 0fab7bd
better import error message
IgnaceBleukx 2b85268
style
IgnaceBleukx 51004fb
update comment
IgnaceBleukx 60343fb
add assert
IgnaceBleukx 2008798
argmax to find first occ of employee id
IgnaceBleukx 3644cbf
don't run nurserostering example on CI
IgnaceBleukx 3b51a7a
raise import error
IgnaceBleukx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,292 @@ | ||
| """ | ||
| PyTorch-style Dataset for Nurserostering instances from schedulingbenchmarks.org | ||
|
|
||
| Simply create a dataset instance and start iterating over its contents: | ||
| The `metadata` contains usefull information about the current problem instance. | ||
| """ | ||
| import copy | ||
| import pathlib | ||
| from io import StringIO | ||
| from os.path import join | ||
| from typing import Tuple, Any | ||
| from urllib.request import urlretrieve | ||
| from urllib.error import HTTPError, URLError | ||
| import zipfile | ||
| import pandas as pd | ||
|
|
||
| try: | ||
| from faker import Faker | ||
| except ImportError as e: | ||
| print("Install `faker` package using `pip install faker`") | ||
| raise e | ||
| try: | ||
| from natsort import natsorted | ||
| except ImportError as e: | ||
| print("Install `natsort` package using `pip install natsort`") | ||
| raise e | ||
|
|
||
| pd.set_option('display.max_columns', 500) | ||
| pd.set_option('display.width', 5000) | ||
|
|
||
| import cpmpy as cp | ||
|
|
||
| class NurseRosteringDataset(object): # torch.utils.data.Dataset compatible | ||
|
|
||
| """ | ||
| Nurserostering Dataset in a PyTorch compatible format. | ||
|
|
||
| Arguments: | ||
| root (str): Root directory containing the nurserostering instances (if 'download', instances will be downloaded to this location) | ||
| transform (callable, optional): Optional transform to be applied on the instance data | ||
| target_transform (callable, optional): Optional transform to be applied on the file path | ||
| download (bool): If True, downloads the dataset from the internet and puts it in `root` directory | ||
| """ | ||
|
|
||
| def __init__(self, root: str = ".", transform=None, target_transform=None, download: bool = False): | ||
| """ | ||
| Initialize the Nurserostering Dataset. | ||
| """ | ||
|
|
||
| self.root = pathlib.Path(root) | ||
| self.instance_dir = pathlib.Path(join(self.root, "nurserostering")) | ||
| self.transform = transform | ||
| self.target_transform = target_transform | ||
|
|
||
| # Create root directory if it doesn't exist | ||
| self.root.mkdir(parents=True, exist_ok=True) | ||
|
|
||
| if not self.instance_dir.exists(): | ||
| if not download: | ||
| raise ValueError(f"Dataset not found in local file system. Please set download=True to download the dataset.") | ||
| else: | ||
| url = f"https://schedulingbenchmarks.org/nrp/data/instances1_24.zip" # download full repo... | ||
| zip_path = pathlib.Path(join(root,"jsplib-master.zip")) | ||
|
|
||
| print(f"Downloading Nurserostering instances from schedulingbenchmarks.org") | ||
|
|
||
| try: | ||
| urlretrieve(url, str(zip_path)) | ||
| except (HTTPError, URLError) as e: | ||
| raise ValueError(f"No dataset available on {url}. Error: {str(e)}") | ||
|
|
||
| # make directory and extract files | ||
| with zipfile.ZipFile(zip_path, 'r') as zip_ref: | ||
| self.instance_dir.mkdir(parents=True, exist_ok=True) | ||
|
|
||
| # Extract files | ||
| for file_info in zip_ref.infolist(): | ||
| filename = pathlib.Path(file_info.filename).name | ||
| with zip_ref.open(file_info) as source, open(self.instance_dir / filename, 'wb') as target: | ||
| target.write(source.read()) | ||
|
|
||
| # Clean up the zip file | ||
| zip_path.unlink() | ||
|
|
||
|
|
||
| def __len__(self) -> int: | ||
| """Return the total number of instances.""" | ||
| return len(list(self.instance_dir.glob("*.txt"))) | ||
|
|
||
| def __getitem__(self, index: int) -> Tuple[Any, Any]: | ||
| """ | ||
| Get a single Nurserostering instance filename and metadata. | ||
|
|
||
| Args: | ||
| index (int): Index of the instance to retrieve | ||
|
|
||
| Returns: | ||
| Tuple[Any, Any]: A tuple containing: | ||
| - The filename of the instance | ||
| - Metadata dictionary with file name, track, year etc. | ||
| """ | ||
| if isinstance(index, int) and not (0 <= index < len(self)): | ||
| raise IndexError("Index out of range") | ||
|
|
||
| # Get all instance files and sort for deterministic behavior | ||
| files = natsorted(list(self.instance_dir.glob("*.txt"))) # use .txt files instead of xml files | ||
| file_path = files[index] | ||
|
|
||
| filename = str(file_path) | ||
| if self.transform: | ||
| # user might want to process the filename to something else | ||
| filename = self.transform(filename) | ||
|
|
||
| metadata = dict(name=file_path.stem) | ||
|
|
||
| if self.target_transform: | ||
| metadata = self.target_transform(metadata) | ||
|
|
||
| return filename, metadata | ||
|
|
||
|
|
||
| import re | ||
| def _tag_to_data(string, tag, skip_lines=0, datatype=pd.DataFrame, *args, **kwargs): | ||
|
|
||
| regex = rf'{tag}[\s\S]*?($|(?=\n\s*\n))' | ||
| match = re.search(regex, string) | ||
|
|
||
| data = "\n".join(match.group().split("\n")[skip_lines+1:]) | ||
| if datatype == pd.DataFrame: | ||
| kwargs = {"header":0, "index_col":0} | kwargs | ||
| df = pd.read_csv(StringIO(data), *args, **kwargs) | ||
| return df.rename(columns=lambda x: x.replace("#","").strip()) | ||
| return datatype(data, *args, **kwargs) | ||
|
|
||
| def parse_scheduling_period(fname): | ||
| fake = Faker() | ||
| fake.seed_instance(0) | ||
|
|
||
| with open(fname, "r") as f: | ||
| string = f.read() | ||
|
|
||
|
|
||
| horizon = _tag_to_data(string, "SECTION_HORIZON", skip_lines=2, datatype=int) | ||
| shifts = _tag_to_data(string, "SECTION_SHIFTS", names=["ShiftID", "Length", "cannot follow"], | ||
| dtype={'ShiftID':str, 'Length':int, 'cannot follow':str}) | ||
| shifts.fillna("", inplace=True) | ||
| shifts["cannot follow"] = shifts["cannot follow"].apply(lambda val : [v.strip() for v in val.split("|") if len(v.strip())]) | ||
|
|
||
| staff = _tag_to_data(string, "SECTION_STAFF", index_col=False) | ||
| maxes = staff["MaxShifts"].str.split("|", expand=True) | ||
| for col in maxes: | ||
| shift_id = maxes[col].iloc[0].split("=")[0] | ||
| column = maxes[col].apply(lambda x : x.split("=")[1]) | ||
| staff[f"max_shifts_{shift_id}"] = column.astype(int) | ||
|
|
||
| staff["name"] = [fake.unique.first_name() for _ in staff.index] | ||
|
|
||
| days_off = _tag_to_data(string, "SECTION_DAYS_OFF", datatype=str) | ||
| # process string to be EmployeeID, Day off for each line | ||
| rows = [] | ||
| for line in days_off.split("\n")[1:]: | ||
| employee_id , *days = line.split(",") | ||
| rows += [dict(EmployeeID=employee_id, DayIndex= int(d)) for d in days] | ||
| days_off = pd.DataFrame(rows) | ||
|
|
||
|
|
||
| shift_on = _tag_to_data(string, "SECTION_SHIFT_ON_REQUESTS", index_col=False) | ||
| shift_off = _tag_to_data(string, "SECTION_SHIFT_OFF_REQUESTS", index_col=False) | ||
| cover = _tag_to_data(string, "SECTION_COVER", index_col=False) | ||
|
|
||
| return dict(horizon=horizon, shifts=shifts, staff=staff, days_off=days_off, shift_on=shift_on, shift_off=shift_off, cover=cover) | ||
|
|
||
|
|
||
| def nurserostering_model(horizon, shifts:pd.DataFrame, staff, days_off, shift_on, shift_off, cover): | ||
|
|
||
| n_nurses = len(staff) | ||
|
|
||
| FREE = 0 | ||
| SHIFTS = ["F"] + list(shifts.index) | ||
|
|
||
| nurse_view = cp.intvar(0,len(shifts), shape=(n_nurses, horizon), name="nv") | ||
|
|
||
| model = cp.Model() | ||
|
|
||
| # Shifts which cannot follow the shift on the previous day. | ||
| for id, shift in shifts.iterrows(): | ||
| for other_shift in shift['cannot follow']: | ||
| model += (nurse_view[:,:-1] == SHIFTS.index(id)).implies(nurse_view[:,1:] != SHIFTS.index(other_shift)) | ||
|
|
||
| # Maximum number of shifts of each type that can be assigned to each employee. | ||
| for i, nurse in staff.iterrows(): | ||
| for shift_id, shift in shifts.iterrows(): | ||
| max_shifts = nurse[f"max_shifts_{shift_id}"] | ||
| model += cp.Count(nurse_view[i], SHIFTS.index(shift_id)) <= max_shifts | ||
|
|
||
| # Minimum and maximum amount of total time in minutes that can be assigned to each employee. | ||
| shift_length = cp.cpm_array([0] + shifts['Length'].tolist()) # FREE = length 0 | ||
| for i, nurse in staff.iterrows(): | ||
| time_worked = cp.sum(shift_length[nurse_view[i,d]] for d in range(horizon)) | ||
| model += time_worked <= nurse['MaxTotalMinutes'] | ||
| model += time_worked >= nurse['MinTotalMinutes'] | ||
|
|
||
| # Maximum number of consecutive shifts that can be worked before having a day off. | ||
| for i, nurse in staff.iterrows(): | ||
| max_days = nurse['MaxConsecutiveShifts'] | ||
| for d in range(horizon - max_days): | ||
| window = nurse_view[i,d:d+max_days+1] | ||
| model += cp.Count(window, FREE) >= 1 # at least one holiday in this window | ||
|
|
||
| # Minimum number of concecutive shifts that must be worked before having a day off. | ||
| for i, nurse in staff.iterrows(): | ||
| min_days = nurse['MinConsecutiveShifts'] | ||
| for d in range(1,horizon): | ||
| is_start_of_working_period = (nurse_view[i, d-1] == FREE) & (nurse_view[i, d] != FREE) | ||
| model += is_start_of_working_period.implies(cp.all(nurse_view[i,d:d+min_days] != FREE)) | ||
|
|
||
| # Minimum number of concecutive days off. | ||
| for i, nurse in staff.iterrows(): | ||
| min_days = nurse['MinConsecutiveDaysOff'] | ||
| for d in range(1,horizon): | ||
| is_start_of_free_period = (nurse_view[i, d - 1] != FREE) & (nurse_view[i, d] == FREE) | ||
| model += is_start_of_free_period.implies(cp.all(nurse_view[i, d:d + min_days] == FREE)) | ||
|
|
||
| # Max number of working weekends for each nurse | ||
| weekends = [(i - 1, i) for i in range(1,horizon) if (i + 1) % 7 == 0] | ||
| for i, nurse in staff.iterrows(): | ||
| n_weekends = cp.sum((nurse_view[i,sat] != FREE) | (nurse_view[i,sun] != FREE) for sat,sun in weekends) | ||
| model += n_weekends <= nurse['MaxWeekends'] | ||
|
|
||
| # Days off | ||
| for _, holiday in days_off.iterrows(): # could also do this vectorized... TODO? | ||
| i = (staff['ID'] == holiday['EmployeeID']).argmax() # index of employee | ||
| model += nurse_view[i,holiday['DayIndex']] == FREE | ||
|
|
||
| # Shift requests, encode in linear objective | ||
| objective = 0 | ||
| for _, request in shift_on.iterrows(): | ||
| i = (staff['ID'] == request['EmployeeID']).argmax() # index of employee | ||
| cpm_request = nurse_view[i, request['Day']] == SHIFTS.index(request['ShiftID']) | ||
| objective += request['Weight'] * ~cpm_request | ||
|
|
||
| # Shift off requests, encode in linear objective | ||
| for _, request in shift_off.iterrows(): | ||
| i = (staff['ID'] == request['EmployeeID']).argmax() # index of employee | ||
| cpm_request = nurse_view[i, request['Day']] != SHIFTS.index(request['ShiftID']) | ||
| objective += request['Weight'] * ~cpm_request | ||
|
|
||
| # Cover constraints, encode in objective with slack variables | ||
| for _, cover_request in cover.iterrows(): | ||
| nb_nurses = cp.Count(nurse_view[:, cover_request['Day']], SHIFTS.index(cover_request['ShiftID'])) | ||
| slack_over, slack_under = cp.intvar(0, len(staff), shape=2) | ||
| model += nb_nurses - slack_over + slack_under == cover_request["Requirement"] | ||
|
|
||
| objective += cover_request["Weight for over"] * slack_over + cover_request["Weight for under"] * slack_under | ||
|
|
||
| model.minimize(objective) | ||
|
|
||
| return model, nurse_view | ||
|
|
||
| if __name__ == "__main__": | ||
|
|
||
| dataset = NurseRosteringDataset(root=".", download=True, transform=parse_scheduling_period) | ||
| print("Dataset size:", len(dataset)) | ||
| data, metadata = dataset[0] | ||
|
|
||
| for key, value in data.items(): | ||
| print(key,":") | ||
| print(value) | ||
|
|
||
| model, nurse_view = nurserostering_model(**data) | ||
| assert model.solve() | ||
IgnaceBleukx marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| print(f"Found optimal solution with penalty of {model.objective_value()}") | ||
| assert model.objective_value() == 607 # optimal solution for the first instance | ||
|
|
||
| # pretty print solution | ||
| names = ["-"] + data['shifts'].index.tolist() | ||
| sol = nurse_view.value() | ||
| df = pd.DataFrame(sol, index=data['staff'].name).map(names.__getitem__) | ||
|
|
||
| for shift, _ in data['shifts'].iterrows(): | ||
| df.loc[f'Cover {shift}'] = "" | ||
|
|
||
| for _, cover_request in data['cover'].iterrows(): | ||
| shift = cover_request['ShiftID'] | ||
| num_shifts = sum(df[cover_request['Day']] == shift) | ||
| df.loc[f"Cover {shift}",cover_request['Day']] = f"{num_shifts}/{cover_request['Requirement']}" | ||
|
|
||
| days = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"] | ||
| df.columns = [days[(int(col)) % 7] for col in df.columns] | ||
|
|
||
| print(df.to_markdown()) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.