| 347 | } |
| 348 | |
| 349 | void save_to_file_scikit(SvmModel *model, char *path){ |
| 350 | model->save_to_file(path); |
| 351 | } |
| 352 | |
| 353 | void load_from_file_scikit(SvmModel *model, char *path) { |
| 354 | model->load_from_file(path); |
nothing calls this directly
no test coverage detected