base
logger = logging.getLogger(__name__) module-attribute ¶
Setting ¶
Bases: BaseModel, ParamMixin
Base class for defining an evaluation setting.
Core Attributes: - training_data: Data used for inital training of model. Interval is [0, background_t). - unlabeled_data: List of unlabeled data. Each element is an InteractionMatrix object of interval [0, t). - ground_truth_data: List of ground truth data. Each element is an InteractionMatrix object of interval [t, t + window_size). - incremental_data: List of data used to incrementally update the model. Each element is an InteractionMatrix object of interval [t, t + window_size). Unique to SlidingWindowSetting. - data_timestamp_limit: List of timestamps that the splitter will slide over.
We will use training_data as the initial training set, incremental_data as the data to incrementally update the model. However, for public methods, we will refer to both as training_data to avoid confusion.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seed | int | Seed for randomization. Defaults to 42. | 42 |
Source code in src/recnexteval/settings/base.py
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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |
seed = seed instance-attribute ¶
prediction_data_processor = PredictionDataProcessor() instance-attribute ¶
n_seq_data instance-attribute ¶
Number of last sequential interactions to provide in :attr:unlabeled_data as data for model to make prediction.
top_K instance-attribute ¶
Number of interaction per user that should be selected for evaluation purposes in :attr:ground_truth_data.
identifier property ¶
Name of the setting.
num_split property ¶
Get number of splits created from dataset.
This property defaults to 1 (no splits on training set) for typical settings. For SlidingWindowSetting, this is typically greater than 1 if there are multiple splits created from the sliding window.
Returns:
| Type | Description |
|---|---|
int | Number of splits created from dataset. |
is_ready property ¶
Check if setting is ready for evaluation.
Returns:
| Type | Description |
|---|---|
bool | True if the setting has been split and is ready to use. |
is_sliding_window_setting property ¶
Check if setting is SlidingWindowSetting.
Returns:
| Type | Description |
|---|---|
bool | True if this is a SlidingWindowSetting instance. |
training_data property ¶
Get background data for initial model training.
Returns:
| Type | Description |
|---|---|
InteractionMatrix | InteractionMatrix of training interactions. |
t_window property ¶
Get the upper timestamp of the window in split.
In settings that respect the global timeline, returns a timestamp value. In SlidingWindowSetting, returns a list of timestamp values. In settings like LeaveNOutSetting, returns None.
Returns:
| Type | Description |
|---|---|
Union[None, int, list[int]] | Timestamp limit for the data (int, list of ints, or None). |
unlabeled_data property ¶
Get unlabeled data for model predictions.
Contains the user/item ID for prediction along with previous sequential interactions. Used to make predictions on ground truth data.
Returns:
| Type | Description |
|---|---|
InteractionMatrix | list[InteractionMatrix] | Single InteractionMatrix or list of InteractionMatrix for sliding window setting. |
ground_truth_data property ¶
Get ground truth data for model evaluation.
Contains the actual interactions of user-item that the model should predict.
Returns:
| Type | Description |
|---|---|
InteractionMatrix | list[InteractionMatrix] | Single InteractionMatrix or list of InteractionMatrix for sliding window. |
incremental_data property ¶
Get data for incrementally updating the model.
Only available for SlidingWindowSetting.
Returns:
| Type | Description |
|---|---|
list[InteractionMatrix] | List of InteractionMatrix objects for incremental updates. |
Raises:
| Type | Description |
|---|---|
AttributeError | If setting is not SlidingWindowSetting. |
name property ¶
Name of the object's class.
:return: Name of the object's class :rtype: str
params property ¶
Parameters of the object.
:return: Parameters of the object :rtype: dict
IS_BASE = True class-attribute instance-attribute ¶
get_params() ¶
Get the parameters of the setting.
Source code in src/recnexteval/settings/base.py
74 75 76 77 78 79 80 81 82 83 84 85 | |
split(data) ¶
Split data according to the setting.
Calling this method changes the state of the setting object to be ready for evaluation. The method splits data into training_data, ground_truth_data, and unlabeled_data.
Note
SlidingWindowSetting will have an additional attribute incremental_data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data | InteractionMatrix | Interaction matrix to be split. | required |
Source code in src/recnexteval/settings/base.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
restore(n=0) ¶
Restore last run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n | int | Iteration number to restore to. If None, restores to beginning. | 0 |
Source code in src/recnexteval/settings/base.py
303 304 305 306 307 308 309 310 | |
get_split_at(index) ¶
Get the split data at a specific index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
index | int | The index of the split to retrieve. | required |
Returns:
| Type | Description |
|---|---|
SplitResult | SplitResult with keys: 'unlabeled', 'ground_truth', 't_window', 'incremental'. |
Raises:
| Type | Description |
|---|---|
IndexError | If index is out of range. |
Source code in src/recnexteval/settings/base.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |