(self, inputs, **kwargs)
| 25 | self.out_fc = tf.layers.Dense(logits_dim, use_bias=False) |
| 26 | |
| 27 | def __call__(self, inputs, **kwargs): |
| 28 | return self.out_fc(inputs) |
| 29 | |
| 30 | class PosNegLogits(object): |
| 31 | def __call__(self, emb, pos_emb, neg_emb): |
nothing calls this directly
no outgoing calls
no test coverage detected