Ashima Garg
Ashima Garg
Hi, Thanks for the great repository! Please tell what is interleave function doing in the code? It is not clear from the code itself and there is nothing mentioned about...
Hi @thushv89 , Thanks for your tutorial on neural machine translation. I am a newbie to this field and getting stuck in the data pre-processing part of the code. def...
Thanks for the nice repository! - Have you tried a combination of multiple convolutional layers followed by a fully-connected layer with a decoder mirror of that? - I have observed...
Hi @Edwardlzy , I am replicating the same paper . I am having trouble pre-processing the input image. This function is normalizing image converted to YCB_CR format . Where in...
``` res = np.dot(np.linalg.inv(A.T * A) * A.T, B) ``` What is the purpose of the above statement? It is giving an error: "numpy.linalg.linalg.LinAlgError: Singular matrix" I tried using replacing...