diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2022-11-29 09:43:16 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2022-11-29 09:43:45 +0100 |
commit | e60a560cb578d9919c690c169e18d9fda9c4de58 (patch) | |
tree | 5983905ebc26abc2e9ed0ad51fd77435cdb1a0b5 | |
parent | a6c884cb24761ad2fbaae8cd44d3ebbc3e0f5295 (diff) |
README: remove duplicate DFATOOL_KCONF_WITH_CHOICE_NODES mention
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,6 +45,7 @@ The benchmark results (configurations and corresponding non-functional propertie Once the benchmark is done, the observations can be compressed into a single file by running `.../dfatool/bin/analyze-kconfig.py --export-observations .../my-observations.json.xz --export-observations-only`. Depending on the value of the **DFATOOL_KCONF_WITH_CHOICE_NODES** environment variable (see below), `choice` nodes are either treated as enum variables or groups of boolean variables. Most approaches in the literature use boolean variables. +Note that, when working with exported observations, **DFATOOL_KCONF_WITH_CHOICE_NODES** must have the same value in the `--export-observations` call and in subsequent `analyze-kconfig.py` calls using these observations. ### Generating Models @@ -117,7 +118,6 @@ The following variables may be set to alter the behaviour of dfatool components. | `DFATOOL_USE_XGBOOST` | **0**, 1 | Use Extreme Gradient Boosting algorithm for decision forest generation. | | `DFATOOL_XGB_N_ESTIMATORS` | 1 .. **100** .. *n* | Number of estimators (i.e., trees) for XGBoost. | | `DFATOOL_XGB_MAX_DEPTH` | 2 .. **10** ** *n* | Maximum XGBoost tree depth. | -| `DFATOOL_KCONF_WITH_CHOICE_NODES` | 0, **1** | Generate enum parameters from kconfig choice nodes; ignore corresponding boolean config options. | | `DFATOOL_KCONF_IGNORE_NUMERIC` | **0**, 1 | Ignore numeric (int/hex) configuration options. Useful for comparison with CART/DECART. | | `DFATOOL_KCONF_IGNORE_STRING` | **0**, 1 | Ignore string configuration options. Useful for comparison with CART/DECART. | | `DFATOOL_FIT_LINEAR_ONLY` | **0**, 1 | Only consider linear functions (a + bx) in regression analysis. Useful for comparison with Linear Model Trees / M5. | |