Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vowpalwabbit/example.h')
-rw-r--r--vowpalwabbit/example.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/vowpalwabbit/example.h b/vowpalwabbit/example.h
index 8abbade7..9732d4a1 100644
--- a/vowpalwabbit/example.h
+++ b/vowpalwabbit/example.h
@@ -85,17 +85,17 @@ struct flat_example
{
polylabel l;
- size_t tag_len;
- char* tag;//An identifier for the example.
-
- size_t example_counter;
- uint32_t ft_offset;
- float global_weight;
-
- size_t num_features;//precomputed, cause it's fast&easy.
- float total_sum_feat_sq;//precomputed, cause it's kind of fast & easy.
- size_t feature_map_len;
- feature* feature_map; //map to store sparse feature vectors
+ size_t tag_len;
+ char* tag;//An identifier for the example.
+
+ size_t example_counter;
+ uint32_t ft_offset;
+ float global_weight;
+
+ size_t num_features;//precomputed, cause it's fast&easy.
+ float total_sum_feat_sq;//precomputed, cause it's kind of fast & easy.
+ size_t feature_map_len;
+ feature* feature_map; //map to store sparse feature vectors
};
flat_example* flatten_example(vw& all, example *ec);