gitextract_04k4nztj/ ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── data/ │ ├── electNormNew.arff │ ├── hyperplanesampledata │ ├── hyperplanesampledata.arff.head │ ├── iris.arff │ ├── randomtreesampledata │ ├── randomtreesampledata.arff.head │ ├── stream2000_7anom.arff │ └── stream2500_51anom.arff ├── learn.sbt ├── project/ │ └── plugins.sbt ├── scripts/ │ ├── generateData.sh │ ├── instance_server/ │ │ ├── generate_dataset.py │ │ └── server.py │ └── spark.sh ├── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── github/ │ │ │ └── javacliparser/ │ │ │ ├── AbstractClassOption.java │ │ │ ├── AbstractOption.java │ │ │ ├── ClassOption.java │ │ │ ├── Configurable.java │ │ │ ├── FileOption.java │ │ │ ├── FlagOption.java │ │ │ ├── FloatOption.java │ │ │ ├── IntOption.java │ │ │ ├── JavaCLIParser.java │ │ │ ├── ListOption.java │ │ │ ├── MultiChoiceOption.java │ │ │ ├── Option.java │ │ │ ├── Options.java │ │ │ ├── SerializeUtils.java │ │ │ ├── StringOption.java │ │ │ ├── StringUtils.java │ │ │ └── examples/ │ │ │ ├── DoTask.java │ │ │ ├── Task1.java │ │ │ └── Task2.java │ │ └── scala/ │ │ └── org/ │ │ └── apache/ │ │ └── spark/ │ │ └── streamdm/ │ │ ├── classifiers/ │ │ │ ├── Classifier.scala │ │ │ ├── MultiClassLearner.scala │ │ │ ├── PerceptronLearner.scala │ │ │ ├── SGDLearner.scala │ │ │ ├── bayes/ │ │ │ │ └── MultinomialNaiveBayes.scala │ │ │ ├── meta/ │ │ │ │ ├── Bagging.scala │ │ │ │ └── RandomForest.scala │ │ │ ├── model/ │ │ │ │ ├── HingeLoss.scala │ │ │ │ ├── L1Regularizer.scala │ │ │ │ ├── L2Regularizer.scala │ │ │ │ ├── LinearModel.scala │ │ │ │ ├── LogisticLoss.scala │ │ │ │ ├── Loss.scala │ │ │ │ ├── PerceptronLoss.scala │ │ │ │ ├── Regularizer.scala │ │ │ │ ├── SquaredLoss.scala │ │ │ │ └── ZeroRegularizer.scala │ │ │ └── trees/ │ │ │ ├── ConditionalTest.scala │ │ │ ├── FeatureClassObserver.scala │ │ │ ├── FeatureSplit.scala │ │ │ ├── GaussianEstimator.scala │ │ │ ├── HoeffdingTree.scala │ │ │ ├── SplitCriterion.scala │ │ │ ├── Utils.scala │ │ │ └── nodes/ │ │ │ ├── ActiveLearningNode.scala │ │ │ ├── FoundNode.scala │ │ │ ├── InactiveLearningNode.scala │ │ │ ├── LearningNode.scala │ │ │ ├── LearningNodeNB.scala │ │ │ ├── LearningNodeNBAdaptive.scala │ │ │ ├── Node.scala │ │ │ └── SplitNode.scala │ │ ├── clusterers/ │ │ │ ├── Clusterer.scala │ │ │ ├── Clustream.scala │ │ │ ├── StreamKM.scala │ │ │ ├── clusters/ │ │ │ │ ├── BucketManager.scala │ │ │ │ ├── Clusters.scala │ │ │ │ ├── MicroCluster.scala │ │ │ │ ├── MicroClusters.scala │ │ │ │ └── TreeCoreset.scala │ │ │ └── utils/ │ │ │ └── KMeans.scala │ │ ├── core/ │ │ │ ├── ClassificationModel.scala │ │ │ ├── DenseInstance.scala │ │ │ ├── Example.scala │ │ │ ├── ExampleParser.scala │ │ │ ├── Instance.scala │ │ │ ├── Learner.scala │ │ │ ├── Model.scala │ │ │ ├── NullInstance.scala │ │ │ ├── SparseInstance.scala │ │ │ ├── TextInstance.scala │ │ │ └── specification/ │ │ │ ├── ExampleSpecification.scala │ │ │ ├── FeatureSpecification.scala │ │ │ ├── InstanceSpecification.scala │ │ │ └── SpecificationParser.scala │ │ ├── evaluation/ │ │ │ ├── BasicClassificationEvaluator.scala │ │ │ ├── ClusteringEvaluator.scala │ │ │ └── Evaluator.scala │ │ ├── outlier/ │ │ │ ├── Outlier.scala │ │ │ ├── OutlierModel.scala │ │ │ └── SWNearestNeighbors.scala │ │ ├── streamDMJob.scala │ │ ├── streams/ │ │ │ ├── FileReader.scala │ │ │ ├── KafkaReader.scala │ │ │ ├── PrintStreamWriter.scala │ │ │ ├── SampleDataWriter.scala │ │ │ ├── SocketTextStreamReader.scala │ │ │ ├── StreamReader.scala │ │ │ ├── StreamWriter.scala │ │ │ ├── TextStreamReader.scala │ │ │ └── generators/ │ │ │ ├── Cluster.scala │ │ │ ├── Generator.scala │ │ │ ├── HyperplaneGenerator.scala │ │ │ ├── RandomRBFEventsGenerator.scala │ │ │ ├── RandomRBFGenerator.scala │ │ │ ├── RandomTreeGenerator.scala │ │ │ └── SphereCluster.scala │ │ ├── tasks/ │ │ │ ├── ClusteringTrainEvaluate.scala │ │ │ ├── EvaluateOutlierDetection.scala │ │ │ ├── EvaluatePrequential.scala │ │ │ └── Task.scala │ │ └── utils/ │ │ ├── Statistics.scala │ │ └── Utils.scala │ └── test/ │ └── scala/ │ └── org/ │ └── apache/ │ └── spark/ │ └── streamdm/ │ ├── classifiers/ │ │ ├── bayes/ │ │ │ └── MultinomialNaiveBayesSuite.scala │ │ ├── model/ │ │ │ ├── HingeLossSuite.scala │ │ │ ├── L1RegularizerSuite.scala │ │ │ ├── L2RegularizerSuite.scala │ │ │ ├── LogisticLossSuite.scala │ │ │ ├── PerceptronLossSuite.scala │ │ │ ├── SquaredLossSuite.scala │ │ │ └── ZeroRegularizerSuite.scala │ │ └── trees/ │ │ ├── ConditionalTestSuite.scala │ │ ├── FeatureClassObserverSuite.scala │ │ ├── FeatureSplitSuite.scala │ │ ├── GaussianEstimatorSuite.scala │ │ └── SplitCriterionSuite.scala │ ├── core/ │ │ ├── DenseInstanceSuite.scala │ │ ├── ExampleSuite.scala │ │ └── SparseInstanceSuite.scala │ └── utils/ │ └── UtilsSuite.scala └── website/ ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── 404.md ├── Gemfile ├── Gruntfile.js ├── LICENSE ├── README.md ├── _config.yml ├── _data/ │ └── navigation.yml ├── _includes/ │ ├── ad-footer.html │ ├── ad-sidebar.html │ ├── browser-upgrade.html │ ├── disqus-comments.html │ ├── feed-footer.html │ ├── footer.html │ ├── footer.html~ │ ├── head.html │ ├── navigation.html │ ├── open-graph.html │ ├── scripts.html │ └── social-share.html ├── _layouts/ │ ├── page.html │ └── post.html ├── _octopress.yml ├── _sass/ │ ├── _animations.scss │ ├── _archives.scss │ ├── _base.scss │ ├── _buttons.scss │ ├── _footer.scss │ ├── _footnotes.scss │ ├── _forms.scss │ ├── _grid-settings.scss │ ├── _helpers.scss │ ├── _masthead.scss │ ├── _mixins.scss │ ├── _navigation.scss │ ├── _notices.scss │ ├── _page.scss │ ├── _reset.scss │ ├── _search.scss │ ├── _syntax.scss │ ├── _variables.scss │ ├── _wells.scss │ └── vendor/ │ ├── bourbon/ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ ├── _bourbon.scss │ │ ├── addons/ │ │ │ ├── _button.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _directional-values.scss │ │ │ ├── _ellipsis.scss │ │ │ ├── _font-family.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _html5-input-types.scss │ │ │ ├── _position.scss │ │ │ ├── _prefixer.scss │ │ │ ├── _retina-image.scss │ │ │ ├── _size.scss │ │ │ ├── _timing-functions.scss │ │ │ ├── _triangle.scss │ │ │ └── _word-wrap.scss │ │ ├── css3/ │ │ │ ├── _animation.scss │ │ │ ├── _appearance.scss │ │ │ ├── _backface-visibility.scss │ │ │ ├── _background-image.scss │ │ │ ├── _background.scss │ │ │ ├── _border-image.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-sizing.scss │ │ │ ├── _calc.scss │ │ │ ├── _columns.scss │ │ │ ├── _filter.scss │ │ │ ├── _flex-box.scss │ │ │ ├── _font-face.scss │ │ │ ├── _font-feature-settings.scss │ │ │ ├── _hidpi-media-query.scss │ │ │ ├── _hyphens.scss │ │ │ ├── _image-rendering.scss │ │ │ ├── _keyframes.scss │ │ │ ├── _linear-gradient.scss │ │ │ ├── _perspective.scss │ │ │ ├── _placeholder.scss │ │ │ ├── _radial-gradient.scss │ │ │ ├── _transform.scss │ │ │ ├── _transition.scss │ │ │ └── _user-select.scss │ │ ├── functions/ │ │ │ ├── _assign.scss │ │ │ ├── _color-lightness.scss │ │ │ ├── _flex-grid.scss │ │ │ ├── _golden-ratio.scss │ │ │ ├── _grid-width.scss │ │ │ ├── _modular-scale.scss │ │ │ ├── _px-to-em.scss │ │ │ ├── _px-to-rem.scss │ │ │ ├── _strip-units.scss │ │ │ ├── _tint-shade.scss │ │ │ ├── _transition-property-name.scss │ │ │ └── _unpack.scss │ │ ├── helpers/ │ │ │ ├── _convert-units.scss │ │ │ ├── _gradient-positions-parser.scss │ │ │ ├── _is-num.scss │ │ │ ├── _linear-angle-parser.scss │ │ │ ├── _linear-gradient-parser.scss │ │ │ ├── _linear-positions-parser.scss │ │ │ ├── _linear-side-corner-parser.scss │ │ │ ├── _radial-arg-parser.scss │ │ │ ├── _radial-gradient-parser.scss │ │ │ ├── _radial-positions-parser.scss │ │ │ ├── _render-gradients.scss │ │ │ ├── _shape-size-stripper.scss │ │ │ └── _str-to-num.scss │ │ └── settings/ │ │ ├── _prefixer.scss │ │ └── _px-to-em.scss │ ├── font-awesome/ │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _spinning.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── magnific-popup/ │ │ ├── _settings.scss │ │ └── magnific-popup.scss │ └── neat/ │ ├── _neat-helpers.scss │ ├── _neat.scss │ ├── functions/ │ │ ├── _new-breakpoint.scss │ │ └── _private.scss │ ├── grid/ │ │ ├── _fill-parent.scss │ │ ├── _grid.scss │ │ ├── _media.scss │ │ ├── _omega.scss │ │ ├── _outer-container.scss │ │ ├── _pad.scss │ │ ├── _private.scss │ │ ├── _reset.scss │ │ ├── _row.scss │ │ ├── _shift.scss │ │ ├── _span-columns.scss │ │ ├── _to-deprecate.scss │ │ └── _visual-grid.scss │ └── settings/ │ ├── _grid.scss │ └── _visual-grid.scss ├── _templates/ │ ├── archive │ ├── page │ └── post ├── assets/ │ ├── css/ │ │ └── main.scss │ ├── fonts/ │ │ └── FontAwesome.otf │ └── js/ │ ├── _main.js │ └── plugins/ │ ├── jquery.fitvids.js │ ├── jquery.magnific-popup.js │ ├── respond.js │ ├── responsive-nav.js │ └── search.js ├── docs/ │ ├── Bagging.md │ ├── CluStream.md │ ├── Contributors.md │ ├── GettingStarted.md │ ├── HDT.md │ ├── NB.md │ ├── Programming.md │ ├── SGD.md │ ├── SampleDataWriter.md │ ├── StreamKM.md │ └── generators.md ├── feed.xml ├── index.md └── package.json