From 1d60b300fde604477a0328dd684275b682ac658b Mon Sep 17 00:00:00 2001 From: "Kamil A. Kaczmarek" Date: Tue, 20 Nov 2018 16:19:31 +0100 Subject: [PATCH] Create DEFAULT_LOGIC.md --- DEFAULT_LOGIC.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 DEFAULT_LOGIC.md diff --git a/DEFAULT_LOGIC.md b/DEFAULT_LOGIC.md new file mode 100644 index 0000000..8f66ebe --- /dev/null +++ b/DEFAULT_LOGIC.md @@ -0,0 +1,6 @@ +Default logic of the `fit_transform()`: +1. execute it on the last Step. +1. Step is fitted and transformed. Any data or models will be overridden (default setup). +1. If `force_fitting` is not obligatory, then look for cache: + 1. if output is cached, then use it. In such situation `fit_tranform()` was just taking output from cache. + 1. If output is not cached -> steppy looks for persisted (saved to disk) output. If exist, `fit_tranform()` was just loading output from the project directory.