You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: