tomtung / omikuji

An efficient implementation of Partitioned Label Trees & its variations for extreme multi-label classification

Home Page:https://crates.io/crates/omikuji

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

n_features == n_labels ?

trpstra opened this issue · comments

let n_labels = tokens[1].parse::<usize>().or_else(|_| {

Both n_features and n_labels are derived from tokens[1], it seems. I think this might be a copy-paste error.

Yeah good catch, it should be tokens[2].