| 90 | typename U |
| 91 | > |
| 92 | bool is_binary_classification_problem ( |
| 93 | const T& x, |
| 94 | const U& x_labels |
| 95 | ) |
| 96 | { |
| 97 | return is_binary_classification_problem_impl(mat(x), mat(x_labels)); |
| 98 | } |
| 99 | |
| 100 | // ---------------------------------------------------------------------------------------- |
| 101 |