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

unique_sort.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78f5ec446483459b681a7fcc40e21c40799def91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD
license as described in the file LICENSE.
 */
#pragma once
#include "parser.h"
#include "example.h"

void unique_sort_features(bool audit, uint32_t parse_mask, example* ae);
int order_features(const void* first, const void* second);
void unique_features(v_array<feature>& features, int max = -1);