| 62 | } |
| 63 | |
| 64 | void MLModel::release () |
| 65 | { |
| 66 | int res = ::release (serialized_params.c_str ()); |
| 67 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 68 | { |
| 69 | throw BrainFlowException ("failed to release classifier", res); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | ///////////////////////////////////////// |
| 74 | //////////// logging methods //////////// |
nothing calls this directly
no test coverage detected