Model Interfaces - API Reference¶
warprec.recommenders.base_recommender.Recommender
¶
Bases: Module, ABC
Abstract class that defines the basic functionalities of a recommendation model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict
|
The dictionary with the model params. |
required |
info
|
dict
|
The dictionary containing dataset information. |
required |
*args
|
Any
|
Argument for PyTorch nn.Module. |
()
|
seed
|
int
|
The seed to use for reproducibility. |
42
|
**kwargs
|
Any
|
Keyword argument for PyTorch nn.Module. |
{}
|
Attributes:
| Name | Type | Description |
|---|---|---|
DATALOADER_TYPE |
Optional[DataLoaderType]
|
The type of dataloader used by this model. This value will be used to pre-compute the required data structure before starting the training process. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the info dictionary does not contain the number of items and users of the dataset. |
Source code in warprec/recommenders/base_recommender.py
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 | |
device
property
¶
Get the device where the model is located.
Returns:
| Type | Description |
|---|---|
device
|
torch.device: The device of the model. |
name
property
¶
The name of the model.
name_param
property
¶
The name of the model with a deterministic coolname extension.
The name is generated based on the hash of the model's parameters, ensuring that the same parameters always yield the same name.
estimate_space(params, info, interactions=None, **kwargs)
classmethod
¶
Estimate the train memory footprint of the model in MB.
Source code in warprec/recommenders/base_recommender.py
from_checkpoint(checkpoint, strict=True, **kwargs)
classmethod
¶
Load a WarpRec checkpoint model state with custom parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
checkpoint
|
Any
|
The checkpoint containing the model state and other parameter required for initialization. |
required |
strict
|
bool
|
Wether or not to load the model using strict mode. |
True
|
**kwargs
|
Any
|
The additional keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
Recommender |
Recommender
|
The Recommender model instance. |
Raises:
| Type | Description |
|---|---|
ValueError
|
When trying to load a model checkpoint of a different model. |
Source code in warprec/recommenders/base_recommender.py
get_name_from_params(params)
classmethod
¶
Generates a deterministic coolname based on a dictionary of parameters.
Source code in warprec/recommenders/base_recommender.py
get_params()
¶
Get the model parameters as a dictionary.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
The dictionary containing the model parameters. |
Source code in warprec/recommenders/base_recommender.py
get_state()
¶
Returns the enriched state_dict of the WarpRec model.
The returned dictionary contains all the information required to fully restore the model state, including additional metadata beyond the standard PyTorch state_dict.
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dict[str, Any]: An enriched dictionary representing the model state. |
Source code in warprec/recommenders/base_recommender.py
init_params(params)
¶
This method sets up the model with the correct parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict
|
The dictionary with the model params. |
required |
Source code in warprec/recommenders/base_recommender.py
predict(*args, item_indices=None, **kwargs)
abstractmethod
¶
This method will produce the final predictions in the form of a dense Tensor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
Any
|
List of arguments. |
()
|
item_indices
|
Optional[Tensor]
|
The batch of item indices. If None, full prediction will be produced. |
None
|
**kwargs
|
Any
|
The dictionary of keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
The score matrix {user x item}. |
Source code in warprec/recommenders/base_recommender.py
set_seed(seed)
¶
Set random seed for reproducibility.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seed
|
int
|
The seed value to be used. |
required |
Source code in warprec/recommenders/base_recommender.py
warprec.recommenders.base_recommender.IterativeRecommender
¶
Bases: Recommender, LightningModule
Interface for recommendation model that use an iterative approach to be trained.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict
|
The dictionary with the model params. |
required |
info
|
dict
|
The dictionary containing dataset information. |
required |
*args
|
Any
|
Argument for PyTorch LightningModule. |
()
|
seed
|
int
|
The seed to use for reproducibility. |
42
|
**kwargs
|
Any
|
Keyword argument for PyTorch LightningModule. |
{}
|
Attributes:
| Name | Type | Description |
|---|---|---|
epochs |
int
|
The number of epochs used to train the model. |
learning_rate |
float
|
The learning rate using during optimization. |
Source code in warprec/recommenders/base_recommender.py
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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 | |
configure_optimizers()
¶
Standard Lightning method to define optimizers.
This method separates parameters into two groups: 1. Decay Group: - Dense layers weights (Linear, Conv). - Structural embeddings (e.g., Positional Embeddings). 2. No-Decay Group: - Sparse Entity Embeddings (User/Item) -> Handled manually by EmbLoss. - Biases -> Standard DL practice (no decay). - LayerNorm weights -> Standard Transformer practice (no decay).
Source code in warprec/recommenders/base_recommender.py
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 | |
forward(*args, **kwargs)
abstractmethod
¶
This method process a forward step of the model.
All recommendation models that implement a neural network or any kind of backpropagation must implement this method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
Any
|
List of arguments. |
()
|
**kwargs
|
Any
|
The dictionary of keyword arguments. |
{}
|
Source code in warprec/recommenders/base_recommender.py
get_dataloader(interactions, sessions, **kwargs)
abstractmethod
¶
Returns a PyTorch DataLoader for the given interactions.
The DataLoader should provide batches suitable for the model's training.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interactions
|
Interactions
|
The interaction of users with items. |
required |
sessions
|
Sessions
|
The sessions of the users. |
required |
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
DataLoader |
DataLoader
|
The dataloader that will be used by the model during train. |
Source code in warprec/recommenders/base_recommender.py
on_save_checkpoint(checkpoint)
¶
PyTorch Lightning hook used during checkpoint saving.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
checkpoint
|
Dict[str, Any]
|
The dictionary containing the checkpoint information. |
required |
Source code in warprec/recommenders/base_recommender.py
training_step(batch, batch_idx)
abstractmethod
¶
Performs a single training step for a given batch.
This is a standard method defined by PyTorch Lightning.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
Any
|
A single batch of data from the DataLoader. |
required |
batch_idx
|
int
|
The current current batch index. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
The computed loss for the batch. |
Source code in warprec/recommenders/base_recommender.py
validation_step(batch, batch_idx)
¶
PyTorch Lightning needs this method to be implemented to correctly perform the on_validation_epoch_end callback.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
Any
|
A single batch of data from the DataLoader. |
required |
batch_idx
|
int
|
The current current batch index. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
The batch of data from the DataLoader. |
Source code in warprec/recommenders/base_recommender.py
warprec.recommenders.base_recommender.ContextRecommenderUtils
¶
Bases: Module, ABC
Common definition for context-aware recommenders.
This Mixin handles
- Initialization of context dimensions.
- Creation of standard Biases (Global, User, Item, Context).
- Creation of Context Embeddings (to avoid boilerplate loops in models).
- Helper methods for Linear computation and Regularization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict
|
Model parameters. |
required |
info
|
dict
|
The dictionary containing dataset information. |
required |
*args
|
Any
|
Variable length argument list. |
()
|
interactions
|
Optional[Interactions]
|
The training interactions. |
None
|
**kwargs
|
Any
|
Arbitrary keyword arguments. |
{}
|
Attributes:
| Name | Type | Description |
|---|---|---|
n_users |
int
|
Number of users. |
n_items |
int
|
Number of items. |
embedding_size |
int
|
The size of the latent vectors. |
batch_size |
int
|
The batch size used for training. |
neg_samples |
int
|
Number of negative samples for training. |
merged_feature_embedding |
Optional[Embedding]
|
Single feature embedding. |
merged_feature_bias |
Optional[Embedding]
|
Single feature bias. |
feature_offsets |
Optional[Tensor]
|
Offset buffer to index the single embedding. |
merged_context_embedding |
Optional[Embedding]
|
Single context embedding. |
merged_context_bias |
Optional[Embedding]
|
Single context bias. |
context_offsets |
Optional[Tensor]
|
Offset buffer to index the single context. |
Source code in warprec/recommenders/base_recommender.py
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | |
compute_first_order(user, item, features, contexts)
¶
Computes the First-Order Linear part.
Formula: global_bias + user_bias + item_bias + sum(feature_biases) + sum(context_biases)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user
|
Tensor
|
User indices. |
required |
item
|
Tensor
|
Item indices. |
required |
features
|
Optional[Tensor]
|
Feature indices [batch_size, n_features]. |
required |
contexts
|
Optional[Tensor]
|
Context indices [batch_size, n_contexts]. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
The linear score [batch_size]. |
Source code in warprec/recommenders/base_recommender.py
get_dataloader(interactions, sessions, **kwargs)
¶
Common dataloader retrieval used by contextual models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interactions
|
Interactions
|
The interaction of users with items. |
required |
sessions
|
Sessions
|
The sessions of the users. |
required |
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
DataLoader |
DataLoader
|
The appropriate dataloader for the training. |
Source code in warprec/recommenders/base_recommender.py
get_reg_params(user, item, features, contexts)
¶
Helper to extract ALL embeddings and biases for regularization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user
|
Tensor
|
User indices. |
required |
item
|
Tensor
|
Item indices. |
required |
features
|
Optional[Tensor]
|
Feature indices. |
required |
contexts
|
Optional[Tensor]
|
Context indices. |
required |
Returns:
| Type | Description |
|---|---|
List[Tensor]
|
List[Tensor]: List of embeddings and biases to be passed to the Reg Loss. |
Source code in warprec/recommenders/base_recommender.py
warprec.recommenders.base_recommender.SequentialRecommenderUtils
¶
Bases: ABC
Common definition for sequential recommenders.
Collection of common method used by all sequential recommenders.
Attributes:
| Name | Type | Description |
|---|---|---|
max_seq_len |
int
|
This value will be used to truncate user sequences. More recent transaction will have priority over older ones in case a sequence needs to be truncated. If a sequence is smaller than the max_seq_len, it will be padded. |
Source code in warprec/recommenders/base_recommender.py
warprec.recommenders.base_recommender.ItemSimRecommender
¶
Bases: Recommender
ItemSimilarity common interface.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
dict
|
The dictionary with the model params. |
required |
info
|
dict
|
The dictionary containing dataset information. |
required |
interactions
|
Interactions
|
The training interactions. |
required |
*args
|
Any
|
Argument for PyTorch nn.Module. |
()
|
seed
|
int
|
The seed to use for reproducibility. |
42
|
**kwargs
|
Any
|
Keyword argument for PyTorch nn.Module. |
{}
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If the items value was not passed through the info dict. |
Source code in warprec/recommenders/base_recommender.py
predict(user_indices, *args, item_indices=None, **kwargs)
¶
Prediction in the form of X@B where B is a {item x item} similarity matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_indices
|
Tensor
|
The batch of user indices. |
required |
*args
|
Any
|
List of arguments. |
()
|
item_indices
|
Optional[Tensor]
|
The batch of item indices. If None, full prediction will be produced. |
None
|
**kwargs
|
Any
|
The dictionary of keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
The score matrix {user x item}. |
Source code in warprec/recommenders/base_recommender.py
warprec.recommenders.collaborative_filtering_recommender.graph_based.graph_utils.GraphRecommenderUtils
¶
Bases: Module
Common definition for graph recommenders.
Collection of common method used by all graph recommenders.
Source code in warprec/recommenders/collaborative_filtering_recommender/graph_based/graph_utils.py
10 11 12 13 14 15 16 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 | |
eval()
¶
Override eval mode to empty the cache when switching to evaluation.
Source code in warprec/recommenders/collaborative_filtering_recommender/graph_based/graph_utils.py
get_adj_mat(interaction_matrix, n_users, n_items, normalize=False)
¶
Get the normalized interaction matrix of users and items.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interaction_matrix
|
coo_matrix
|
The full interaction matrix in coo format. |
required |
n_users
|
int
|
The number of users. |
required |
n_items
|
int
|
The number of items. |
required |
normalize
|
bool
|
Wether or not to normalize the sparse adjacency matrix. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
SparseTensor |
SparseTensor
|
The sparse adjacency matrix. |
Source code in warprec/recommenders/collaborative_filtering_recommender/graph_based/graph_utils.py
get_ego_embeddings(user_embedding, item_embedding)
¶
Get the initial embedding of users and items and combine to an embedding matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_embedding
|
Embedding
|
The user embeddings. |
required |
item_embedding
|
Embedding
|
The item embeddings. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tensor |
Tensor
|
Combined user and item embeddings. |
Source code in warprec/recommenders/collaborative_filtering_recommender/graph_based/graph_utils.py
propagate_embeddings()
¶
Retrieve the propagate user and item embeddings.
Subsequent calls will return the cached values, speeding up the evaluation process.
Returns:
| Type | Description |
|---|---|
Tuple[Tensor, Tensor]
|
Tuple[Tensor, Tensor]: (User Embeddings, Item Embeddings) |
Source code in warprec/recommenders/collaborative_filtering_recommender/graph_based/graph_utils.py
train(mode=True)
¶
Override train mode to empty the cache when switching to training.