You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2022/10/19 22:01:07 UTC

[beam] branch master updated (972e66ca780 -> 8e8e89ebea8)

This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


    from 972e66ca780 Add reopen issue command (#23733)
     add 8e8e89ebea8 Add example of real time Anomaly Detection using RunInference (#23497)

No new revisions were added by this update.

Summary of changes:
 .../anomaly_detection_pipeline}/__init__.py        |   0
 .../anomaly_detection_pipeline}/config.py          |  25 ++-
 .../anomaly_detection_pipeline}/main.py            |  56 +++--
 .../pipeline}/__init__.py                          |   0
 .../pipeline/options.py                            |   2 +-
 .../pipeline/transformations.py                    | 194 +++++++++++++++++
 .../anomaly_detection_pipeline}/setup.py           |  11 +-
 .../write_data_to_pubsub_pipeline}/__init__.py     |   0
 .../write_data_to_pubsub_pipeline/config.py        |   3 +-
 .../write_data_to_pubsub_pipeline/main.py          |  14 +-
 .../pipeline}/__init__.py                          |   0
 .../pipeline/options.py                            |   2 +-
 .../pipeline/utils.py                              |   2 +-
 .../write_data_to_pubsub_pipeline/setup.py         |   4 +-
 .../en/documentation/ml/anomaly-detection.md       | 238 +++++++++++++++++++++
 .../site/content/en/documentation/ml/overview.md   |   1 +
 .../partials/section-menu/en/documentation.html    |   1 +
 17 files changed, 519 insertions(+), 34 deletions(-)
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/examples/inference/anomaly_detection/anomaly_detection_pipeline}/__init__.py (100%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering/clustering_pipeline => anomaly_detection/anomaly_detection_pipeline}/config.py (67%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering/clustering_pipeline => anomaly_detection/anomaly_detection_pipeline}/main.py (65%)
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/examples/inference/anomaly_detection/anomaly_detection_pipeline/pipeline}/__init__.py (100%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering/write_data_to_pubsub_pipeline => anomaly_detection/anomaly_detection_pipeline}/pipeline/options.py (98%)
 create mode 100644 sdks/python/apache_beam/examples/inference/anomaly_detection/anomaly_detection_pipeline/pipeline/transformations.py
 copy sdks/python/apache_beam/examples/inference/{online_clustering/clustering_pipeline => anomaly_detection/anomaly_detection_pipeline}/setup.py (91%)
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/examples/inference/anomaly_detection/write_data_to_pubsub_pipeline}/__init__.py (100%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering => anomaly_detection}/write_data_to_pubsub_pipeline/config.py (96%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering => anomaly_detection}/write_data_to_pubsub_pipeline/main.py (85%)
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/examples/inference/anomaly_detection/write_data_to_pubsub_pipeline/pipeline}/__init__.py (100%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering => anomaly_detection}/write_data_to_pubsub_pipeline/pipeline/options.py (98%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering => anomaly_detection}/write_data_to_pubsub_pipeline/pipeline/utils.py (96%)
 copy sdks/python/apache_beam/examples/inference/{online_clustering => anomaly_detection}/write_data_to_pubsub_pipeline/setup.py (97%)
 create mode 100644 website/www/site/content/en/documentation/ml/anomaly-detection.md