summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-10-25 11:22:34 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-10-25 11:22:34 +0200
commit53a1c3d98527795ec84e55695fae36d7a1421149 (patch)
treecce243cd0aebe0a6b1c7fea862d577f671b4fc2b
parent6016c2ff62c121d07634ec0ca81ca9a019ccf03c (diff)
README: Add function leaves documentation
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5f9e719..1bab437 100644
--- a/README.md
+++ b/README.md
@@ -29,4 +29,5 @@ The following variables may be set to alter the behaviour of dfatool components.
| `DFATOOL_KCONF_WITH_CHOICE_NODES` | 0, **1** | Treat kconfig choices (e.g. "choice Model → MobileNet / ResNet / Inception") as enum parameters. If enabled, the corresponding boolean kconfig variables (e.g. "Model\_MobileNet") are not converted to parameters. If disabled, all (and only) boolean kconfig variables are treated as parameters. Mostly relevant for analyze-kconfig, eval-kconfig |
| `DFATOOL_COMPENSATE_DRIFT` | **0**, 1 | Perform drift compensation for loaders without sync input (e.g. EnergyTrace or Keysight) |
| `DFATOOL_DRIFT_COMPENSATION_PENALTY` | 0 .. 100 (default: majority vote over several penalties) | Specify penalty for ruptures.py PELT changepoint petection |
-| `DFATOOL_DTREE_ENABLED` | 0, **1** | Use decision trees in get\_fitted
+| `DFATOOL_DTREE_ENABLED` | 0, **1** | Use decision trees in get\_fitted |
+| `DFATOOL_DTREE_FUNCTION_LEAVES` | 0, **1** | Use functions (fitted via linear regression) in decision tree leaves when modeling numeric parameters with at least three distinct values. If 0, integer parameters are treated as enums instead. |