zhipeng93 opened a new pull request, #148:
URL: https://github.com/apache/flink-ml/pull/148
## What is the purpose of the change
- Add AlgoOperator for AgglomerativeClustering[1] in Flink ML.
## Brief change log
- Added AlgoOperator for AgglomerativeClustering.
- Added java/python test/example for Transformer and Estimator for
KBinsDiscretizer.
- Comparing with Sklearn [1], we made the following changes:
- The distance between two data points in sklearn could be
`precomputed`, but we do not support this option in this PR
- sklearn uses `memory` to cache the output of the computation of the
tree`, but we do not support this in this PR.
- sklearn uses `connectivity` to define for each sample the neighboring
samples, but we do not support this in this PR.
## Does this pull request potentially affect one of the following parts:
- Dependencies (does it add or upgrade a dependency): (no)
- The public API, i.e., is any changed class annotated with
@Public(Evolving): (no)
- Does this pull request introduce a new feature? (yes)
- If yes, how is the feature documented? (Java doc)
[1]
https://scikit-learn.org/stable/modules/generated/sklearn.cluster.AgglomerativeClustering.html
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]