Struct sbr::models::ewma::ImplicitEWMAModel[][src]

pub struct ImplicitEWMAModel { /* fields omitted */ }

Implicit EWMA model.

Methods

impl ImplicitEWMAModel
[src]

Fit the EWMA model.

Trait Implementations

impl Debug for ImplicitEWMAModel
[src]

Formats the value using the given formatter. Read more

impl Clone for ImplicitEWMAModel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl OnlineRankingModel for ImplicitEWMAModel
[src]

The representation the model computes from past interactions.

Compute a user representation from past interactions.

Given a user representation, rank item_ids according to how likely the user is to interact with them in the future. Read more

Auto Trait Implementations