Commit 6989e96f authored by Davis King's avatar Davis King

Added per label bias features.

parent e2ea6cfa
......@@ -74,9 +74,9 @@ namespace dlib
{
const unsigned long NL = ss_feature_extractor::use_BIO_model ? 3 : 5;
if (ss_feature_extractor::use_high_order_features)
return NL*NL + (NL*NL+NL)*fe.num_features()*fe.window_size();
return NL + NL*NL + (NL*NL+NL)*fe.num_features()*fe.window_size();
else
return NL*NL + NL*fe.num_features()*fe.window_size();
return NL + NL*NL + NL*fe.num_features()*fe.window_size();
}
unsigned long order() const
......@@ -229,6 +229,11 @@ namespace dlib
// previous label and the current label.
if (y.size() > 1)
set_feature(offset + y(1)*num_labels() + y(0));
offset += num_labels()*num_labels();
// pull out an indicator feature for the current label. This is the per
// label bias.
set_feature(offset + y(0));
}
};
......@@ -245,9 +250,9 @@ namespace dlib
{
const unsigned long NL = feature_extractor::use_BIO_model ? 3 : 5;
if (feature_extractor::use_high_order_features)
return NL*NL + (NL*NL+NL)*fe.num_features()*fe.window_size();
return NL + NL*NL + (NL*NL+NL)*fe.num_features()*fe.window_size();
else
return NL*NL + NL*fe.num_features()*fe.window_size();
return NL + NL*NL + NL*fe.num_features()*fe.window_size();
}
// ----------------------------------------------------------------------------------------
......
......@@ -163,9 +163,9 @@ namespace dlib
the various label combination instead of 12*3.
Finally, while not shown here, we also include indicator features in
XI() to model label transitions. These are 9 extra features in the
case of the BIO tagging model and 25 extra in the case of the BILOU
tagging model.
XI() to model label transitions and individual label biases. These are
12 extra features in the case of the BIO tagging model and 30 extra in
the case of the BILOU tagging model.
THREAD SAFETY
Instances of this object are required to be threadsafe, that is, it should
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment