b3a133bd671f6a941380d33bf4980604a237bc80,nlp_architect/models/transformers/token_classification.py,XLNetForTokenClassification,__init__,#XLNetForTokenClassification#Any#,83

Before Change


class XLNetForTokenClassification(XLNetPreTrainedModel):
    def __init__(self, config):
        super(XLNetForTokenClassification, self).__init__(config)
        raise NotImplementedError

    def forward(self, input_ids, token_type_ids=None, input_mask=None, attention_mask=None,
                mems=None, perm_mask=None, target_mapping=None,
                labels=None, head_mask=None):

After Change



        self.transformer = XLNetModel(config)
        self.logits_proj = torch.nn.Linear(config.d_model, config.num_labels)
        self.dropout = torch.nn.Dropout(config.dropout)

        self.apply(self.init_weights)

    def forward(self, input_ids, token_type_ids=None, input_mask=None, attention_mask=None,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: NervanaSystems/nlp-architect
Commit Name: b3a133bd671f6a941380d33bf4980604a237bc80
Time: 2019-10-22
Author: peter.izsak@intel.com
File Name: nlp_architect/models/transformers/token_classification.py
Class Name: XLNetForTokenClassification
Method Name: __init__


Project Name: allenai/allennlp
Commit Name: 700abc65fd2172a2c6809dd9b72cf50fc2407772
Time: 2020-02-03
Author: mattg@allenai.org
File Name: allennlp/models/encoder_decoders/composed_seq2seq.py
Class Name: ComposedSeq2Seq
Method Name: __init__


Project Name: allenai/allennlp
Commit Name: 700abc65fd2172a2c6809dd9b72cf50fc2407772
Time: 2020-02-03
Author: mattg@allenai.org
File Name: allennlp/models/simple_tagger.py
Class Name: SimpleTagger
Method Name: __init__