fastrtext (version 0.3.3)

get_hamming_loss: Hamming loss

Description

Compute the hamming loss. When there is only one category, this measure the accuracy.

Usage

get_hamming_loss(labels, predictions)

Arguments

labels

list of labels

predictions

list returned by the predict command (including both the probability and the categories)

Value

a scalar with the loss

Examples

Run this code
# NOT RUN {
library(fastrtext)
data("test_sentences")
model_test_path <- system.file("extdata", "model_classification_test.bin", package = "fastrtext")
model <- load_model(model_test_path)
sentences <- test_sentences[, "text"]
test_labels <- test_sentences[, "class.text"]
predictions <- predict(model, sentences)
get_hamming_loss(as.list(test_labels), predictions)

# }

Run the code above in your browser using DataCamp Workspace