Update modeling_sim.py
Browse files- modeling_sim.py +4 -5
modeling_sim.py
CHANGED
@@ -11,8 +11,7 @@ class SimModel(MobileBertPreTrainedModel):
|
|
11 |
self.post_init()
|
12 |
|
13 |
def forward(self, input_ids, attention_mask, token_type_ids, return_dict):
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
return (self.word_embeddings(input_ids), None, None)
|
|
|
11 |
self.post_init()
|
12 |
|
13 |
def forward(self, input_ids, attention_mask, token_type_ids, return_dict):
|
14 |
+
embeddings = self.word_embeddings(input_ids)
|
15 |
+
masked_embeddings = embeddings * attention_mask[:, :, None]
|
16 |
+
mean_pooled_embeddings = masked_embeddings.sum(dim=1) / attention_mask[:, :, None].sum(dim=1)
|
17 |
+
return (embeddings, mean_pooled_embeddings, embeddings)
|
|