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
[`SubsetSelectionBenchmark`](@ref) is a very simple benchmark problem of subset selection.
3
+
[`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.
4
5
5
-
We have a set of ``n`` items, each item having an `unknown' value.
6
+
## Description
7
+
We have a set of ``n`` items, each item having an unknown value.
6
8
We want to select a subset of ``k`` items that maximizes the sum of the values of the selected items.
7
9
8
-
As input, we are given a feature vector, that contains exactly the value of each item.
9
-
The goal is to learn the identity mapping between the feature vector and the value of the items.
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