Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

[ML] Outlier Detection Example #281

Merged
merged 2 commits into from
Dec 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Machine Learning/Outlier Detection/Introduction/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# advent-outliers

To run this example, please ensure that you have the following:

* an elasticsearch cluster (version 7.2+) running on `localhost:9200`
* the dependencies listed in `requirements.txt`. To install these, please run - `pip install -r requirements.txt`
406 changes: 406 additions & 0 deletions Machine Learning/Outlier Detection/Introduction/advent-outliers.ipynb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
jupyter
numpy
requests
elasticsearch
sklearn
5 changes: 5 additions & 0 deletions Machine Learning/Outlier Detection/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Outlier Detection

This directory contains examples showcasing Elastic's outlier detection analyses within Machine Learning, which was released in version 7.2.

* [Introduction](Introduction/) shows you how to think about outliers in a 2-dimensional case. We walk you through building up a dataset with particular features and demonstrates how to create and start an outlier detection analysis, and how to analyze the outlier score and feature influence results.