Open verazuo opened 6 years ago
I guess the author used tf0.12, so I try to use a ubuntu16.0.4 machine with tf0.12 and solved the problem, but then I also meet the problem of IndexError: index out of bounds However, I still want to know how to solve the problem above, do you have any idea?
'adj_y' of batch_matmul is corresponding to the 'adjoint_b' of matmul. So, change the code to:
tf.matmul(a_til_concat, til_bl_3dim, adjoint_b = True)
https://github.com/ganeshjawahar/mem_absa/blob/5b7770243e3cbf0b50cfb0206f1b578a49205669/model.py#L82 Hello, I am running the code in Windows10. And I met a error in this line. Below is the error report
I try to change the
batch_matmul
tomatmul
based on this issue of tf Then I met this error below.So I delete 'adj_y',now the line has changed like below.
This is the Traceback info.
Do you have any idea to deal with this error? Coud you please tell me the develop-environment and configure of your repository? Thands a lot.