interfacegan
interfacegan copied to clipboard
Issue regarding method linear_interpolate in file utils/manipulator.py
Thank you for this great work. My question relates to the method linear_interpolate in file utils/manipulator.py. In the following line of code: > linspace = linspace - latent_code.dot(boundary.T) I suppose you intend to compute the distance from the SVM boundary line using the term latent_code.dot(boundary.T). However, this term computes the distance only if the boundary line passes through the axes origin. That is, if the constant in the decision function (i.e., boundary line function) is zero. Can you please let me know whether I am missing something?