Waikato / moa

MOA is an open source framework for Big Data stream mining. It includes a collection of machine learning algorithms (classification, regression, clustering, outlier detection, concept drift detection and recommender systems) and tools for evaluation.
http://moa.cms.waikato.ac.nz/
GNU General Public License v3.0
610 stars 353 forks source link

fixed single quote char support #149

Closed douglas444 closed 5 years ago

douglas444 commented 6 years ago

StreamTokenizer class gives suport to quotted string with single quote char, but ArffLoader was allowing only tokens with ttype 34 ( " ) and ignoring any token with ttype 39 ( ' ). This commit fix that.