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
Currently, the system has implemented two distance functions:
WAD Absolute Difference of Weighted Sums
HD Hamming Distance
Both have their pros and their cons, for example WAD fails if two nodes have the same weights, and HD does not have any weight information.
For this reason, we will implement and test different distance functions:
WHD Weighted Hamming distance #38
Similar to hamming distance, if a bit is flipped its value is counted, but instead of all bits having value 1, their value is the weight of the node.
The text was updated successfully, but these errors were encountered:
Currently, the system has implemented two distance functions:
WAD
Absolute Difference of Weighted SumsHD
Hamming DistanceBoth have their pros and their cons, for example
WAD
fails if two nodes have the same weights, andHD
does not have any weight information.For this reason, we will implement and test different distance functions:
WHD
Weighted Hamming distance #38Similar to hamming distance, if a bit is flipped its value is counted, but instead of all bits having value
1
, their value is the weight of the node.The text was updated successfully, but these errors were encountered: