Computes hamming distance.
metric_hamming_distance(actuals, predictions)
actuals | actual value |
---|---|
predictions | predicted value |
hamming distance: float
Hamming distance is for comparing two binary strings. It is the number of bit positions in which two bits are different.
if (FALSE) { actuals = tf$constant(as.integer(c(1, 1, 0, 0, 1, 0, 1, 0, 0, 1)), dtype=tf$int32) predictions = tf$constant(as.integer(c(1, 0, 0, 0, 1, 0, 0, 1, 0, 1)),dtype=tf$int32) result = metric_hamming_distance(actuals, predictions) paste('Hamming distance: ', result$numpy()) }