We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d7513 commit 4f97341Copy full SHA for 4f97341
cpp/pythonbinding.cpp
@@ -11,7 +11,7 @@ namespace py = pybind11;
11
12
PYBIND11_MODULE(aplr_cpp, m) {
13
py::class_<APLRRegressor>(m, "APLRRegressor",py::module_local())
14
- .def(py::init<int&, double&, int&, std::string&,std::string&,int&,double&,double&,int&,int&,int&,int&,int&,int&,int&,int&,double&>(),bool&,bool&,
+ .def(py::init<int&, double&, int&, std::string&,std::string&,int&,double&,double&,int&,int&,int&,int&,int&,int&,int&,int&,double&,bool&,bool&>(),
15
py::arg("m")=1000,py::arg("v")=0.1,py::arg("random_state")=0,py::arg("family")="gaussian",py::arg("link_function")="identity",
16
py::arg("n_jobs")=0,py::arg("validation_ratio")=0.2,py::arg("intercept")=NAN_DOUBLE,
17
py::arg("reserved_terms_times_num_x")=100,py::arg("bins")=300,py::arg("verbosity")=0,
0 commit comments