crslab.model.policy.pmi package

Submodules

PMI

class crslab.model.policy.pmi.pmi.PMIModel(opt, device, vocab, side_data)[source]

Bases: crslab.model.base.BaseModel

topic_class_num

A integer indicating the number of topic.

pad_topic

A integer indicating the id of topic padding.

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(*args, **kwargs)[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