| 139 | // ---------------------------------------------------------------------------------------- |
| 140 | |
| 141 | void bind_svm_struct(py::module& m) |
| 142 | { |
| 143 | m.def("solve_structural_svm_problem",solve_structural_svm_problem, py::arg("problem"), |
| 144 | "This function solves a structural SVM problem and returns the weight vector \n\ |
| 145 | that defines the solution. See the example program python_examples/svm_struct.py \n\ |
| 146 | for documentation about how to create a proper problem object. " |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | // ---------------------------------------------------------------------------------------- |
| 151 | |