We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EasyRec/easy_rec/python/model/pdn.py
Lines 43 to 45 in d965fb7
代码中实现的是:
trigger_out = tf.exp(<dnn output>) sim_out = tf.exp(<dnn output>) logits = tf.multiplay(sim_out, trigger_out)
相当于是:
$$ PATH_{uji} = e^{t_{uj}} e^{s_{ji}} $$
论文中的合并公式(公式(10))是:
$$ PATH_{uji} = MEG(t_{uj}, s_{ji}) = \ln(1 + e^{t_{uj}} e^{s_{ji}}) $$
The text was updated successfully, but these errors were encountered:
@wwxxzz
Sorry, something went wrong.
No branches or pull requests
EasyRec/easy_rec/python/model/pdn.py
Lines 43 to 45 in d965fb7
代码中实现的是:
相当于是:
论文中的合并公式(公式(10))是:
The text was updated successfully, but these errors were encountered: