Home Machine Learning Simulation Optimization: Serving to My Buddy Mannequin and Optimize His Firm’s Assist Desk | by Maxwell Wulff | Dec, 2023

Simulation Optimization: Serving to My Buddy Mannequin and Optimize His Firm’s Assist Desk | by Maxwell Wulff | Dec, 2023

0
Simulation Optimization: Serving to My Buddy Mannequin and Optimize His Firm’s Assist Desk | by Maxwell Wulff | Dec, 2023

[ad_1]

Throughout a highway journey we mentioned how this device was attention-grabbing however not essentially helpful. My buddy might plug in numbers and see what occurred, however that didn’t assist make staffing selections any simpler, because it was mainly educated trial and error. What can be extra useful was a system the place you could possibly set a goal SLA for all through the day and the system would provide the finest agent schedule to match that focus on, given variable incoming name parameters and agent deal with occasions. That may be a third nice pillar of OR: optimization.

The difficulty was that with optimization you wanted a system to optimize, and we had a simulation. Nevertheless, it dawned on me that there was no cause we couldn’t use the simulation as the target perform for an optimization downside. It takes a set of inputs, and with sufficient runs of the simulation, provides you a assured output. Fortunately, 30 years in the past researchers had the identical thought and have been learning the sector of Simulation Optimization ever since. These good folks had completed all of the onerous work for me. [3, 4]

So, once more, I started working. Now the core of Simulation Optimization is making a set of inputs, working it in your simulation, and selecting the subsequent set of inputs in an clever method till you attain your goal. My optimization downside regarded one thing like this:

My goal is to construct a schedule. Schedules are made out of shifts. Shifts are set occasions all through the simulation “day” (say 9am — 5pm, 10am — 4pm) throughout which an agent can work. A schedule is the set of all shifts, with what number of brokers are engaged on every shift. A superb schedule is one which retains the SLA hovering proper across the goal and minimizes the full variety of employee hours (variety of staff * size of their shifts). Sure shifts have a cap with how many individuals can work (ex. solely 10 folks can work the half day morning shift) and every shift has a sure break schedule. The SLA ought to by no means cross a tough ceiling above the goal (ex. our goal is an SLA of three min however nobody ought to ever wait greater than 10 min).

I arrange the framework so all of those constraints had been accounted for, and now I used to be able to optimize. Some issues talked about in Simulation Optimization analysis are troublesome as a result of their simulations are black bins, that means you don’t get any helpful alerts in addition to the simulation reply. Fortunately, this simulation is completely different. We’re measuring the time-in-queue all through the simulation “day” so we are able to see how sure shifts do as compared to one another.

For instance, if the morning shift has extra brokers than the late shift however the late shift has extra incoming calls, we’ll possible see that the late shift is extra off track than the morning shift. In our subsequent try we must always in all probability enhance the variety of folks on the late shift.

It’s not so simple as this — with difficult overlapping shifts and different parameters there will likely be interdependency, however we are able to plug any schedule into the simulation and see what occurs.

These alerts that we get from the simulation led me to a transparent technique, gradients.

Gradient Primarily based Search might be understood as a ball rolling down a hill, the place with each step you are attempting to get the ball to a decrease state till it reaches the underside. That is difficult by the truth that it isn’t a fair hill. There will likely be false bottoms the place any route you decide goes again up the hill, however the true backside requires you to start out rolling from a distinct location. In observe, we’ll by no means know if we now have reached the true backside, however there are good methods to ensure we do sufficient checks to know that we’re fairly shut. In our case the ball is a schedule, and the underside of the hill is the right line the place all incoming calls watch for precisely the goal SLA.

Generated by DreamStudio.

So, what’s the most pure gradient step? Take the worst schedule (the one on common farthest away from the goal) and add an agent to the shift if the common is above your goal, or take away an agent if the common is under the goal. In case you are caught the place all shift modifications make the schedule worse however the SLA is just not near the goal, return to a beforehand good schedule and begin from there once more. I attempted different strategies of selecting a subsequent schedule however this was probably the most constant. How are you aware when to cease? Set a tolerance to say that if each shift is on common lower than 30 seconds (for instance) from the goal, think about this solved. Cease if too many steps have been taken, and decide the most effective schedule from those simulated.

Choosing the subsequent schedule. Diagram by creator.

In a perfect world we’d run this program endlessly, attempting each single schedule till we discover the most effective, however we wanted this program to choose a schedule in underneath 5 min. Essentially the most attention-grabbing a part of this undertaking was testing optimization algorithms to search out the one that may get a superb answer the quickest.

The answer with the most effective outcomes used the truth that you’ll be able to management the variety of occasions you run a simulation, the commerce off being that the less occasions you run a simulation, the much less assured you might be in its outcomes. Right here’s what I discovered to work:

Begin off with fewer simulations when starting to run the optimization algorithm, and because the goal approaches, enhance the quantity. This works as a result of to start with many shift modifications will put the schedule within the route of the target, so it’s not as essential to be as assured within the route you selected. As a superb answer inches nearer, it issues extra the place the schedule goes. Mix this with layered runs all ranging from the identical null level to make sure a wider breadth of explored options.

What’s nice about this strategy is that I’m able to management how lengthy the algorithm runs. I can see how lengthy simulation runs take, and regulate the variety of iterations accordingly, I may decide what number of occasions I start from the beginning spot. Each machine you run this algorithm on will function just a little in a different way, and constant algorithm run time is of paramount significance to ensure this undertaking is helpful in the true world.

Outcomes of an optimization run. Diagram by creator.
#schedule is {(start_time, end_time): num_agents}

{'Schedule':
{(0, 540): 5,
(30, 570): 2,
(60, 600): 1,
(90, 630): 1,
(120, 660): 4,
(150, 690): 1,
(180, 720): 0,
(210, 750): 1,
(240, 780): 18,
(0, 660): 0,
(30, 690): 0,
(60, 720): 0,
(90, 750): 0,
(120, 780): 3}
'Common Wait': 0.5738814985851588
'Employee Models': 660.0
'Worst Shift Time In Queue, Relative to Goal': 0.5965600329117189}

[ad_2]