diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-10-21 08:06:02 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-10-21 08:06:02 +0200 |
commit | b8519f00d9c30a7726435aac6989455a7ba91afe (patch) | |
tree | 5817b887da442836649b0730387d7e785a8ef5a9 | |
parent | 5ac0b79af4254746c320a9b4046194330befc970 (diff) |
README: document CSV loader variables
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -155,6 +155,8 @@ The following variables may be set to alter the behaviour of dfatool components. | `DFATOOL_RMT_LOSS_IGNORE_SCALAR` | **0**, 1 | Ignore scalar parameters when computing the loss for split node candidates. Instead of computing the loss of a single partition for each `x_i == j`, compute the loss of partitions for `x_i == j` in which non-scalar parameters vary and scalar parameters are constant. This way, scalar parameters do not affect the decision about which non-scalar parameter to use for splitting. | | `DFATOOL_PARAM_CATEGORICAL_TO_SCALAR` | **0**, 1 | Some models (e.g. FOL, sklearn CART, XGBoost) do not support categorical parameters. Ignore them (0) or convert them to scalar indexes (1). Conversion uses lexical order. | | `DFATOOL_FOL_SECOND_ORDER` | **0**, 1 | Add second-order components (interaction of feature pairs) to first-order linear function. | +| `DFATOOL_CSV_IGNORE` | *str1,str2,...* | Ignore the listed fields when loading CSV log files. | +| `DFATOOL_CSV_OBSERVATIONS` | *str1,str2,...* | Treat the listed fields as observations rather than features. | ## Examples |