modeling-examples
modeling-examples copied to clipboard
Gurobi modeling examples
Fix typos in writeup for lost luggage; disaggregating one set of constraints to make it more clear.
https://github.com/Gurobi/modeling-examples/blob/1abb8700611e45bb34a760eebe2f6dcd1ff85875/linear_regression/l0_regression.html#L13183 ## RSS vs MSE This paragraph mentioned that it is not advisable to use RSS as the performance metric, but MSE via cross-validation. **I think the highlight on MSE...
Hello, This is a really great and detailed example of how to use gurobi to solve fantasy sports problems. I actually play draftkings , and have been trying to teach...
Example https://github.com/Gurobi/modeling-examples/tree/master/technician_routing_scheduling uses the `xlrd` package. Unfortunately this package [does not support](https://pypi.org/project/xlrd/) reading XLSX files anymore. This may apply to other examples as well.
In [this example](https://colab.research.google.com/github/Gurobi/modeling-examples/blob/master/power_generation/optimize_power_schedule.ipynb), we state that the full dataset can simply be read by replacing `small_plant_data` by `large_plant_data`. However, in that folder `plant_capacities.csv` is missing and the file `plant_info_update.csv` does...
Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.2.2 to 2024.7.4. Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from...
`modeling-examples/music_recommendation/music_recommendation.ipynb` relies on [lightfm](https://github.com/lyst/lightfm). The following works in an empty py311 environment: ```bash python -m pip install --upgrade pip setuptools wheel python -m pip install lightfm ``` but fails to...