4namespace py = pybind11;
8using stream_redirect = py::call_guard<py::scoped_ostream_redirect, py::scoped_estream_redirect>;
15 py::class_<br::SearchSpace>(m,
"SearchSpace")
18 SS.init(data, {}, weights_init);
22 py::arg(
"weights_init") = true )
23 .def(py::init<
const Dataset&,
const unordered_map<string,float>&,
27 py::arg(
"weights_init") =
true )
30 py::arg(
"max_size") = 0,
34 py::arg(
"max_size") = 0,
36 .def(
"make_multiclass_classifier",
39 py::arg(
"max_size") = 0,
43 py::arg(
"max_size") = 0,
py::call_guard< py::scoped_ostream_redirect, py::scoped_estream_redirect > stream_redirect
void bind_search_space(py::module &m)
py::call_guard< py::scoped_ostream_redirect, py::scoped_estream_redirect > stream_redirect
holds variable type data.
< nsga2 selection operator for getting the front
Holds a search space, consisting of operations and terminals and functions, and methods to sample tha...
void print() const
prints the search space map.
RegressorProgram make_regressor(int max_d=0, int max_size=0, const Parameters ¶ms=Parameters())
Makes a random regressor program. Convenience wrapper for make_program.
RepresenterProgram make_representer(int max_d=0, int max_size=0, const Parameters ¶ms=Parameters())
Makes a random representer program. Convenience wrapper for make_program.
MulticlassClassifierProgram make_multiclass_classifier(int max_d=0, int max_size=0, const Parameters ¶ms=Parameters())
Makes a random multiclass classifier program. Convenience wrapper for make_program.
ClassifierProgram make_classifier(int max_d=0, int max_size=0, const Parameters ¶ms=Parameters())
Makes a random classifier program. Convenience wrapper for make_program.