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
[`FixedSizeShortestPathBenchmark`](@ref) is a benchmark problem that consists of finding the shortest path in a grid graph between the top left and bottom right corners.
4
+
In this benchmark, the grid size is the same for all instances.
[`PortfolioOptimizationBenchmark`](@ref) is a Markovitz portfolio optimization problem, where asset prices are unknown, and only contextual data is available to predict these prices.
4
+
The goal is to predict asset prices $c$ and maximize the expected return of a portfolio, subject to a risk constraint using this maximization program:
[`SubsetSelectionBenchmark`](@ref) is the most trivial benchmark problem in this package.
4
+
It is minimalistic and serves as a simple example for debugging and testing purposes.
5
+
6
+
## Description
7
+
We have a set of ``n`` items, each item having an unknown value.
8
+
We want to select a subset of ``k`` items that maximizes the sum of the values of the selected items.
9
+
10
+
As input, instead of the items costs, we are given a feature vector, such that an unknown linear mapping between the feature vector and the value of the items exists.
11
+
12
+
By default, this linear mapping is the identity mapping, i.e., the value of each item is equal to the value of the corresponding feature vector element.
13
+
However, this mapping can be changed by setting the `identity_mapping` parameter to `false`.
0 commit comments