crslab.model.recommendation.popularity package

Submodules

Popularity

class crslab.model.recommendation.popularity.popularity.PopularityModel(opt, device, vocab, side_data)[source]

Bases: crslab.model.base.BaseModel

item_size

A integer indicating the number of items.

Parameters
  • opt (dict) – A dictionary record the hyper parameters.

  • device (torch.device) – A variable indicating which device to place the data and model.

  • vocab (dict) – A dictionary record the vocabulary information.

  • side_data (dict) – A dictionary record the side data.

build_model()[source]

build model

forward(batch, mode)[source]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

Module contents