hello world!

Results 1 issues of hello world!

In the paper, **Attention is All You Need**, query, key, value are linear transformed at the multi-head attention. ` Q = tf.layers.dense(queries, d_model, use_bias=True) # (N, T_q, d_model) K =...