Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug? #16

Open
Muuuh219 opened this issue Jun 16, 2022 · 2 comments
Open

Bug? #16

Muuuh219 opened this issue Jun 16, 2022 · 2 comments

Comments

@Muuuh219
Copy link

Hello,

First of all, thank you for implementiv VAT and iVAT! In the function compute_ivat_ordered_dissimilarity_matrix, the iVAT matrix is computed, but it is not symmetric in the end. Is is possible that there is some bug? I fixed it for now with the following code:
I changed
return re_ordered_matrix
to
for i in range(re_ordered_matrix.shape[0]):
for j in range(i):
re_ordered_matrix[j, i] = re_ordered_matrix[i, j]
return re_ordered_matrix

Sincere regards!

@lachhebo
Copy link
Owner

Hello,

Thanks, can you tell me which version of the package you are using and if possible an example on which the ivat algorithm return a non symmetric matrix.

Thanks

@Muuuh219
Copy link
Author

Muuuh219 commented Aug 31, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants