This is an automated email from the ASF dual-hosted git repository.
hxb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink-ml.git
from 5f99ce8 [FLINK-29011] Add Transformer for Binarizer
new 0166a4c [FLINK-29115] Improve Python installation process
new c8177c7 [FLINK-29115] Improve Python quickstart document
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/java8-build.yml | 15 ++
.github/workflows/python-checks.yml | 15 ++
README.md | 2 +-
docs/content/_index.md | 2 +-
docs/content/docs/development/building.md | 100 +++++++++
docs/content/docs/operators/classification/knn.md | 6 -
.../docs/operators/classification/linearsvc.md | 6 -
.../operators/classification/logisticregression.md | 6 -
.../docs/operators/classification/naivebayes.md | 6 -
docs/content/docs/operators/clustering/kmeans.md | 6 -
.../evaluation/binaryclassificationevaluator.md | 6 -
docs/content/docs/operators/feature/bucketizer.md | 6 -
.../content/docs/operators/feature/minmaxscaler.md | 6 -
.../docs/operators/feature/onehotencoder.md | 6 -
.../docs/operators/feature/standardscaler.md | 6 -
.../docs/operators/feature/stringindexer.md | 12 --
.../docs/operators/feature/vectorassembler.md | 6 -
.../docs/operators/regression/linearregression.md | 6 -
.../clustering => try-flink-ml/java}/_index.md | 4 +-
.../{ => java}/build-your-own-project.md | 2 +-
.../docs/try-flink-ml/{ => java}/quick-start.md | 2 +-
.../clustering => try-flink-ml/python}/_index.md | 4 +-
.../try-flink-ml/python/build-your-own-project.md | 232 +++++++++++++++++++++
.../docs/try-flink-ml/python/quick-start.md | 94 +++++++++
.../org/apache/flink/ml/util/StageAnalyzer.java | 4 +-
flink-ml-python/MANIFEST.in | 1 +
.../examples/ml/classification/knn_example.py | 6 -
.../ml/classification/linearsvc_example.py | 6 -
.../classification/logisticregression_example.py | 6 -
.../ml/classification/naivebayes_example.py | 6 -
.../examples/ml/clustering/kmeans_example.py | 6 -
.../binaryclassificationevaluator_example.py | 6 -
.../examples/ml/feature/bucketizer_example.py | 6 -
.../pyflink/examples/ml/feature/dct_example.py | 8 +-
.../ml/feature/elementwiseproduct_example.py | 6 -
.../examples/ml/feature/featurehasher_example.py | 6 -
.../examples/ml/feature/hashingtf_example.py | 6 -
.../ml/feature/indextostringmodel_example.py | 6 -
.../examples/ml/feature/interaction_example.py | 6 -
.../ml/feature/kbinsdiscreteizer_example.py | 6 -
.../examples/ml/feature/maxabsscaler_example.py | 6 -
.../examples/ml/feature/minmaxscaler_example.py | 6 -
.../examples/ml/feature/onehotencoder_example.py | 6 -
.../examples/ml/feature/regextokenizer_example.py | 6 -
.../examples/ml/feature/standardscaler_example.py | 6 -
.../examples/ml/feature/stringindexer_example.py | 6 -
.../examples/ml/feature/tokenizer_example.py | 6 -
.../examples/ml/feature/vectorassembler_example.py | 6 -
.../examples/ml/feature/vectorindexer_example.py | 6 -
.../examples/ml/feature/vectorslicer_example.py | 6 -
.../ml/regression/linearregression_example.py | 6 -
flink-ml-python/setup.py | 16 +-
52 files changed, 479 insertions(+), 250 deletions(-)
create mode 100644 docs/content/docs/development/building.md
copy docs/content/docs/{operators/clustering => try-flink-ml/java}/_index.md
(93%)
rename docs/content/docs/try-flink-ml/{ => java}/build-your-own-project.md
(99%)
rename docs/content/docs/try-flink-ml/{ => java}/quick-start.md (98%)
copy docs/content/docs/{operators/clustering => try-flink-ml/python}/_index.md
(93%)
create mode 100644
docs/content/docs/try-flink-ml/python/build-your-own-project.md
create mode 100644 docs/content/docs/try-flink-ml/python/quick-start.md