(self, path)
| 408 | return self.dec_values |
| 409 | |
| 410 | def save_to_file(self, path): |
| 411 | thundersvm.save_to_file_scikit(c_void_p(self.model), path.encode('utf-8')) |
| 412 | |
| 413 | def load_from_file(self, path): |
| 414 | if self.model is None: |
nothing calls this directly
no outgoing calls
no test coverage detected