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

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