Change include of library headers
This commit is contained in:
parent
8e2d05e663
commit
6899033806
@ -1,6 +1,6 @@
|
||||
#include <ArffFiles.h>
|
||||
#include <CPPFImdlp.h>
|
||||
#include "ensembles/BoostAODE.h"
|
||||
#include <ensembles/BoostAODE.h>
|
||||
|
||||
std::vector<mdlp::labels_t> discretizeDataset(std::vector<mdlp::samples_t>& X, mdlp::labels_t& y)
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "Proposal.h"
|
||||
#include "ArffFiles.h"
|
||||
#include <ArffFiles.h>
|
||||
|
||||
namespace bayesnet {
|
||||
Proposal::Proposal(torch::Tensor& dataset_, std::vector<std::string>& features_, std::string& className_) : pDataset(dataset_), pFeatures(features_), pClassName(className_) {}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <map>
|
||||
#include <torch/torch.h>
|
||||
#include "bayesian_network/Network.h"
|
||||
#include "CPPFImdlp.h"
|
||||
#include <CPPFImdlp.h>
|
||||
#include "Classifier.h"
|
||||
|
||||
namespace bayesnet {
|
||||
|
@ -5,8 +5,8 @@
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <tuple>
|
||||
#include "ArffFiles.h"
|
||||
#include "CPPFImdlp.h"
|
||||
#include <ArffFiles.h>
|
||||
#include <CPPFImdlp.h>
|
||||
|
||||
bool file_exists(const std::string& name);
|
||||
std::pair<vector<mdlp::labels_t>, map<std::string, int>> discretize(std::vector<mdlp::samples_t>& X, mdlp::labels_t& y, std::vector<string> features);
|
||||
|
Loading…
Reference in New Issue
Block a user