Created
December 8, 2019 16:02
-
-
Save AlexTitovWork/a8959621f1f6af4cd0cfac19f076f3b6 to your computer and use it in GitHub Desktop.
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 characters
/** | |
* Build prepared classifier on the training data | |
*/ | |
public void fit() { | |
try { | |
classifier.buildClassifier(trainData); | |
} catch (Exception e) { | |
LOGGER.warning(e.getMessage()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment