regression.h 857 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// The contents of this file are in the public domain. 
// See LICENSE_FOR_EXAMPLE_PROGRAMS.txt (in trunk/examples)
// Authors:
//   Gregory Sharp
//   Davis King

#ifndef DLIB_MLTOOL_REGREsSION_H__
#define DLIB_MLTOOL_REGREsSION_H__

#include "common.h"
#include <vector>

void
krr_test (
Davis King's avatar
Davis King committed
15
    command_line_parser& parser,
16
17
18
19
20
21
    std::vector<dense_sample_type>& dense_samples,
    std::vector<double>& labels
);

void
krls_test (
Davis King's avatar
Davis King committed
22
    command_line_parser& parser,
23
24
25
26
27
28
    std::vector<dense_sample_type>& dense_samples,
    std::vector<double>& labels
);

void
mlp_test (
Davis King's avatar
Davis King committed
29
    command_line_parser& parser,
30
31
32
33
34
35
    std::vector<dense_sample_type>& dense_samples,
    std::vector<double>& labels
);

void
svr_test (
Davis King's avatar
Davis King committed
36
    command_line_parser& parser,
37
38
39
40
41
42
    std::vector<dense_sample_type>& dense_samples,
    std::vector<double>& labels
);

#endif // DLIB_MLTOOL_REGREsSION_H__