Unlocking the Power of Integer Programming

Florian Wilhelm
Unlocking the Power of
Integer Programming
Data Analytics & Science
Mathematical Modelling
Modern Data Warehousing & Analytics
Personalisation & RecSys
Uncertainty Quantification & Causality
Python Data Stack
OSS Contributor & Creator of PyScaffold
Dr. Florian Wilhelm
• HEAD OF DATA SCIENCE
FlorianWilhelm.info
florian.wilhelm@inovex.de
FlorianWilhelm
@FlorianWilhelm
2
‣ Application Development (Web Platforms, Mobile
Apps, Smart Devices and Robotics, UI/UX design,
Backend Services)
‣ Data Management and Analytics (Business
Intelligence, Big Data, Searches, Data Science
and Deep Learning, Machine Perception and
Artificial Intelligence)
‣ Scalable IT-Infrastructures (IT Engineering, Cloud
Services, DevOps, Replatforming, Security)
‣ Training and Coaching (inovex Academy)
is an innovation and quality-driven
IT project house with a focus on
digital transformation.
Using technology to
inspire our clients.
And ourselves.
Berlin · Karlsruhe · Pforzheim · Stuttgart · München · Köln · Hamburg · Erlangen
www.inovex.de
3
Definition:
The objective of Operations Research (OR) is the
development and use of mathematical methods to support
decision-making processes in domains such as
manufacturing or finance.
Operations Research
Introduction
4
● Assignment/Allocation Problem
How to schedule some talks in an agenda under some
constraints like room sizes to optimize the conference
experience?
● Transportation Problem
Which supplier should deliver to which factories given some
costs to satisfy each factory with minimal costs?
● Shortest Path Problem
Given some graph with a cost on each edge, what is the
shortest path from source to sink?
● Maximum Flow Problem
Given some pipe system with a source and sink, what is the
maximum flow through the system?
Common Problem Classes in Operations Research
Introduction
5
Definition of Linear Programming (LP)
Introduction
6
LPs can be solved with the Simplex algorithm in cubic on average
but exponential number of steps in worst case scenario or interior
point methods in about .
Definition of Mixed Integer Programming (MIP)
Introduction
7
MIPs are NP-hard, i.e. complexity grows exponentially with n
Dropping the integrality constraints, i.e. "linear relaxation", leads to
an LP problem.
If all variables need to be integer, it is a (pure)
integer linear program (ILP, IP).
If all variables need to be 0 or 1 (binary, boolean), it is a
0 - 1 linear program.
Special Cases of Mixed Integer Programming
Introduction
8
Given a set of items, each with a weight and a value,
determine which items to include in the collection so that the
total weight is less than or equal to a given limit and the
total value is as large as possible.
- Wikipedia
Knapsack problem
Introduction
9
10
Solving a MILP
Introduction
Dropping the integrality constraints, i.e. “linear relaxation”, leads to an LP problem.
Two major method classes for solving MILPs:
● Cutting plane methods
● Branch and bound methods
Often combined as Branch and Cut methods
Source: Introduction to Optimization by Laurent Lessard, Spring 2017–18
Cutting Planes
Cutting Planes Methods
Introduction
11
Idea
● solve the LP relaxation problem
● while solution is not integral:
○ add constraint that excludes solution but no integer points
○ solve LP relaxation again
Cutting Planes Methods
Introduction
12
Optimal point
Feasible point
Infeasible point
0
1
2
3
1 2 3
0
Optimal solution is 4 at (2, 2)
Cutting Planes Methods
Introduction
13
0
1
2
3
1 2 3
0
Optimal solution is 4.5 at (2, 2.5)
● Relaxing the problem and solving the LP instead of MIP
● The LP solution is always an upper bound for the MIP
Cutting Planes Methods
Introduction
14
0
1
2
3
1 2 3
0
Optimal solution is 4.16 at (2.16, 2)
● Add a cut to exclude the LP solution but no feasible
point
● Solve the LP again
● … repeat until LP solution is also an MIP solution
Cutting Planes Methods
Introduction
15
0
1
2
3
1 2 3
0
Optimal solution is 4 at (2, 2)
Branch & Bound
Branch & Bound Methods
Introduction
16
Idea
1. solve the relaxed LP and for a fractional split into two
subproblems
○ with constraint
○ and with constraint
2. repeat step 1. and build a tree of subproblems
3. eliminate branches of the tree using
How can we use MILPs for a
Conference Scheduling?
Use-Case
17
Monday Room 1 Room 2 …
Morning
Afternoon
A
B
C
D
A
B
C
D
● each talk must be assigned exactly once,
● each room/timeslot combination can only be occupied by
one talk at most,
● the length of the timeslot must match the length of the talk
● some tutorials have part 1 & 2, thus need to be consecutive
What Constraints do we have?
Use-Case
18
1. the preferences for day and time of some speakers, e.g.
keynotes, need to be considered
2.popularity of a talk should be reflected in the room
capacity,
3.avoid parallel talks that attract the same audience,
4.have in the same session, i.e. consecutive block of talks, the
same main track, e.g. PyData vs. PyCon,
5.or even the same sub track, e.g. PyData: Data Handling,
What is our objective?
Use-Case
19
Precedence: 1 > 2 > 3 > 4 > 5
1. Framework to formulate the problem, e.g.
a.Pyomo (OSS)
b.PuLP (OSS)
c.AMPL (Commercial)
d.…
2.Solver to solve the canonical problem, e.g.
a.HiGHS (OSS)
b.CBC (OSS)
c.Gurobi (Commercial)
d.IBM CPlex (Commercial)
e.…
Solving MILPs in Python
Use-Case
20
Pyomo: Index Sets
Use-Case
21
Pyomo: Parameters
Use-Case
22
Pyomo: Variables
Use-Case
23
Pyomo: Constraints
Use-Case
24
Pyomo: Objective
Use-Case
25
Solving the MILP Problem and Displaying model.vBScheduleSchedule
Use-Case
26
Pyomo / HiGHS notebook:
https://github.com/FlorianWilhelm/pytanis/blob/main/notebooks/pyconde-pydata-berlin-2023/50_scheduling_v1.ipynb
Check out the Full Source Code
Use-Case
27
Pytanis includes a Pretalx client and all
the tooling you need for conferences
using Pretalx, from handling the initial
call for papers to creating the final
program.
Looks easy enough! But is it really?
Remarks
28
m_caps_dict.keys(), ordered=True)
The Absolute Value is not linear!
Modelling the Absolute Value
Remarks
29
0
1
2
3
1 2 3
-1
-2
-3
m_caps_dict.keys(), ordered=True)
To model in the objective, we introduce auxiliary variables:
Modelling the Absolute Value
Remarks
30
1
2
3
1 2 3
1. MILPs are an important tool in the domain of
Operations Research
2.Many optimal decision use-cases can be formulated
mathematically as a MILP, e.g. Knapsack problem
3.Solving a (M)ILP is NP-hard but good heuristics methods
exists like Branch & Cut
4.Tools like Pyomo translate your problem in a standardized
form and solver like HiGHS solve it
5.Modelling a problem as MILP, especially the Linearity
requirement, is the hardest part
Main Take-Aways
Summary
31
● Introduction to Optimization by
Laurent Lessard
● Mixed Integer Programming for
time table scheduling by Francisco
Espiga
● Schedule Optimisation using Linear
Programming in Python by Lewis
Woolfson
● Some icons taken from
Flaticon.com
References
Summary
32
© 2023
Thank you!
Dr. Florian Wilhelm
Head of Data Science
EuroPython 2023
inovex.de
florian.wilhelm@inovex.de
@inovexlife
@inovexgmbh
waldstack.org
33
1 sur 33

Recommandé

A Decomposition Technique For Solving Integer Programming Problems par
A Decomposition Technique For Solving Integer Programming ProblemsA Decomposition Technique For Solving Integer Programming Problems
A Decomposition Technique For Solving Integer Programming ProblemsCarrie Romero
2 vues11 diapositives
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F... par
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...Allison Thompson
3 vues8 diapositives
Applying Transformation Characteristics to Solve the Multi Objective Linear F... par
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...AIRCC Publishing Corporation
38 vues8 diapositives
Constraint programming par
Constraint programmingConstraint programming
Constraint programmingJoseph Mathew
260 vues5 diapositives
“An Industry Standard Performance Benchmark Suite for Machine Learning,” a Pr... par
“An Industry Standard Performance Benchmark Suite for Machine Learning,” a Pr...“An Industry Standard Performance Benchmark Suite for Machine Learning,” a Pr...
“An Industry Standard Performance Benchmark Suite for Machine Learning,” a Pr...Edge AI and Vision Alliance
844 vues43 diapositives
A (Not So Short) Introduction to CP Optimizer for Scheduling par
A (Not So Short) Introduction to CP Optimizer for SchedulingA (Not So Short) Introduction to CP Optimizer for Scheduling
A (Not So Short) Introduction to CP Optimizer for SchedulingPhilippe Laborie
19.6K vues244 diapositives

Contenu connexe

Similaire à Unlocking the Power of Integer Programming

Applying Transformation Characteristics to Solve the Multi Objective Linear F... par
Applying Transformation Characteristics to Solve the Multi Objective Linear F...Applying Transformation Characteristics to Solve the Multi Objective Linear F...
Applying Transformation Characteristics to Solve the Multi Objective Linear F...AIRCC Publishing Corporation
106 vues8 diapositives
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F... par
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...ijcsit
23 vues8 diapositives
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A... par
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...Erica Thompson
2 vues8 diapositives
Prespective analytics with DOcplex and pandas par
Prespective analytics with DOcplex and pandasPrespective analytics with DOcplex and pandas
Prespective analytics with DOcplex and pandasPyDataParis
112 vues34 diapositives
Packing Problems Using Gurobi par
Packing Problems Using GurobiPacking Problems Using Gurobi
Packing Problems Using GurobiTerrance Smith
498 vues12 diapositives
QA CHAPTER II.pptx par
QA CHAPTER II.pptxQA CHAPTER II.pptx
QA CHAPTER II.pptxTeshome48
16 vues105 diapositives

Similaire à Unlocking the Power of Integer Programming(20)

APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F... par ijcsit
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
ijcsit23 vues
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A... par Erica Thompson
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...
A Modified Chaotic Firefly Algorithm For Solving Discrete Logarithm Problem A...
Prespective analytics with DOcplex and pandas par PyDataParis
Prespective analytics with DOcplex and pandasPrespective analytics with DOcplex and pandas
Prespective analytics with DOcplex and pandas
PyDataParis112 vues
QA CHAPTER II.pptx par Teshome48
QA CHAPTER II.pptxQA CHAPTER II.pptx
QA CHAPTER II.pptx
Teshome4816 vues
“Programação paralela híbrida com MPI e OpenMP – uma abordagem prática”. Edua... par lccausp
“Programação paralela híbrida com MPI e OpenMP – uma abordagem prática”. Edua...“Programação paralela híbrida com MPI e OpenMP – uma abordagem prática”. Edua...
“Programação paralela híbrida com MPI e OpenMP – uma abordagem prática”. Edua...
lccausp606 vues
Efficient Deep Learning in Natural Language Processing Production, with Moshe... par Seth Grimes
Efficient Deep Learning in Natural Language Processing Production, with Moshe...Efficient Deep Learning in Natural Language Processing Production, with Moshe...
Efficient Deep Learning in Natural Language Processing Production, with Moshe...
Seth Grimes440 vues
CP Optimizer pour la planification et l'ordonnancement par Philippe Laborie
CP Optimizer pour la planification et l'ordonnancementCP Optimizer pour la planification et l'ordonnancement
CP Optimizer pour la planification et l'ordonnancement
Philippe Laborie944 vues
Dynamic programming prasintation eaisy par ahmed51236
Dynamic programming prasintation eaisyDynamic programming prasintation eaisy
Dynamic programming prasintation eaisy
ahmed51236396 vues
chapter-04(Computational Thinking).pptx par ssuserf60ff6
chapter-04(Computational Thinking).pptxchapter-04(Computational Thinking).pptx
chapter-04(Computational Thinking).pptx
ssuserf60ff69 vues
Thomas Wolf "Transfer learning in NLP" par Fwdays
Thomas Wolf "Transfer learning in NLP"Thomas Wolf "Transfer learning in NLP"
Thomas Wolf "Transfer learning in NLP"
Fwdays2K vues
Solving Industrial Scheduling Problems with Constraint Programming par Philippe Laborie
Solving Industrial Scheduling Problems with Constraint ProgrammingSolving Industrial Scheduling Problems with Constraint Programming
Solving Industrial Scheduling Problems with Constraint Programming
Philippe Laborie3.1K vues
Convex optmization in communications par Deepshika Reddy
Convex optmization in communicationsConvex optmization in communications
Convex optmization in communications
Deepshika Reddy2.1K vues

Plus de Florian Wilhelm

WALD: A Modern & Sustainable Analytics Stack par
WALD: A Modern & Sustainable Analytics StackWALD: A Modern & Sustainable Analytics Stack
WALD: A Modern & Sustainable Analytics StackFlorian Wilhelm
168 vues40 diapositives
Forget about AI and do Mathematical Modelling instead! par
Forget about AI and do Mathematical Modelling instead!Forget about AI and do Mathematical Modelling instead!
Forget about AI and do Mathematical Modelling instead!Florian Wilhelm
426 vues40 diapositives
An Interpretable Model for Collaborative Filtering Using an Extended Latent D... par
An Interpretable Model for Collaborative Filtering Using an Extended Latent D...An Interpretable Model for Collaborative Filtering Using an Extended Latent D...
An Interpretable Model for Collaborative Filtering Using an Extended Latent D...Florian Wilhelm
103 vues19 diapositives
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar... par
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...Florian Wilhelm
340 vues36 diapositives
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L... par
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...Florian Wilhelm
155 vues11 diapositives
Uncertainty Quantification in AI par
Uncertainty Quantification in AIUncertainty Quantification in AI
Uncertainty Quantification in AIFlorian Wilhelm
2.3K vues55 diapositives

Plus de Florian Wilhelm(15)

WALD: A Modern & Sustainable Analytics Stack par Florian Wilhelm
WALD: A Modern & Sustainable Analytics StackWALD: A Modern & Sustainable Analytics Stack
WALD: A Modern & Sustainable Analytics Stack
Florian Wilhelm168 vues
Forget about AI and do Mathematical Modelling instead! par Florian Wilhelm
Forget about AI and do Mathematical Modelling instead!Forget about AI and do Mathematical Modelling instead!
Forget about AI and do Mathematical Modelling instead!
Florian Wilhelm426 vues
An Interpretable Model for Collaborative Filtering Using an Extended Latent D... par Florian Wilhelm
An Interpretable Model for Collaborative Filtering Using an Extended Latent D...An Interpretable Model for Collaborative Filtering Using an Extended Latent D...
An Interpretable Model for Collaborative Filtering Using an Extended Latent D...
Florian Wilhelm103 vues
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar... par Florian Wilhelm
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...
Honey I Shrunk the Target Variable! Common pitfalls when transforming the tar...
Florian Wilhelm340 vues
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L... par Florian Wilhelm
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...
Matrix Factorization for Collaborative Filtering Is Just Solving an Adjoint L...
Florian Wilhelm155 vues
Performance evaluation of GANs in a semisupervised OCR use case par Florian Wilhelm
Performance evaluation of GANs in a semisupervised OCR use casePerformance evaluation of GANs in a semisupervised OCR use case
Performance evaluation of GANs in a semisupervised OCR use case
Florian Wilhelm1.8K vues
Bridging the Gap: from Data Science to Production par Florian Wilhelm
Bridging the Gap: from Data Science to ProductionBridging the Gap: from Data Science to Production
Bridging the Gap: from Data Science to Production
Florian Wilhelm1.3K vues
How mobile.de brings Data Science to Production for a Personalized Web Experi... par Florian Wilhelm
How mobile.de brings Data Science to Production for a Personalized Web Experi...How mobile.de brings Data Science to Production for a Personalized Web Experi...
How mobile.de brings Data Science to Production for a Personalized Web Experi...
Florian Wilhelm701 vues
Deep Learning-based Recommendations for Germany's Biggest Vehicle Marketplace par Florian Wilhelm
Deep Learning-based Recommendations for Germany's Biggest Vehicle MarketplaceDeep Learning-based Recommendations for Germany's Biggest Vehicle Marketplace
Deep Learning-based Recommendations for Germany's Biggest Vehicle Marketplace
Florian Wilhelm1.3K vues
Deep Learning-based Recommendations for Germany's Biggest Online Vehicle Mark... par Florian Wilhelm
Deep Learning-based Recommendations for Germany's Biggest Online Vehicle Mark...Deep Learning-based Recommendations for Germany's Biggest Online Vehicle Mark...
Deep Learning-based Recommendations for Germany's Biggest Online Vehicle Mark...
Florian Wilhelm755 vues
Which car fits my life? - PyData Berlin 2017 par Florian Wilhelm
Which car fits my life? - PyData Berlin 2017Which car fits my life? - PyData Berlin 2017
Which car fits my life? - PyData Berlin 2017
Florian Wilhelm566 vues
Explaining the idea behind automatic relevance determination and bayesian int... par Florian Wilhelm
Explaining the idea behind automatic relevance determination and bayesian int...Explaining the idea behind automatic relevance determination and bayesian int...
Explaining the idea behind automatic relevance determination and bayesian int...
Florian Wilhelm9.8K vues

Dernier

Supercharging your Data with Azure AI Search and Azure OpenAI par
Supercharging your Data with Azure AI Search and Azure OpenAISupercharging your Data with Azure AI Search and Azure OpenAI
Supercharging your Data with Azure AI Search and Azure OpenAIPeter Gallagher
37 vues32 diapositives
Understanding Hallucinations in LLMs - 2023 09 29.pptx par
Understanding Hallucinations in LLMs - 2023 09 29.pptxUnderstanding Hallucinations in LLMs - 2023 09 29.pptx
Understanding Hallucinations in LLMs - 2023 09 29.pptxGreg Makowski
17 vues18 diapositives
Survey on Factuality in LLM's.pptx par
Survey on Factuality in LLM's.pptxSurvey on Factuality in LLM's.pptx
Survey on Factuality in LLM's.pptxNeethaSherra1
5 vues9 diapositives
UNEP FI CRS Climate Risk Results.pptx par
UNEP FI CRS Climate Risk Results.pptxUNEP FI CRS Climate Risk Results.pptx
UNEP FI CRS Climate Risk Results.pptxpekka28
11 vues51 diapositives
Cross-network in Google Analytics 4.pdf par
Cross-network in Google Analytics 4.pdfCross-network in Google Analytics 4.pdf
Cross-network in Google Analytics 4.pdfGA4 Tutorials
6 vues7 diapositives
Short Story Assignment by Kelly Nguyen par
Short Story Assignment by Kelly NguyenShort Story Assignment by Kelly Nguyen
Short Story Assignment by Kelly Nguyenkellynguyen01
19 vues17 diapositives

Dernier(20)

Supercharging your Data with Azure AI Search and Azure OpenAI par Peter Gallagher
Supercharging your Data with Azure AI Search and Azure OpenAISupercharging your Data with Azure AI Search and Azure OpenAI
Supercharging your Data with Azure AI Search and Azure OpenAI
Peter Gallagher37 vues
Understanding Hallucinations in LLMs - 2023 09 29.pptx par Greg Makowski
Understanding Hallucinations in LLMs - 2023 09 29.pptxUnderstanding Hallucinations in LLMs - 2023 09 29.pptx
Understanding Hallucinations in LLMs - 2023 09 29.pptx
Greg Makowski17 vues
UNEP FI CRS Climate Risk Results.pptx par pekka28
UNEP FI CRS Climate Risk Results.pptxUNEP FI CRS Climate Risk Results.pptx
UNEP FI CRS Climate Risk Results.pptx
pekka2811 vues
Cross-network in Google Analytics 4.pdf par GA4 Tutorials
Cross-network in Google Analytics 4.pdfCross-network in Google Analytics 4.pdf
Cross-network in Google Analytics 4.pdf
GA4 Tutorials6 vues
Short Story Assignment by Kelly Nguyen par kellynguyen01
Short Story Assignment by Kelly NguyenShort Story Assignment by Kelly Nguyen
Short Story Assignment by Kelly Nguyen
kellynguyen0119 vues
Vikas 500 BIG DATA TECHNOLOGIES LAB.pdf par vikas12611618
Vikas 500 BIG DATA TECHNOLOGIES LAB.pdfVikas 500 BIG DATA TECHNOLOGIES LAB.pdf
Vikas 500 BIG DATA TECHNOLOGIES LAB.pdf
vikas126116188 vues
[DSC Europe 23] Spela Poklukar & Tea Brasanac - Retrieval Augmented Generation par DataScienceConferenc1
[DSC Europe 23] Spela Poklukar & Tea Brasanac - Retrieval Augmented Generation[DSC Europe 23] Spela Poklukar & Tea Brasanac - Retrieval Augmented Generation
[DSC Europe 23] Spela Poklukar & Tea Brasanac - Retrieval Augmented Generation
CRIJ4385_Death Penalty_F23.pptx par yvettemm100
CRIJ4385_Death Penalty_F23.pptxCRIJ4385_Death Penalty_F23.pptx
CRIJ4385_Death Penalty_F23.pptx
yvettemm1006 vues
RuleBookForTheFairDataEconomy.pptx par noraelstela1
RuleBookForTheFairDataEconomy.pptxRuleBookForTheFairDataEconomy.pptx
RuleBookForTheFairDataEconomy.pptx
noraelstela167 vues
Organic Shopping in Google Analytics 4.pdf par GA4 Tutorials
Organic Shopping in Google Analytics 4.pdfOrganic Shopping in Google Analytics 4.pdf
Organic Shopping in Google Analytics 4.pdf
GA4 Tutorials11 vues
[DSC Europe 23] Zsolt Feleki - Machine Translation should we trust it.pptx par DataScienceConferenc1
[DSC Europe 23] Zsolt Feleki - Machine Translation should we trust it.pptx[DSC Europe 23] Zsolt Feleki - Machine Translation should we trust it.pptx
[DSC Europe 23] Zsolt Feleki - Machine Translation should we trust it.pptx
Advanced_Recommendation_Systems_Presentation.pptx par neeharikasingh29
Advanced_Recommendation_Systems_Presentation.pptxAdvanced_Recommendation_Systems_Presentation.pptx
Advanced_Recommendation_Systems_Presentation.pptx
Data structure and algorithm. par Abdul salam
Data structure and algorithm. Data structure and algorithm.
Data structure and algorithm.
Abdul salam 19 vues

Unlocking the Power of Integer Programming

  • 1. Florian Wilhelm Unlocking the Power of Integer Programming Data Analytics & Science
  • 2. Mathematical Modelling Modern Data Warehousing & Analytics Personalisation & RecSys Uncertainty Quantification & Causality Python Data Stack OSS Contributor & Creator of PyScaffold Dr. Florian Wilhelm • HEAD OF DATA SCIENCE FlorianWilhelm.info florian.wilhelm@inovex.de FlorianWilhelm @FlorianWilhelm 2
  • 3. ‣ Application Development (Web Platforms, Mobile Apps, Smart Devices and Robotics, UI/UX design, Backend Services) ‣ Data Management and Analytics (Business Intelligence, Big Data, Searches, Data Science and Deep Learning, Machine Perception and Artificial Intelligence) ‣ Scalable IT-Infrastructures (IT Engineering, Cloud Services, DevOps, Replatforming, Security) ‣ Training and Coaching (inovex Academy) is an innovation and quality-driven IT project house with a focus on digital transformation. Using technology to inspire our clients. And ourselves. Berlin · Karlsruhe · Pforzheim · Stuttgart · München · Köln · Hamburg · Erlangen www.inovex.de 3
  • 4. Definition: The objective of Operations Research (OR) is the development and use of mathematical methods to support decision-making processes in domains such as manufacturing or finance. Operations Research Introduction 4
  • 5. ● Assignment/Allocation Problem How to schedule some talks in an agenda under some constraints like room sizes to optimize the conference experience? ● Transportation Problem Which supplier should deliver to which factories given some costs to satisfy each factory with minimal costs? ● Shortest Path Problem Given some graph with a cost on each edge, what is the shortest path from source to sink? ● Maximum Flow Problem Given some pipe system with a source and sink, what is the maximum flow through the system? Common Problem Classes in Operations Research Introduction 5
  • 6. Definition of Linear Programming (LP) Introduction 6 LPs can be solved with the Simplex algorithm in cubic on average but exponential number of steps in worst case scenario or interior point methods in about .
  • 7. Definition of Mixed Integer Programming (MIP) Introduction 7 MIPs are NP-hard, i.e. complexity grows exponentially with n Dropping the integrality constraints, i.e. "linear relaxation", leads to an LP problem.
  • 8. If all variables need to be integer, it is a (pure) integer linear program (ILP, IP). If all variables need to be 0 or 1 (binary, boolean), it is a 0 - 1 linear program. Special Cases of Mixed Integer Programming Introduction 8
  • 9. Given a set of items, each with a weight and a value, determine which items to include in the collection so that the total weight is less than or equal to a given limit and the total value is as large as possible. - Wikipedia Knapsack problem Introduction 9
  • 10. 10 Solving a MILP Introduction Dropping the integrality constraints, i.e. “linear relaxation”, leads to an LP problem. Two major method classes for solving MILPs: ● Cutting plane methods ● Branch and bound methods Often combined as Branch and Cut methods Source: Introduction to Optimization by Laurent Lessard, Spring 2017–18
  • 11. Cutting Planes Cutting Planes Methods Introduction 11 Idea ● solve the LP relaxation problem ● while solution is not integral: ○ add constraint that excludes solution but no integer points ○ solve LP relaxation again
  • 12. Cutting Planes Methods Introduction 12 Optimal point Feasible point Infeasible point 0 1 2 3 1 2 3 0 Optimal solution is 4 at (2, 2)
  • 13. Cutting Planes Methods Introduction 13 0 1 2 3 1 2 3 0 Optimal solution is 4.5 at (2, 2.5) ● Relaxing the problem and solving the LP instead of MIP ● The LP solution is always an upper bound for the MIP
  • 14. Cutting Planes Methods Introduction 14 0 1 2 3 1 2 3 0 Optimal solution is 4.16 at (2.16, 2) ● Add a cut to exclude the LP solution but no feasible point ● Solve the LP again ● … repeat until LP solution is also an MIP solution
  • 15. Cutting Planes Methods Introduction 15 0 1 2 3 1 2 3 0 Optimal solution is 4 at (2, 2)
  • 16. Branch & Bound Branch & Bound Methods Introduction 16 Idea 1. solve the relaxed LP and for a fractional split into two subproblems ○ with constraint ○ and with constraint 2. repeat step 1. and build a tree of subproblems 3. eliminate branches of the tree using
  • 17. How can we use MILPs for a Conference Scheduling? Use-Case 17 Monday Room 1 Room 2 … Morning Afternoon A B C D A B C D
  • 18. ● each talk must be assigned exactly once, ● each room/timeslot combination can only be occupied by one talk at most, ● the length of the timeslot must match the length of the talk ● some tutorials have part 1 & 2, thus need to be consecutive What Constraints do we have? Use-Case 18
  • 19. 1. the preferences for day and time of some speakers, e.g. keynotes, need to be considered 2.popularity of a talk should be reflected in the room capacity, 3.avoid parallel talks that attract the same audience, 4.have in the same session, i.e. consecutive block of talks, the same main track, e.g. PyData vs. PyCon, 5.or even the same sub track, e.g. PyData: Data Handling, What is our objective? Use-Case 19 Precedence: 1 > 2 > 3 > 4 > 5
  • 20. 1. Framework to formulate the problem, e.g. a.Pyomo (OSS) b.PuLP (OSS) c.AMPL (Commercial) d.… 2.Solver to solve the canonical problem, e.g. a.HiGHS (OSS) b.CBC (OSS) c.Gurobi (Commercial) d.IBM CPlex (Commercial) e.… Solving MILPs in Python Use-Case 20
  • 26. Solving the MILP Problem and Displaying model.vBScheduleSchedule Use-Case 26
  • 27. Pyomo / HiGHS notebook: https://github.com/FlorianWilhelm/pytanis/blob/main/notebooks/pyconde-pydata-berlin-2023/50_scheduling_v1.ipynb Check out the Full Source Code Use-Case 27 Pytanis includes a Pretalx client and all the tooling you need for conferences using Pretalx, from handling the initial call for papers to creating the final program.
  • 28. Looks easy enough! But is it really? Remarks 28
  • 29. m_caps_dict.keys(), ordered=True) The Absolute Value is not linear! Modelling the Absolute Value Remarks 29 0 1 2 3 1 2 3 -1 -2 -3
  • 30. m_caps_dict.keys(), ordered=True) To model in the objective, we introduce auxiliary variables: Modelling the Absolute Value Remarks 30 1 2 3 1 2 3
  • 31. 1. MILPs are an important tool in the domain of Operations Research 2.Many optimal decision use-cases can be formulated mathematically as a MILP, e.g. Knapsack problem 3.Solving a (M)ILP is NP-hard but good heuristics methods exists like Branch & Cut 4.Tools like Pyomo translate your problem in a standardized form and solver like HiGHS solve it 5.Modelling a problem as MILP, especially the Linearity requirement, is the hardest part Main Take-Aways Summary 31
  • 32. ● Introduction to Optimization by Laurent Lessard ● Mixed Integer Programming for time table scheduling by Francisco Espiga ● Schedule Optimisation using Linear Programming in Python by Lewis Woolfson ● Some icons taken from Flaticon.com References Summary 32
  • 33. © 2023 Thank you! Dr. Florian Wilhelm Head of Data Science EuroPython 2023 inovex.de florian.wilhelm@inovex.de @inovexlife @inovexgmbh waldstack.org 33