Audit - VowpalWabbit/vowpal_wabbit GitHub Wiki
-a [ --audit ] Turn on audit output for feature weight debugging
The audit option is useful for debugging and for accessing the features and values for each example as well as the values in VW's weight vector. The format depends on the mode VW is running on. The format used for the non-LDA case is:
prediction tag (namespace^feature[\[offset\]]:hashindex:value:weight[@ssgrad] )*
predictionis VW's prediction on the example with tagtag- Then there's a list of feature information:
namespaceis the namespace where the feature belongsfeatureis the name of the feature[offset]is present when there are multiple learners in use. The weights for the zeroth learner are implicit when the[offset]is not shown, the first non-zero offset therefore starts from index 1. You'll notice thehashindexare sequential for the subsequent offsets.
hashindexis the position where it hashesvalueis the value of the featureweightis the current learned weight associated with that featuressgradis the sum of squared gradients (plus 1) if adaptive updates are used