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
Added list-sampler with negative_ratio support, sequence sorting and group records by multiple columns
Added support for early stopping rules, with the first built-in rule being the MaxValidationRule
Slightly improve MemoryInteractionDataset performance by removing unneeded type casts and simplifying record conversion
Improve recommender training workflow, by abstracting gradient computation, weight updates and improve separation of concerns through specific functions that should focus on each subtask (new methods: _sample_batch(), _predict_batch(), _compute_batch_loss(), _compute_reg_loss())
Improve recommender logging: optional console (defaults to on) and file (defaults to off) logger, with error, warning and info logs
Allow passing custom parameters to InteractionDataset instances, when instantiating them through the integrated datasets submodule
Automatically compute regularization for recommenders that use tf.keras.Model or tf.keras.Layer trainable variables with any regularization parameter set
Change how metrics are passed to evaluation procedures, to improve readability and extensibility. Now instead of receiving tuples with functions and extra params, it receives callable instances of those metrics: