未验证 提交 a3be0848 编写于 作者: Q Qdriving 提交者: GitHub

Update model.py

yapf checked
上级 5a3bd669
...@@ -248,17 +248,18 @@ class Model(ModelBase): ...@@ -248,17 +248,18 @@ class Model(ModelBase):
keep_dim=True) keep_dim=True)
test_neg = fluid.layers.reduce_sum( test_neg = fluid.layers.reduce_sum(
fluid.layers.log( fluid.layers.reduce_sum(
fluid.layers.sigmoid( fluid.layers.log(
fluid.layers.reduce_sum( fluid.layers.sigmoid(
gru_out_pad[:, start_value:seq_shape[1] - 1, :] fluid.layers.reduce_sum(
* neg_seq_pad[:, start_value + 1:seq_shape[ gru_out_pad[:, start_value:seq_shape[1] - 1, :]
1], :], * neg_seq_pad[:, start_value + 1:seq_shape[
dim=2, 1], :],
keep_dim=True))), dim=2,
dim=2), keep_dim=True))),
dim=1, dim=2),
keep_dim=True) dim=1,
keep_dim=True)
aux_loss = fluid.layers.mean(test_neg + test_pos) aux_loss = fluid.layers.mean(test_neg + test_pos)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册