The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Music Off-Policy Evaluation Dataset
Music Off-Policy Evaluation Dataset is a dataset designed for Off-Policy Evaluation (OPE) research. It contains logged interactions from the home page of Amazon Music.
Use cases:
- Benchmarking OPE estimators
- Evaluating counterfactual ranking policies offline
License
Music Off-Policy Evaluation Benchmark © 2026 by Amazon is licensed under Creative Commons Attribution-NonCommercial 4.0 International.
Code
Please refer to our GitHub repository for the code to reproduce the benchmark.
Citation
Paper under review.
Schema
The following table provides an overview of the dataset schema. Let it be the number of available actions for a given observation.
| Column | Type | Dimension | Description |
|---|---|---|---|
| actions | List[List[float]] | Context vectors of size for each action in the observation. | |
| rewards | List[float] | Observed binary rewards per action. | |
| logging_selected_actions | List[int] | Selected actions of the logging policy . | |
| target_selected_actions | List[int] | Selected actions of the target policy . | |
| propensities | List[List[float]] | Squared matrix of propensities. |
Actions
Vectors of size 129 describing a context vector. The number of available actions differs across observations.
Example:
Assuming for a given observation there are actions, then actions contains vectors each of size as following:
actions = [
[1. 0. 0.28867126 ... 0.09611709 0.32168165 0. ],
[1. 0. 0.32252225 ... 0.19847895 0.24163522 0. ],
[1. 0. 0.57331926 ... 0.15339291 0.57508302 0. ]
]
Logging selected actions
Vector of action indices selected by in the order they are displayed.
Example:
Let's assume in a given observation there are actions such that:
logging_selected_actions = [2, 1, 0]
It indicates that the third action (index 2) is ranked by in the first position, the second action (index 1) is ranked in second position and first action (index 0) ranked in third position.
Target selected actions
Vector of action indices selected by .
Example:
Let's assume in a given observation there are actions such that:
logging_selected_actions = [2, 1, 0]
target_selected_actions = [1, 2, 0]
It indicates that ranks in first position the action with index 1 (while ranked in second position under ); action with index 2 is ranked by in second position (first position under ). Action index 0 is being ranked in third position under both and .
Rewards
Vector of binary rewards ordered by logging_selected_actions.
Example:
Assuming we have actions in the actions set:
logging_selected_actions = [2, 1, 0]
rewards = [1.0, 0.0, 0.0]
It indicates that a positive reward of has been observed for the action at index in actions vector which is ranked by in first position.
Propensities
Propensity matrix where that describes the probabilities with which actions are ranked in different positions under the logging policy . Rows correspond to actions (in the order they were ranked) and columns correspond to positions in the ranking. Specifically, describes:
Example:
Let it be the action space with and assume:
The stochastic logging policy produces the ranking , and
The probability (as determined by the policy's selection mechanism) for
action to end up in the first position was (it could have ended up in the second position with probability or in the third position with probability ),
action to end up in the second position was (it could have ended up in the first position with probability or in the third position with probability ),
action to end up in the third position was (it could have ended up in the first position with probability or in the second position with probability ).
Then, the propensities matrix is: where the rows correspond to the actions as ranked (i.e., ), and columns correspond to positions the actions could have been ranked (first, second and third).
- Downloads last month
- 1