Update config file name
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -38,4 +38,4 @@ cmake-build*/**
|
|||||||
.idea
|
.idea
|
||||||
puml/**
|
puml/**
|
||||||
.vscode/settings.json
|
.vscode/settings.json
|
||||||
config.h
|
config_folding.h
|
@@ -6,3 +6,9 @@
|
|||||||

|

|
||||||
|
|
||||||
Folding header-only library for BayesNet classifiers & platform
|
Folding header-only library for BayesNet classifiers & platform
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make build && make test
|
||||||
|
```
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
configure_file(
|
configure_file(
|
||||||
"config.h.in"
|
"config.h.in"
|
||||||
"${Folding_SOURCE_DIR}/config.h" ESCAPE_QUOTES
|
"${Folding_SOURCE_DIR}/config_folding.h" ESCAPE_QUOTES
|
||||||
)
|
)
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <random>
|
#include <random>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "config.h"
|
#include "config_folding.h"
|
||||||
namespace folding {
|
namespace folding {
|
||||||
class Fold {
|
class Fold {
|
||||||
protected:
|
protected:
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <tuple>
|
#include <tuple>
|
||||||
#include "ArffFiles.h"
|
#include "ArffFiles.h"
|
||||||
#include "CPPFImdlp.h"
|
#include "CPPFImdlp.h"
|
||||||
#include "config.h"
|
#include "config_folding.h"
|
||||||
|
|
||||||
bool file_exists(const std::string& name);
|
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);
|
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);
|
||||||
|
Reference in New Issue
Block a user