nilezhou

Results 5 comments of nilezhou

> According to the paper "Get-to-the-Point", eq10, coverage vector is the sum of previous encoder attentions. Thanks, you're right. I want to ask more about the mechanism. When the amount...

> Sorry, I have tried some experiments using this repo but I can not reproduce the result on CNNDM, So, maybe there are still some errors in the repo. Additionally,...

I compile on Windows and Linux. However run with same PCM files, get diffierent F32 files

> I compile on Windows and Linux. However run with same PCM files, get diffierent F32 files two F32 have the same size, data Not

`import tensorflow as tf import time def leakyrelu(x, alpha=0.3, name='lrelu'): return tf.maximum(x, alpha * x, name=name) def downconv(x, output_dim, kwidth=5, pool=2, init=None, uniform=False, bias_init=None, name='downconv'): """ Downsampled convolution 1d """...