Add manage to release targets
This commit is contained in:
parent
a6bb22dfb5
commit
2d7999d5f2
2
Makefile
2
Makefile
@ -35,7 +35,7 @@ release: ## Build a Release version of the project
|
|||||||
@if [ -d ./build ]; then rm -rf ./build; fi
|
@if [ -d ./build ]; then rm -rf ./build; fi
|
||||||
@mkdir build;
|
@mkdir build;
|
||||||
cmake -S . -B build -D CMAKE_BUILD_TYPE=Release; \
|
cmake -S . -B build -D CMAKE_BUILD_TYPE=Release; \
|
||||||
cmake --build build -t main -t BayesNetSample -j 32;
|
cmake --build build -t main -t BayesNetSample -t manage -j 32;
|
||||||
@echo ">>> Done";
|
@echo ">>> Done";
|
||||||
|
|
||||||
test: ## Run tests
|
test: ## Run tests
|
||||||
|
@ -5,11 +5,7 @@ namespace bayesnet {
|
|||||||
BoostAODE::BoostAODE() : Ensemble() {}
|
BoostAODE::BoostAODE() : Ensemble() {}
|
||||||
void BoostAODE::buildModel(const torch::Tensor& weights)
|
void BoostAODE::buildModel(const torch::Tensor& weights)
|
||||||
{
|
{
|
||||||
// models.clear();
|
// Models shall be built in trainModel
|
||||||
// for (int i = 0; i < features.size(); ++i) {
|
|
||||||
// models.push_back(std::make_unique<SPODE>(i));
|
|
||||||
// }
|
|
||||||
// n_models = models.size();
|
|
||||||
}
|
}
|
||||||
void BoostAODE::trainModel(const torch::Tensor& weights)
|
void BoostAODE::trainModel(const torch::Tensor& weights)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user