Created
December 8, 2019 16:02
-
-
Save AlexTitovWork/a8959621f1f6af4cd0cfac19f076f3b6 to your computer and use it in GitHub Desktop.
Revisions
-
AlexTitovWork created this gist
Dec 8, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ /** * Build prepared classifier on the training data */ public void fit() { try { classifier.buildClassifier(trainData); } catch (Exception e) { LOGGER.warning(e.getMessage()); } }