| 25 | } |
| 26 | |
| 27 | void _make_sparse_vector2 ( |
| 28 | std::vector<sparse_vect>& v |
| 29 | ) |
| 30 | { |
| 31 | for (unsigned long i = 0; i < v.size(); ++i) |
| 32 | make_sparse_vector_inplace(v[i]); |
| 33 | } |
| 34 | |
| 35 | py::tuple _load_libsvm_formatted_data( |
| 36 | const std::string& file_name |
nothing calls this directly
no test coverage detected