Brush C++ API
A flexible interpretable machine learning framework
Loading...
Searching...
No Matches
bind_engines.cpp
Go to the documentation of this file.
1#include "module.h"
2#include "bind_engines.h"
3
4namespace py = pybind11;
5namespace br = Brush;
6namespace nl = nlohmann;
7
8void bind_engines(py::module& m)
9{
10 bind_engine<Reg>(m, "RegressorEngine");
11 bind_engine<Cls>(m, "ClassifierEngine");
12
13 // TODO: make these work
14 bind_engine<br::MulticlassClassifierEngine>(m, "MultiClassifierEngine");
15 bind_engine<br::RepresenterEngine>(m, "RepresenterEngine");
16}
void bind_engines(py::module &m)
void bind_engine(py::module &m, string name)
< nsga2 selection operator for getting the front
Definition data.cpp:12