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

Commit 8cff86b

Browse files
committed
adds minimum es version
1 parent 064e710 commit 8cff86b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Machine Learning/Outlier Detection/Introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

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

5-
* an elasticsearch cluster running on `localhost:9200`
5+
* an elasticsearch cluster (version 7.2+) running on `localhost:9200`
66
* the dependencies listed in `requirements.txt`. To install these, please run - `pip install -r requirements.txt`

Machine Learning/Outlier Detection/Introduction/advent-outliers.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"cell_type": "markdown",
2727
"metadata": {},
2828
"source": [
29-
"Outlier detection has been available in machine learning since 7.2 - what follow is a demonstration about how to create outlier detection analyses and how to analyze the results.\n",
29+
"Outlier detection has been available in machine learning since 7.2 - what follows is a demonstration about how to create outlier detection analyses and how to analyze the results.\n",
3030
"\n",
3131
"For the sake of demonstration, we'll be using an artifical two-dimensional dataset that I've created using `numpy` and `scikit-learn`."
3232
]
@@ -57,7 +57,7 @@
5757
"cell_type": "markdown",
5858
"metadata": {},
5959
"source": [
60-
"This dataset contains 2500 points normally-distributed around two main clusters centers at `(-1, -1)` and `(3, 1)`. Scikit-learn's `make_blobs` method allows us to control the standard deviations of each cluster, which I've set to `1.25` and `0.5`, respctively. This allows us to see how outlier detection functions on data with differing densities.\n",
60+
"This dataset contains 2500 points normally-distributed around two main clusters centers at `(-1, -1)` and `(3, 1)`. Scikit-learn's `make_blobs` method allows us to control the standard deviations of each cluster, which I've set to `1.25` and `0.5`, respectively. This allows us to see how outlier detection functions on data with differing densities.\n",
6161
"\n",
6262
"After making the data clusters, we introduce 99 new points, with `x` and `y` locations randomly sampled from a uniform distribution. Some of these points will fall well outside the clusters we created and should be deemed outliers; others will lie within the clusters and appear as normal points.\n",
6363
"\n",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Outlier Detection
22

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

55
* [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.

0 commit comments

Comments
 (0)