Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
ab3735
/
7159CEM-Portfolio-2024
Public template
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
0
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Projects
Security
Insights
Files
491a6e9
img
DP.ipynb
DT.ipynb
Feedback and Marks.md
LP.ipynb
PSO.ipynb
README.md
RL.ipynb
Breadcrumbs
7159CEM-Portfolio-2024
/
LP.ipynb
Blame
Blame
Latest commit
History
History
214 lines (214 loc) · 6.38 KB
Breadcrumbs
7159CEM-Portfolio-2024
/
LP.ipynb
Top
File metadata and controls
Preview
Code
Blame
214 lines (214 loc) · 6.38 KB
Raw
{ "cells": [ { "cell_type": "markdown", "id": "af0cba34-ce1c-4572-a2d1-e23425871b08", "metadata": {}, "source": [ "# Part 1) A linear programming approach for optimizing features in ML models" ] }, { "cell_type": "markdown", "id": "ef0baa69-7ce7-4800-afb5-9e06c8161c63", "metadata": {}, "source": [ "Read the article [A linear programming approach for optimizing features in ML models](https://engineering.fb.com/2021/07/29/data-infrastructure/linear-programming/).\n", "\n", "Summarise it technically in about **400 words**, ensuring you capture the Mathematical formulation of how Linear Programming is used. (Do not discuss the code.)\n", "\n", "- Use LaTeX for the mathematical formulae, not images. You also need to expand on the formulae given in the article." ] }, { "cell_type": "markdown", "id": "98e54944-4ae1-4246-8762-c54afd201076", "metadata": {}, "source": [ "## Article's summary\n", "\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n", "..................................................................................................\n" ] }, { "cell_type": "markdown", "id": "5937b132", "metadata": {}, "source": [ "# Part 2) Farmer's Problem" ] }, { "cell_type": "markdown", "id": "cbca808d", "metadata": {}, "source": [ "A farmer has 500 acres of land to allocate to wheat, corn, and sugar beets.\n", "\n", "The following table summarises the requirements and constraints:\n", "\n", "| | Unit | Wheat | Corn | Sugar Beets |\n", "|--------------------------|---------|------:|-----:|:-----------:|\n", "| Yield | T/acre | 2.5 | 3 | 20 |\n", "| Demand (Need for feed) | T | 200 | 240 | |\n", "| Planting cost | £/acre | 150 | 230 | 260 |\n", "| Selling price | £/T | 170 | 150 | 36 if produce ≤ 6000 T |\n", "| | £/T | | | 10 if produce > 6000 T |\n", "| Backup (Purchase price) | £/T | 238 | 210 | |" ] }, { "cell_type": "markdown", "id": "0366a3fc", "metadata": {}, "source": [ "## Mathematical formulation" ] }, { "cell_type": "markdown", "id": "06aeba09", "metadata": {}, "source": [ "|Variable name| Description |\n", "|:------------|:-----|\n", "|$x_1$| Acres of land used for wheat |\n", "|$x_2$| Acres of land used for corn |\n", "|$x_3$| Acres of land used for sugar beets |\n", "|$p_1$| Tons of crop wheat sold |\n", "|$p_2$| Tons of crop corn sold |\n", "|$p_3$| Tons of crop sugar beets sold at £36 |\n", "|$p_4$| Tons of crop sugar beets sold at £10 |\n", "|$y_1$| Tons of wheat purchased |\n", "|$y_2$| Tons of corn purchased |" ] }, { "cell_type": "markdown", "id": "56ab5cbe", "metadata": {}, "source": [ "\n", "Profit formula:\n", "\n", "$$\n", ".........................\n", "$$" ] }, { "cell_type": "markdown", "id": "9b2ca564", "metadata": {}, "source": [ "Constraints:\n", "\n", "$$\n", "\\begin{alignat*}{4}\n", " ......................... &\\leq ...... \\\\\n", " ......................... &\\leq ...... \\\\\n", " ......................... \\\\\n", " ......................... & \\geq 0\n", "\\end{alignat*}\n", "$$" ] }, { "cell_type": "markdown", "id": "94561b9d", "metadata": {}, "source": [ "## Solution using PuLP" ] }, { "cell_type": "code", "execution_count": 1, "id": "1a5ec9b7", "metadata": { "ExecuteTime": { "end_time": "2022-10-25T11:37:42.147735Z", "start_time": "2022-10-25T11:37:42.007094Z" } }, "outputs": [], "source": [ "from pulp import *" ] }, { "cell_type": "code", "execution_count": 2, "id": "6a8a4305-6710-4a39-bf0c-3f032f9b3a07", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "4418a51c-715e-4ce1-bd3b-f7d53dd06159", "metadata": {}, "source": [ "### Optimal solution\n", "\n", "|Category |Unit|Wheat|Corn|Sugar Beets|\n", "|---------|----|-----|----|-----------|\n", "|Area |Acre| | | |\n", "|Yield |T | | | |\n", "|Sales |T | | | |\n", "|Purchase |T | | | |\n", "\n", "Total cost: ..............." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.1" }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": false, "sideBar": true, "skip_h1_title": false, "title_cell": "Table of Contents", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": false }, "vscode": { "interpreter": { "hash": "6d1e45cadc3597bb8b6600530fbdf8c3eefe919a24ef54d9d32b318795b772e0" } } }, "nbformat": 4, "nbformat_minor": 5 }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
You can’t perform that action at this time.