26 lines
1.8 KiB
C
26 lines
1.8 KiB
C
/**
|
|
* mlpack is free software; you may redistribute it and/or modify it under the
|
|
* terms of the 3-clause BSD license. You should have received a copy of the
|
|
* 3-clause BSD license along with mlpack. If not, see
|
|
* http://www.opensource.org/licenses/BSD-3-Clause for more information.
|
|
*/
|
|
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
|
|
#include "mlpack/core.hpp"
|
|
#include "mlpack/methods/random_forest/random_forest.hpp"
|
|
#include "mlpack/methods/decision_tree/random_dimension_select.hpp"
|
|
#include "mlpack/core/cv/k_fold_cv.hpp"
|
|
#include "mlpack/core/cv/metrics/accuracy.hpp"
|
|
#include "mlpack/core/cv/metrics/precision.hpp"
|
|
#include "mlpack/core/cv/metrics/recall.hpp"
|
|
#include "mlpack/core/cv/metrics/F1.hpp"
|