Prepare classifier
()
| 103 | /// Prepare classifier |
| 104 | /// </summary> |
| 105 | public void prepare () |
| 106 | { |
| 107 | int res = MLModuleLibrary.prepare (input_json); |
| 108 | if (res != (int)BrainFlowExitCodes.STATUS_OK) |
| 109 | { |
| 110 | throw new BrainFlowError (res); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | /// <summary> |
| 115 | /// Release classifier |