Unverified Commit adab7f83 authored by Sho Arora's avatar Sho Arora Committed by GitHub
Browse files

Add nn.Module as superclass (#4533)

parent 8f7c1c76
...@@ -149,7 +149,7 @@ MMBT_INPUTS_DOCSTRING = r""" Inputs: ...@@ -149,7 +149,7 @@ MMBT_INPUTS_DOCSTRING = r""" Inputs:
MMBT_START_DOCSTRING, MMBT_START_DOCSTRING,
MMBT_INPUTS_DOCSTRING, MMBT_INPUTS_DOCSTRING,
) )
class MMBTModel(ModuleUtilsMixin): class MMBTModel(nn.Module, ModuleUtilsMixin):
r""" r"""
Outputs: `Tuple` comprising various elements depending on the configuration (config) and inputs: Outputs: `Tuple` comprising various elements depending on the configuration (config) and inputs:
**last_hidden_state**: ``torch.FloatTensor`` of shape ``(batch_size, sequence_length, hidden_size)`` **last_hidden_state**: ``torch.FloatTensor`` of shape ``(batch_size, sequence_length, hidden_size)``
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment