├── README.md ├── Solveur RectPack.ipynb └── thumbnail.webp /README.md: -------------------------------------------------------------------------------- 1 | ## Containers Loading Optimization with Python 📦 2 | *How can we use heuristic algorithms to find the right strategy to load a maximum number of pallets in a sea container?* 3 | 4 | 5 |

6 | 7 |

8 | 9 | ### Youtube Video 10 | Find in the link below a short animated explained video to understand the concept behind this solution 11 |
12 | Explainer Video Link 13 |
14 | 15 | ### Article 16 | In this [Article](https://medium.com/towards-data-science/maximize-the-loading-capacity-of-a-sea-container-to-reduce-your-shipping-costs-with-python-8cc02c9725a7), we will build a container loading optimization 17 | model using a heuristic method from a Python library. 18 | 19 | 20 | ### Experiment 21 | #### Scenario 22 | You need to load in a 40' Container 23 | - 20 European Pallets 80 x 120 (cm) 24 | - 4 North American Pallets 100 x 120 (cm) 25 | #### Tentative 1: The Intuitive solution 26 | ![This is an image](https://miro.medium.com/max/700/1*VV3FCo5v75EmtDEgyhpKJg.png) 27 | > Results: 20/20 Euro Pallets loaded, 2/4 American pallets loaded. You need another container for the two remaining pallets. 28 | #### Tentative 2: The Optimization Algorithm Result 29 | ![This is an image](https://miro.medium.com/max/700/1*QvEfxDGR8KiENh9Fp7LD9w.png) 30 | > Results: 20/20 Euro Pallets loaded, 4/4 American pallets loaded. You don’t need another container. 31 | 32 | 33 | ## Code 34 | This repository code you will find all the code used to explain the concepts presented in the article. 35 | 36 | ## About me 🤓 37 | Senior Supply Chain and Data Science consultant with international experience working on Logistics and Transportation operations. \ 38 | For **consulting or advising** on analytics and sustainable supply chain transformation, feel free to contact me via [Logigreen Consulting](https://www.logi-green.com/). \ 39 | 40 | Please have a look at my personal blog: [Personal Website](https://samirsaci.com) 41 | -------------------------------------------------------------------------------- /thumbnail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirsaci/container-optimization/fe9a1433ea364de49737c8bd465b2c904996a6af/thumbnail.webp --------------------------------------------------------------------------------