From c00f6a2d72229faa6acee8292bc01e14f16f599c Mon Sep 17 00:00:00 2001 From: Cuong Duong Date: Wed, 18 Oct 2023 18:33:05 +1100 Subject: [PATCH] minmax not absmax in docs --- docs/_docs/additional_topics.md | 2 +- notebooks/additional_topics.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/additional_topics.md b/docs/_docs/additional_topics.md index 0e2209d..ea62168 100644 --- a/docs/_docs/additional_topics.md +++ b/docs/_docs/additional_topics.md @@ -240,7 +240,7 @@ There are few caveats that should be kept in mind when considering warm-starting -Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='absmax'` in the Prophet constructor. +Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='minmax'` in the Prophet constructor. ```python diff --git a/notebooks/additional_topics.ipynb b/notebooks/additional_topics.ipynb index 7f87f77..760d923 100644 --- a/notebooks/additional_topics.ipynb +++ b/notebooks/additional_topics.ipynb @@ -437,7 +437,7 @@ "source": [ "### minmax scaling (new in 1.1.5)\n", "\n", - "Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='absmax'` in the Prophet constructor." + "Before model fitting, Prophet scales `y` by dividing by the maximum value in the history. For datasets with very large `y` values, the scaled `y` values may be compressed to a very small range (i.e. `[0.99999... - 1.0]`), which causes a bad fit. This can be fixed by setting `scaling='minmax'` in the Prophet constructor." ] }, {