Using the config.toml File

The config.toml file is a configuration file that uses the TOML v0.5.0 file format. Administrators can customize various aspects of a Driverless AI (DAI) environment by editing the config.toml file before starting DAI.

备注

For information on configuration security, see Configuration Security.

Configuration Override Chain

The configuration engine reads and overrides variables in the following order:

  1. Driverless AI defaults: These are stored in a Python config module.

  2. config.toml - Place this file in a folder or mount it in a Docker container and specify the path in the “DRIVERLESS_AI_CONFIG_FILE” environment variable.

  3. Keystore file - Set the keystore_file parameter in the config.toml file or the environment variable “DRIVERLESS_AI_KEYSTORE_FILE” to point to a valid DAI keystore file generated using the h2oai.keystore tool. If an environment variable is set, the value in the config.toml for keystore_file is overridden.

  4. Environment variable - Configuration variables can also be provided as environment variables. They must have the prefix DRIVERLESS_AI_ followed by the variable name in all caps. For example, “authentication_method” can be provided as “DRIVERLESS_AI_AUTHENTICATION_METHOD”. Setting environment variables overrides values from the keystore file.

  1. Copy the config.toml file from inside the Docker image to your local filesystem.

                # Make a config directory
                mkdir config

                # Copy the config.toml file to the new config directory.
                docker run --runtime=nvidia \
                  --pid=host \
                  --rm \
                  --init \
                  -u `id -u`:`id -g` \
                  -v `pwd`/config:/config \
                  --entrypoint bash \
                  h2oai/dai-ubi8-x86_64:2.5.0-cuda12.8.1.xx
                  -c "cp /etc/dai/config.toml /config"
  1. Edit the desired variables in the config.toml file. Save your changes when you are done.

  2. Start DAI with the DRIVERLESS_AI_CONFIG_FILE environment variable. Ensure that this environment variable points to the location of the edited config.toml file so that the software can locate the configuration file.

                docker run --runtime=nvidia \
                  --pid=host \
                  --init \
                  --rm \
                  --shm-size=2g --cap-add=SYS_NICE --ulimit nofile=131071:131071 --ulimit nproc=16384:16384 \
                  -u `id -u`:`id -g` \
                  -p 12345:12345 \
                  -e DRIVERLESS_AI_CONFIG_FILE="/config/config.toml" \
                  -v `pwd`/config:/config \
                  -v `pwd`/data:/data \
                  -v `pwd`/log:/log \
                  -v `pwd`/license:/license \
                  -v `pwd`/tmp:/tmp \
                  h2oai/dai-ubi8-x86_64:2.5.0-cuda12.8.1.xx

Sample config.toml File

The following is a copy of the standard config.toml file included with this version of DAI. The sections that follow describe some examples showing how to set different environment variables, data connectors, authentication methods, and notifications.

  1
  2##############################################################################
  3#                        DRIVERLESS AI CONFIGURATION FILE
  4#
  5# Comments:
  6# This file is authored in TOML (see https://github.com/toml-lang/toml)
  7#
  8# Config Override Chain
  9# Configuration variables for Driverless AI can be provided in several ways,
 10# the config engine reads and overrides variables in the following order
 11#
 12# 1. h2oai/config/config.toml
 13# [internal not visible to users]
 14#
 15# 2. config.toml
 16# [place file in a folder/mount file in docker container and provide path
 17# in "DRIVERLESS_AI_CONFIG_FILE" environment variable]
 18#
 19# 3. Keystore file
 20# [set keystore_file parameter in config.toml, or environment variable
 21# "DRIVERLESS_AI_KEYSTORE_FILE" to point to a valid DAI keystore file 
 22# generated using h2oai.keystore tool
 23#
 24# 4. Environment variable
 25# [configuration variables can also be provided as environment variables
 26# they must have the prefix "DRIVERLESS_AI_" followed by
 27# variable name in caps e.g "authentication_method" can be provided as
 28# "DRIVERLESS_AI_AUTHENTICATION_METHOD"]
 29##############################################################################
 30
 31# If the experiment is not done after this many minutes, stop feature engineering and model tuning as soon as possible and proceed with building the final modeling pipeline and deployment artifacts, independent of model score convergence or pre-determined number of iterations. Only active is not in reproducible mode. Depending on the data and experiment settings, overall experiment runtime can differ significantly from this setting.
 32#max_runtime_minutes = 1440
 33
 34# if non-zero, then set max_runtime_minutes automatically to min(max_runtime_minutes, max(min_auto_runtime_minutes, runtime estimate)) when enable_preview_time_estimate is true, so that the preview performs a best estimate of the runtime.  Set to zero to disable runtime estimate being used to constrain runtime of experiment.
 35#min_auto_runtime_minutes = 60
 36
 37# Whether to tune max_runtime_minutes based upon final number of base models,so try to trigger start of final model in order to better ensure stop entire experiment before max_runtime_minutes.Note: If the time given is short enough that tuning models are reduced belowfinal model expectations, the final model may be shorter than expected leadingto an overall shorter experiment time.
 38#max_runtime_minutes_smart = true
 39
 40# If the experiment is not done after this many minutes, push the abort button. Preserves experiment artifacts made so far for summary and log zip files, but further artifacts are made.
 41#max_runtime_minutes_until_abort = 10080
 42
 43# If reproducbile is set, then experiment and all artifacts are reproducible, however then experiments may take arbitrarily long for a given choice of dials, features, and models.
 44# Setting this to False allows the experiment to complete after a fixed time, with all aspects of the model and feature building are reproducible and seeded, but the overall experiment behavior will not necessarily be reproducible if later iterations would have been used in final model building.
 45# This should set to True if every seeded experiment of exact same setup needs to generate the exact same final model, regardless of duration.
 46#strict_reproducible_for_max_runtime = true
 47
 48# Uses model built on large number of experiments to estimate runtime.  It can be inaccurate in cases that were not trained on.
 49#enable_preview_time_estimate = true
 50
 51# Uses model built on large number of experiments to estimate mojo size.  It can be inaccurate in cases that were not trained on.
 52#enable_preview_mojo_size_estimate = true
 53
 54# Uses model built on large number of experiments to estimate max cpu memory.  It can be inaccurate in cases that were not trained on.
 55#enable_preview_cpu_memory_estimate = true
 56
 57#enable_preview_time_estimate_rough = false
 58
 59# If the experiment is not done by this time, push the abort button. Accepts time in format given by time_abort_format (defaults to %Y-%m-%d %H:%M:%S)assuming a time zone set by time_abort_timezone (defaults to UTC). One can also give integer seconds since 1970-01-01 00:00:00 UTC. Applies to time on a DAI worker that runs experiments. Preserves experiment artifacts made so far for summary and log zip files, but further artifacts are made.NOTE: If start new experiment with same parameters, restart, or refit, thisabsolute time will apply to such experiments or set of leaderboard experiments.
 60#time_abort = ""
 61
 62# Any format is allowed as accepted by datetime.strptime.
 63#time_abort_format = "%Y-%m-%d %H:%M:%S"
 64
 65# Any time zone in format accepted by datetime.strptime.
 66#time_abort_timezone = "UTC"
 67
 68# Whether to delete all directories and files matching experiment pattern when call do_delete_model (True),
 69# or whether to just delete directories (False).  False can be used to preserve experiment logs that do
 70# not take up much space.
 71# 
 72#delete_model_dirs_and_files = true
 73
 74# Whether to delete all directories and files matching dataset pattern when call do_delete_dataset (True),
 75# or whether to just delete directories (False).  False can be used to preserve dataset logs that do
 76# not take up much space.
 77# 
 78#delete_data_dirs_and_files = true
 79
 80# # Recipe type
 81# ## Recipes override any GUI settings
 82# - **'auto'**: all models and features automatically determined by experiment settings, toml settings, and feature_engineering_effort
 83# - **'compliant'** : like 'auto' except:
 84# - *interpretability=10* (to avoid complexity, overrides GUI or python client chose for interpretability)
 85# - *enable_glm='on'* (rest 'off', to avoid complexity and be compatible with algorithms supported by MLI)
 86# - *fixed_ensemble_level=0*: Don't use any ensemble
 87# - *feature_brain_level=0*(: No feature brain used (to ensure every restart is identical)
 88# - *max_feature_interaction_depth=1*: interaction depth is set to 1 (no multi-feature interactions to avoid complexity)
 89# - *target_transformer='identity'*: for regression (to avoid complexity)
 90# - *check_distribution_shift_drop='off'*: Don't use distribution shift between train, valid, and test to drop features (bit risky without fine-tuning)
 91# - **'monotonic_gbm'** : like 'auto' except:
 92# - *monotonicity_constraints_interpretability_switch=1*: enable monotonicity constraints
 93# - *self.config.monotonicity_constraints_correlation_threshold = 0.01*: see below
 94# - *monotonicity_constraints_drop_low_correlation_features=true*: drop features that aren't correlated with target by at least 0.01 (specified by parameter above)
 95# - *fixed_ensemble_level=0*: Don't use any ensemble (to avoid complexity)
 96# - *included_models=['LightGBMModel']*
 97# - *included_transformers=['OriginalTransformer']*: only original (numeric) features will be used
 98# - *feature_brain_level=0*: No feature brain used (to ensure every restart is identical)
 99# - *monotonicity_constraints_log_level='high'*
100# - *autodoc_pd_max_runtime=-1*: no timeout for PDP creation in AutoDoc
101# - **'kaggle'** : like 'auto' except:
102# - external validation set is concatenated with train set, with target marked as missing
103# - test set is concatenated with train set, with target marked as missing
104# - transformers that do not use the target are allowed to fit_transform across entire train + validation + test
105# - several config toml expert options open-up limits (e.g. more numerics are treated as categoricals)
106# - Note: If plentiful memory, can:
107# - choose kaggle mode and then change fixed_feature_interaction_depth to large negative number,
108# otherwise default number of features given to transformer is limited to 50 by default
109# - choose mutation_mode = "full", so even more types are transformations are done at once per transformer
110# - **'nlp_model'**: Only enables NLP models that process pure text
111# - **'nlp_transformer'**: Only enables NLP transformers that process pure text, while any model type is allowed
112# - **'image_model'**: Only enables Image models that process pure images
113# - **'image_transformer'**: Only enables Image transformers that process pure images, while any model type is allowed
114# - **'unsupervised'**: Only enables unsupervised transformers, models and scorers
115# - **'gpus_max'**: Maximize use of GPUs (e.g. use XGBoost, rapids, Optuna hyperparameter search, etc.)
116# - **'more_overfit_protection'**: Potentially improve overfit, esp. for small data, by disabling target encoding and making GA behave like final model for tree counts and learning rate
117# - **'feature_store_mojo'**: Creates a MOJO to be used as transformer in the H2O Feature Store, to augment data on a row-by-row level based on Driverless AI's feature engineering. Only includes transformers that don't depend on the target, since features like target encoding need to be created at model fitting time to avoid data leakage. And features like lags need to be created from the raw data, they can't be computed with a row-by-row MOJO transformer.
118# Each pipeline building recipe mode can be chosen, and then fine-tuned using each expert settings.  Changing the
119# pipeline building recipe will reset all pipeline building recipe options back to default and then re-apply the
120# specific rules for the new mode, which will undo any fine-tuning of expert options that are part of pipeline building
121# recipe rules.
122# If choose to do new/continued/refitted/retrained experiment from parent experiment, the recipe rules are not re-applied
123# and any fine-tuning is preserved.  To reset recipe behavior, one can switch between 'auto' and the desired mode.  This
124# way the new child experiment will use the default settings for the chosen recipe.
125#recipe = "auto"
126
127# Whether to treat model like UnsupervisedModel, so that one specifies each scorer, pretransformer, and transformer in expert panel like one would do for supervised experiments.
128# Otherwise (False), custom unsupervised models will assume the model itself specified these.
129# If the unsupervised model chosen has _included_transformers, _included_pretransformers, and _included_scorers selected, this should be set to False (default) else should be set to True.
130# Then if one wants the unsupervised model to only produce 1 gene-transformer, then the custom unsupervised model can have:
131# _ngenes_max = 1
132# _ngenes_max_by_layer = [1000, 1]
133# The 1000 for the pretransformer layer just means that layer can have any number of genes.  Choose 1 if you expect single instance of the pretransformer to be all one needs, e.g. consumes input features fully and produces complete useful output features.
134# 
135#custom_unsupervised_expert_mode = false
136
137# Whether to enable genetic algorithm for selection and hyper-parameter tuning of features and models.
138# - If disabled ('off'), will go directly to final pipeline training (using default feature engineering and feature selection).
139# - 'auto' is same as 'on' unless pure NLP or Image experiment.
140# - "Optuna": Uses DAI genetic algorithm for feature engineering, but model hyperparameters are tuned with Optuna.
141# - In the Optuna case, the scores shown in the iteration panel are the best score and trial scores.
142# - Optuna mode currently only uses Optuna for XGBoost, LightGBM, and CatBoost (custom recipe).
143# - If Pruner is enabled, as is default, Optuna mode disables mutations of eval_metric so pruning uses same metric across trials to compare properly.
144# Currently does not supported when pre_transformers or multi-layer pipeline used, which must go through at least one round of tuning or evolution.
145# 
146#enable_genetic_algorithm = "auto"
147
148# How much effort to spend on feature engineering (-1...10)
149# Heuristic combination of various developer-level toml parameters
150# -1  : auto (5, except 1 for wide data in order to limit engineering)
151# 0   : keep only numeric features, only model tuning during evolution
152# 1   : keep only numeric features and frequency-encoded categoricals, only model tuning during evolution
153# 2   : Like #1 but instead just no Text features.  Some feature tuning before evolution.
154# 3   : Like #5 but only tuning during evolution.  Mixed tuning of features and model parameters.
155# 4   : Like #5, but slightly more focused on model tuning
156# 5   : Default.  Balanced feature-model tuning
157# 6-7 : Like #5, but slightly more focused on feature engineering
158# 8   : Like #6-7, but even more focused on feature engineering with high feature generation rate, no feature dropping even if high interpretability
159# 9-10: Like #8, but no model tuning during feature evolution
160# 
161#feature_engineering_effort = -1
162
163# Whether to enable train/valid and train/test distribution shift detection ('auto'/'on'/'off').
164# By default, LightGBMModel is used for shift detection if possible, unless it is turned off in model
165# expert panel, and then only the models selected in recipe list will be used.
166# 
167#check_distribution_shift = "auto"
168
169# Whether to enable train/test distribution shift detection ('auto'/'on'/'off') for final model transformed features.
170# By default, LightGBMModel is used for shift detection if possible, unless it is turned off in model
171# expert panel, and then only the models selected in recipe list will be used.
172# 
173#check_distribution_shift_transformed = "auto"
174
175# Whether to drop high-shift features ('auto'/'on'/'off').  Auto disables for time series.
176#check_distribution_shift_drop = "auto"
177
178# If distribution shift detection is enabled, drop features (except ID, text, date/datetime, time, weight) for
179# which shift AUC, GINI, or Spearman correlation is above this value
180# (e.g. AUC of a binary classifier that predicts whether given feature value
181# belongs to train or test data)
182# 
183#drop_features_distribution_shift_threshold_auc = 0.999
184
185# Specify whether to check leakage for each feature (``on`` or ``off``).
186# If a fold column is used, this option checks leakage without using the fold column.
187# By default, LightGBM Model is used for leakage detection when possible, unless it is
188# turned off in the Model Expert Settings tab, in which case only the models selected with
189# the ``included_models`` option are used. Note that this option is always disabled for time
190# series experiments.
191# 
192#check_leakage = "auto"
193
194# If leakage detection is enabled,
195# drop features for which AUC (R2 for regression), GINI,
196# or Spearman correlation is above this value.
197# If fold column present, features are not dropped,
198# because leakage test applies without fold column used.
199# 
200#drop_features_leakage_threshold_auc = 0.999
201
202# Max number of rows x number of columns to trigger (stratified) sampling for leakage checks
203# 
204#leakage_max_data_size = 10000000
205
206# Specify the maximum number of features to use and show in importance tables.
207# When Interpretability is set higher than 1,
208# transformed or original features with lower importance than the top max_features_importance features are always removed.
209# Feature importances of transformed or original features correspondingly will be pruned.
210# Higher values can lead to lower performance and larger disk space used for datasets with more than 100k columns.
211# 
212#max_features_importance = 100000
213
214# Whether to create the Python scoring pipeline at the end of each experiment.
215#make_python_scoring_pipeline = "auto"
216
217# Whether to create the MOJO scoring pipeline at the end of each experiment. If set to "auto", will attempt to
218# create it if possible (without dropping capabilities). If set to "on", might need to drop some models,
219# transformers or custom recipes.
220# 
221#make_mojo_scoring_pipeline = "auto"
222
223# Whether to create a C++ MOJO based Triton scoring pipeline at the end of each experiment. If set to "auto", will attempt to
224# create it if possible (without dropping capabilities). If set to "on", might need to drop some models,
225# transformers or custom recipes. Requires make_mojo_scoring_pipeline != "off".
226# 
227#make_triton_scoring_pipeline = "off"
228
229# Whether to automatically deploy the model to the Triton inference server at the end of each experiment.
230# "remote" will deploy to the remote Triton inference server to location provided by triton_host_remote (and optionally, triton_model_repository_dir_remote).
231# "off" requires manual action (Deploy wizard or Python client or manual transfer of exported Triton directory from Deploy wizard) to deploy the model to Triton.
232# 
233#auto_deploy_triton_scoring_pipeline = "off"
234
235# Test remote Triton deployments during creation of MOJO pipeline. Requires triton_host_remote to be configured and make_triton_scoring_pipeline to be enabled.
236#triton_mini_acceptance_test_remote = true
237
238#triton_client_timeout_testing = 300
239
240#test_triton_when_making_mojo_pipeline_only = false
241
242# Perform timing and accuracy benchmarks for Injected MOJO scoring vs Python scoring. This is for full scoring data, and can be slow. This also requires hard asserts. Doesn't force MOJO scoring by itself, so depends on mojo_for_predictions='on' if want full coverage.
243#mojo_for_predictions_benchmark = true
244
245# Fail hard if MOJO scoring is this many times slower than Python scoring.
246#mojo_for_predictions_benchmark_slower_than_python_threshold = 10
247
248# Fail hard if MOJO scoring is slower than Python scoring by a factor specified by mojo_for_predictions_benchmark_slower_than_python_threshold, but only if have at least this many rows. To reduce false positives.
249#mojo_for_predictions_benchmark_slower_than_python_min_rows = 100
250
251# Fail hard if MOJO scoring is slower than Python scoring by a factor specified by mojo_for_predictions_benchmark_slower_than_python_threshold, but only if takes at least this many seconds. To reduce false positives.
252#mojo_for_predictions_benchmark_slower_than_python_min_seconds = 2.0
253
254# Inject MOJO into fitted Python state if mini acceptance test passes, so can use C++ MOJO runtime when calling predict(enable_mojo=True, IS_SCORER=True, ...). Prerequisite for mojo_for_predictions='on' or 'auto'.
255#inject_mojo_for_predictions = true
256
257# Use MOJO for making fast low-latency predictions after experiment has finished (when applicable, for AutoDoc/Diagnostics/Predictions/MLI and standalone Python scoring via scorer.zip). For 'auto', only use MOJO if number of rows is equal or below mojo_for_predictions_max_rows. For larger frames, it can be faster to use the Python backend since used libraries are more likely already vectorized.
258#mojo_for_predictions = "auto"
259
260# For smaller datasets, the single-threaded but low latency C++ MOJO runtime can lead to significantly faster scoring times than the regular in-Driverless AI Python scoring environment. If enable_mojo=True is passed to the predict API, and the MOJO exists and is applicable, then use the MOJO runtime for datasets that have fewer or equal number of rows than this threshold. MLI/AutoDoc set enable_mojo=True by default, so this setting applies. This setting is only used if mojo_for_predictions is 'auto'.
261#mojo_for_predictions_max_rows = 10000
262
263# Batch size (in rows) for C++ MOJO predictions. Only when enable_mojo=True is passed to the predict API, and when the MOJO is applicable (e.g., fewer rows than mojo_for_predictions_max_rows). Larger values can lead to faster scoring, but use more memory.
264#mojo_for_predictions_batch_size = 100
265
266# Relative tolerance for mini MOJO acceptance test. If Python/C++ MOJO differs more than this from Python, won't use MOJO inside Python for later scoring. Only applicable if mojo_for_predictions=True. Disabled if <= 0.
267#mojo_acceptance_test_rtol = 0.0
268
269# Absolute tolerance for mini MOJO acceptance test (for regression/Shapley, will be scaled by max(abs(preds)). If Python/C++ MOJO differs more than this from Python, won't use MOJO inside Python for later scoring. Only applicable if mojo_for_predictions=True. Disabled if <= 0.
270#mojo_acceptance_test_atol = 0.0
271
272# Whether to attempt to reduce the size of the MOJO scoring pipeline. A smaller MOJO will also lead to
273# less memory footprint during scoring. It is achieved by reducing some other settings like interaction depth, and
274# hence can affect the predictive accuracy of the model.
275# 
276#reduce_mojo_size = false
277
278# Whether to create the pipeline visualization at the end of each experiment.
279# Uses MOJO to show pipeline, input features, transformers, model, and outputs of model.  MOJO-capable tree models show first tree.
280#make_pipeline_visualization = "auto"
281
282# Whether to create the python pipeline visualization at the end of each experiment.
283# Each feature and transformer includes a variable importance at end in brackets.
284# Only done when forced on, and artifacts as png files will appear in summary zip.
285# Each experiment has files per individual in final population:
286# 1) preprune_False_0.0 : Before final pruning, without any additional variable importance threshold pruning
287# 2) preprune_True_0.0 : Before final pruning, with additional variable importance <=0.0 pruning
288# 3) postprune_False_0.0 : After final pruning, without any additional variable importance threshold pruning
289# 4) postprune_True_0.0 : After final pruning, with additional variable importance <=0.0 pruning
290# 5) posttournament_False_0.0 : After final pruning and tournament, without any additional variable importance threshold pruning
291# 6) posttournament_True_0.0 : After final pruning and tournament, with additional variable importance <=0.0 pruning
292# 1-5 are done with 'on' while 'auto' only does 6 corresponding to the final post-pruned individuals.
293# Even post pruning, some features have zero importance, because only those genes that have value+variance in
294# variable importance of value=0.0 get pruned.  GA can have many folds with positive variance
295# for a gene, and those are not removed in case they are useful features for final model.
296# If small mojo option is chosen (reduce_mojo_size True), then the variance of feature gain is ignored
297# for which genes and features are pruned as well as for what appears in the graph.
298# 
299#make_python_pipeline_visualization = "auto"
300
301# Whether to create the experiment AutoDoc after end of experiment.
302# 
303#make_autoreport = true
304
305#max_cols_make_autoreport_automatically = 1000
306
307#max_cols_make_pipeline_visualization_automatically = 5000
308
309# Pass environment variables from running Driverless AI instance to Python scoring pipeline for
310# deprecated models, when they are used to make predictions. Use with caution.
311# If config.toml overrides are set by env vars, and they differ from what the experiment's env
312# looked like when it was trained, then unexpected consequences can occur. Enable this only to "
313# override certain well-controlled settings like the port for H2O-3 custom recipe server.
314# 
315#pass_env_to_deprecated_python_scoring = false
316
317#transformer_description_line_length = -1
318
319# Whether to measure the MOJO scoring latency at the time of MOJO creation.
320#benchmark_mojo_latency = "auto"
321
322# Max size of pipeline.mojo file (in MB) for automatic mode of MOJO scoring latency measurement
323#benchmark_mojo_latency_auto_size_limit = 2048
324
325# If MOJO creation times out at end of experiment, can still make MOJO from the GUI or from the R/Py clients (timeout doesn't apply there).
326#mojo_building_timeout = 1800.0
327
328# If MOJO visualization creation times out at end of experiment, MOJO is still created if possible within the time limit specified by mojo_building_timeout.
329#mojo_vis_building_timeout = 600.0
330
331# If MOJO creation is too slow, increase this value. Higher values can finish faster, but use more memory.
332# If MOJO creation fails due to an out-of-memory error, reduce this value to 1.
333# Set to -1 for all physical cores.
334# 
335#mojo_building_parallelism = -1
336
337# Size in bytes that all pickled and compressed base models have to satisfy to use parallel MOJO building.
338# For large base models, parallel MOJO building can use too much memory.
339# Only used if final_fitted_model_per_model_fold_files is true.
340# 
341#mojo_building_parallelism_base_model_size_limit = 100000000
342
343# Whether to show model and pipeline sizes in logs.
344# If 'auto', then not done if more than 10 base models+folds, because expect not concerned with size.
345#show_pipeline_sizes = "auto"
346
347# safe: assume might be running another experiment on same node
348# moderate: assume not running any other experiments or tasks on same node, but still only use physical core count
349# max: assume not running anything else on node at all except the experiment
350# If multinode is enabled, this option has no effect, unless worker_remote_processors=1 when it will still be applied.
351# Each exclusive mode can be chosen, and then fine-tuned using each expert settings.  Changing the
352# exclusive mode will reset all exclusive mode related options back to default and then re-apply the
353# specific rules for the new mode, which will undo any fine-tuning of expert options that are part of exclusive mode rules.
354# If choose to do new/continued/refitted/retrained experiment from parent experiment, all the mode rules are not re-applied
355# and any fine-tuning is preserved.  To reset mode behavior, one can switch between 'safe' and the desired mode.   This
356# way the new child experiment will use the default system resources for the chosen mode.
357# 
358#exclusive_mode = "safe"
359
360# Maximum number of workers for Driverless AI server pool (only 1 needed currently)
361#max_workers = 1
362
363# Max number of CPU cores to use for the whole system. Set to <= 0 to use all (physical) cores.
364# If the number of ``worker_remote_processors`` is set to a value >= 3, the number of cores will be reduced
365# by the ratio (``worker_remote_processors_max_threads_reduction_factor`` * ``worker_remote_processors``)
366# to avoid overloading the system when too many remote tasks are processed at once.
367# One can also set environment variable 'OMP_NUM_THREADS' to number of cores to use for OpenMP
368# (e.g., in bash: 'export OMP_NUM_THREADS=32' and 'export OPENBLAS_NUM_THREADS=32').
369# 
370#max_cores = 0
371
372# Max number of CPU cores to use across all of DAI experiments and tasks.
373# -1 is all available, with stall_subprocess_submission_dai_fork_threshold_count=0 means restricted to core count.
374# 
375#max_cores_dai = -1
376
377# Number of virtual cores per physical core (0: auto mode, >=1 use that integer value).  If >=1, the reported physical cores in logs will match the virtual cores divided by this value.
378#virtual_cores_per_physical_core = 0
379
380# Mininum number of virtual cores per physical core. Only applies if virtual cores != physical cores. Can help situations like Intel i9 13900 with 24 physical cores and only 32 virtual cores. So better to limit physical cores to 16.
381#min_virtual_cores_per_physical_core_if_unequal = 2
382
383# Number of physical cores to assume are present (0: auto, >=1 use that integer value).
384# If for some reason DAI does not automatically figure out physical cores correctly,
385# one can override with this value.  Some systems, especially virtualized, do not always provide
386# correct information about the virtual cores, physical cores, sockets, etc.
387#override_physical_cores = 0
388
389# Number of virtual cores to assume are present (0: auto, >=1 use that integer value).
390# If for some reason DAI does not automatically figure out virtual cores correctly,
391# or only a portion of the system is to be used, one can override with this value.
392# Some systems, especially virtualized, do not always provide
393# correct information about the virtual cores, physical cores, sockets, etc.
394#override_virtual_cores = 0
395
396# Whether to treat data as small recipe in terms of work, by spreading many small tasks across many cores instead of forcing GPUs, for models that support it via static var _use_single_core_if_many.  'auto' looks at _use_single_core_if_many for models and data size, 'on' forces, 'off' disables.
397#small_data_recipe_work = "auto"
398
399# Stall submission of tasks if total DAI fork count exceeds count (-1 to disable, 0 for automatic of max_cores_dai)
400#stall_subprocess_submission_dai_fork_threshold_count = 0
401
402# Stall submission of tasks if system memory available is less than this threshold in percent (set to 0 to disable).
403# Above this threshold, the number of workers in any pool of workers is linearly reduced down to 1 once hitting this threshold.
404# 
405#stall_subprocess_submission_mem_threshold_pct = 2
406
407# Whether to set automatic number of cores by physical (True) or logical (False) count.
408# Using all logical cores can lead to poor performance due to cache thrashing.
409# 
410#max_cores_by_physical = true
411
412# Absolute limit to core count
413#max_cores_limit = 200
414
415# Control maximum number of cores to use for a model's fit call (0 = all physical cores >= 1 that count).
416#max_fit_cores = 10
417
418# Control maximum number of cores to use for a scoring across all chosen scorers (0 = auto)
419#parallel_score_max_workers = 0
420
421# Control maximum number of cores to use for a model's predict call (0 = all physical cores >= 1 that count)
422#max_predict_cores = 0
423
424# Factor by which to reduce physical cores, to use for post-model experiment tasks like autoreport, MLI, etc.
425#max_predict_cores_in_dai_reduce_factor = 4
426
427# Maximum number of cores to use for post-model experiment tasks like autoreport, MLI, etc.
428#max_max_predict_cores_in_dai = 10
429
430# Control maximum number of cores to use for a model's transform and predict call when doing operations inside DAI-MLI GUI and R/Py client.
431# The main experiment and other tasks like MLI and autoreport have separate queues.  The main experiments have run at most worker_remote_processors tasks (limited by cores if auto mode),
432# while other tasks run at most worker_local_processors (limited by cores if auto mode) tasks at the same time,
433# so many small tasks can add up.  To prevent overloading the system, the defaults are conservative.  However, if most of the activity involves autoreport or MLI, and no model experiments
434# are running, it may be safe to increase this value to something larger than 4.
435# -1   : Auto mode.  Up to physical cores divided by 4, up to maximum of 10.
436# 0   : all physical cores
437# >= 1: that count).
438# 
439#max_predict_cores_in_dai = -1
440
441# Control number of workers used in CPU mode for tuning (0 = socket count -1 = all physical cores >= 1 that count).  More workers will be more parallel but models learn less from each other.
442#batch_cpu_tuning_max_workers = 0
443
444# Control number of workers used in CPU mode for training (0 = socket count -1 = all physical cores >= 1 that count)
445#cpu_max_workers = 0
446
447# Expected maximum number of forks, used to ensure datatable doesn't overload system. For actual use beyond this value, system will start to have slow-down issues
448#assumed_simultaneous_dt_forks_munging = 3
449
450# Expected maximum number of forks by computing statistics during ingestion, used to ensure datatable doesn't overload system
451#assumed_simultaneous_dt_forks_stats_openblas = 1
452
453# Maximum of threads for datatable for munging
454#max_max_dt_threads_munging = 4
455
456# Expected maximum of threads for datatable no matter if many more cores
457#max_max_dt_threads_stats_openblas = 8
458
459# Maximum of threads for datatable for reading/writing files
460#max_max_dt_threads_readwrite = 4
461
462# Maximum parallel workers for final model building.
463# 0 means automatic, >=1 means limit to no more than that number of parallel jobs.
464# Can be required if some transformer or model uses more than the expected amount of memory.
465# Ways to reduce final model building memory usage, e.g. set one or more of these and retrain final model:
466# 1) Increase munging_memory_overhead_factor to 10
467# 2) Increase final_munging_memory_reduction_factor to 10
468# 3) Lower max_workers_final_munging to 1
469# 4) Lower max_workers_final_base_models to 1
470# 5) Lower max_cores to, e.g., 1/2 or 1/4 of physical cores.
471#max_workers_final_base_models = 0
472
473# Maximum parallel workers for final per-model munging.
474# 0 means automatic, >=1 means limit to no more than that number of parallel jobs.
475# Can be required if some transformer uses more than the expected amount of memory.
476#max_workers_final_munging = 0
477
478# Minimum number of threads for datatable (and OpenMP) during data munging (per process).
479# datatable is the main data munging tool used within Driverless ai (source :
480# https://github.com/h2oai/datatable)
481# 
482#min_dt_threads_munging = 1
483
484# Like min_datatable (and OpenMP)_threads_munging but for final pipeline munging
485#min_dt_threads_final_munging = 1
486
487# Maximum number of threads for datatable during data munging (per process) (0 = all, -1 = auto).
488# If multiple forks, threads are distributed across forks.
489#max_dt_threads_munging = -1
490
491# Maximum number of threads for datatable during data reading and writing (per process) (0 = all, -1 = auto).
492# If multiple forks, threads are distributed across forks.
493#max_dt_threads_readwrite = -1
494
495# Maximum number of threads for datatable stats and openblas (per process) (0 = all, -1 = auto).
496# If multiple forks, threads are distributed across forks.
497#max_dt_threads_stats_openblas = -1
498
499# Maximum number of threads for datatable during TS properties preview panel computations).
500#max_dt_threads_do_timeseries_split_suggestion = 1
501
502# Number of GPUs to use per experiment for training task.  Set to -1 for all GPUs.
503# An experiment will generate many different models.
504# Currently num_gpus_per_experiment!=-1 disables GPU locking, so is only recommended for
505# single experiments and single users.
506# Ignored if GPUs disabled or no GPUs on system.
507# More info at: https://github.com/NVIDIA/nvidia-docker/wiki/nvidia-docker#gpu-isolation
508# In multinode context when using dask, this refers to the per-node value.
509# For ImageAutoModel, this refers to the total number of GPUs used for that entire model type,
510# since there is only one model type for the entire experiment.
511# E.g. if have 4 GPUs and want 2 ImageAuto experiments to run on 2 GPUs each, can set
512# num_gpus_per_experiment to 2 for each experiment, and each of the 4 GPUs will be used one at a time
513# by the 2 experiments each using 2 GPUs only.
514# 
515#num_gpus_per_experiment = -1
516
517# Number of CPU cores per GPU. Limits number of GPUs in order to have sufficient cores per GPU.
518# Set to -1 to disable, -2 for auto mode.
519# In auto mode, if lightgbm_use_gpu is 'auto' or 'off', then min_num_cores_per_gpu=1, else min_num_cores_per_gpu=2, due to lightgbm requiring more cores even when using GPUs.
520#min_num_cores_per_gpu = -2
521
522# Number of GPUs to use per model training task.  Set to -1 for all GPUs.
523# For example, when this is set to -1 and there are 4 GPUs available, all of them can be used for the training of a single model.
524# Only applicable currently to image auto pipeline building recipe or Dask models with more than one GPU or more than one node.
525# Ignored if GPUs disabled or no GPUs on system.
526# For ImageAutoModel, the maximum of num_gpus_per_model and num_gpus_per_experiment (all GPUs if -1) is taken.
527# More info at: https://github.com/NVIDIA/nvidia-docker/wiki/nvidia-docker#gpu-isolation
528# In multinode context when using Dask, this refers to the per-node value.
529# 
530#num_gpus_per_model = 1
531
532# Number of GPUs to use for predict for models and transform for transformers when running outside of fit/fit_transform.
533# -1 means all, 0 means no GPUs, >1 means that many GPUs up to visible limit.
534# If predict/transform are called in same process as fit/fit_transform, number of GPUs will match,
535# while new processes will use this count for number of GPUs for applicable models/transformers.
536# Exception: TensorFlow (abandoned since 2.4.0), PyTorch models/transformers, and RAPIDS (abandoned since 1.11) predict on GPU always if GPUs exist.
537# RAPIDS requires python scoring package be used also on GPUs.
538# In multinode context when using Dask, this refers to the per-node value.
539# 
540#num_gpus_for_prediction = 0
541
542# Which gpu_id to start with
543# -1 : auto-mode.  E.g. 2 experiments can each set num_gpus_per_experiment to 2 and use 4 GPUs
544# If using CUDA_VISIBLE_DEVICES=... to control GPUs (preferred method), gpu_id=0 is the
545# first in that restricted list of devices.
546# E.g. if CUDA_VISIBLE_DEVICES='4,5' then gpu_id_start=0 will refer to the
547# device #4.
548# E.g. from expert mode, to run 2 experiments, each on a distinct GPU out of 2 GPUs:
549# Experiment#1: num_gpus_per_model=1, num_gpus_per_experiment=1, gpu_id_start=0
550# Experiment#2: num_gpus_per_model=1, num_gpus_per_experiment=1, gpu_id_start=1
551# E.g. from expert mode, to run 2 experiments, each on a distinct GPU out of 8 GPUs:
552# Experiment#1: num_gpus_per_model=1, num_gpus_per_experiment=4, gpu_id_start=0
553# Experiment#2: num_gpus_per_model=1, num_gpus_per_experiment=4, gpu_id_start=4
554# E.g. Like just above, but now run on all 4 GPUs/model
555# Experiment#1: num_gpus_per_model=4, num_gpus_per_experiment=4, gpu_id_start=0
556# Experiment#2: num_gpus_per_model=4, num_gpus_per_experiment=4, gpu_id_start=4
557# If num_gpus_per_model!=1, global GPU locking is disabled
558# (because underlying algorithms don't support arbitrary gpu ids, only sequential ids),
559# so must setup above correctly to avoid overlap across all experiments by all users
560# More info at: https://github.com/NVIDIA/nvidia-docker/wiki/nvidia-docker#gpu-isolation
561# Note that GPU selection does not wrap, so gpu_id_start + num_gpus_per_model must be less than number of visibile GPUs
562# 
563#gpu_id_start = -1
564
565# Whether to reduce features until model does not fail.
566# Currently for non-dask XGBoost models (i.e. GLMModel, XGBoostGBMModel, XGBoostDartModel, XGBoostRFModel),
567# during normal fit or when using Optuna.
568# Primarily useful for GPU OOM.
569# If XGBoost runs out of GPU memory, this is detected, and
570# (regardless of setting of skip_model_failures),
571# we perform feature selection using XGBoost on subsets of features.
572# The dataset is progressively reduced by factor of 2 with more models to cover all features.
573# This splitting continues until no failure occurs.
574# Then all sub-models are used to estimate variable importance by absolute information gain,
575# in order to decide which features to include.
576# Finally, a single model with the most important features
577# is built using the feature count that did not lead to OOM.
578# For 'auto', this option is set to 'off' when reproducible experiment is enabled,
579# because the condition of running OOM can change for same experiment seed.
580# Reduction is only done on features and not on rows for the feature selection step.
581# 
582#allow_reduce_features_when_failure = "auto"
583
584# With allow_reduce_features_when_failure, this controls how many repeats of sub-models
585# used for feature selection.  A single repeat only has each sub-model
586# consider a single sub-set of features, while repeats shuffle which
587# features are considered allowing more chance to find important interactions.
588# More repeats can lead to higher accuracy.
589# The cost of this option is proportional to the repeat count.
590# 
591#reduce_repeats_when_failure = 1
592
593# With allow_reduce_features_when_failure, this controls the fraction of features
594# treated as an anchor that are fixed for all sub-models.
595# Each repeat gets new anchors.
596# For tuning and evolution, the probability depends
597# upon any prior importance (if present) from other individuals,
598# while final model uses uniform probability for anchor features.
599# 
600#fraction_anchor_reduce_features_when_failure = 0.1
601
602# Error strings from XGBoost that are used to trigger re-fit on reduced sub-models.
603# See allow_reduce_features_when_failure.
604# 
605#xgboost_reduce_on_errors_list = "['Memory allocation error on worker', 'out of memory', 'XGBDefaultDeviceAllocatorImpl', 'invalid configuration argument', 'Requested memory']"
606
607# Error strings from LightGBM that are used to trigger re-fit on reduced sub-models.
608# See allow_reduce_features_when_failure.
609# 
610#lightgbm_reduce_on_errors_list = "['Out of Host Memory']"
611
612# LightGBM does not significantly benefit from GPUs, unlike other tools like XGBoost or Bert/Image Models.
613# Each experiment will try to use all GPUs, and on systems with many cores and GPUs,
614# this leads to many experiments running at once, all trying to lock the GPU for use,
615# leaving the cores heavily under-utilized.  So by default, DAI always uses CPU for LightGBM, unless 'on' is specified.
616#lightgbm_use_gpu = "auto"
617
618# Kaggle username for automatic submission and scoring of test set predictions.
619# See https://github.com/Kaggle/kaggle-api#api-credentials for details on how to obtain Kaggle API credentials",
620# 
621#kaggle_username = ""
622
623# Kaggle key for automatic submission and scoring of test set predictions.
624# See https://github.com/Kaggle/kaggle-api#api-credentials for details on how to obtain Kaggle API credentials",
625# 
626#kaggle_key = ""
627
628# Max. number of seconds to wait for Kaggle API call to return scores for given predictions
629#kaggle_timeout = 120
630
631#kaggle_keep_submission = false
632
633# If provided, can extend the list to arbitrary and potentially future Kaggle competitions to make
634# submissions for. Only used if kaggle_key and kaggle_username are provided.
635# Provide a quoted comma-separated list of tuples (target column name, number of test rows, competition, metric) like this:
636# kaggle_competitions='("target", 200000, "santander-customer-transaction-prediction", "AUC"), ("TARGET", 75818, "santander-customer-satisfaction", "AUC")'
637# 
638#kaggle_competitions = ""
639
640# Period (in seconds) of ping by Driverless AI server to each experiment
 641# (in order to get logger info like disk space and memory usage).
 642# 0 means don't print anything.
 643#ping_period = 60
 644
 645# Whether to enable ping of system status during DAI experiments.
 646#ping_autodl = true
 647
 648# Minimum amount of disk space in GB needed to run experiments.
 649# Experiments will fail if this limit is crossed.
 650# This limit exists because Driverless AI needs to generate data for model training
 651# feature engineering, documentation and other such processes.
 652#disk_limit_gb = 5
 653
 654# Minimum amount of disk space in GB needed to before stall forking of new processes during an experiment.
 655#stall_disk_limit_gb = 1
 656
 657# Minimum amount of system memory in GB needed to start experiments.
 658# Similarly with disk space, a certain amount of system memory is needed to run some basic
 659# operations.
 660#memory_limit_gb = 5
 661
 662# Minimum number of rows needed to run experiments (values lower than 100 might not work).
 663# A minimum threshold is set to ensure there is enough data to create a statistically
 664# reliable model and avoid other small-data related failures.
 665# 
 666#min_num_rows = 100
 667
 668# Minimum required number of rows (in the training data) for each class label for classification problems.
 669#min_rows_per_class = 5
 670
 671# Minimum required number of rows for each split when generating validation samples.
 672#min_rows_per_split = 5
 673
 674# Level of reproducibility desired (for same data and same inputs).
 675# Only active if 'reproducible' mode is enabled (GUI button enabled or a seed is set from the client API).
 676# Supported levels are:
 677# reproducibility_level = 1 for same experiment results as long as same O/S, same CPU(s) and same GPU(s)
 678# reproducibility_level = 2 for same experiment results as long as same O/S, same CPU architecture and same GPU architecture
 679# reproducibility_level = 3 for same experiment results as long as same O/S, same CPU architecture, not using GPUs
 680# reproducibility_level = 4 for same experiment results as long as same O/S, (best effort)
 681# 
 682#reproducibility_level = 1
 683
 684# Seed for random number generator to make experiments reproducible, to a certain reproducibility level (see above).
 685# Only active if 'reproducible' mode is enabled (GUI button enabled or a seed is set from the client API).
 686# 
 687#seed = 1234
 688
 689# The list of values that should be interpreted as missing values during data import.
 690# This applies to both numeric and string columns. Note that the dataset must be reloaded after applying changes to this config via the expert settings.
 691# Also note that 'nan' is always interpreted as a missing value for numeric columns.
 692#missing_values = "['', '?', 'None', 'nan', 'NA', 'N/A', 'unknown', 'inf', '-inf', '1.7976931348623157e+308', '-1.7976931348623157e+308']"
 693
 694# Whether to impute (to mean) for GLM on training data.
 695#glm_nan_impute_training_data = false
 696
 697# Whether to impute (to mean) for GLM on validation data.
 698#glm_nan_impute_validation_data = false
 699
 700# Whether to impute (to mean) for GLM on prediction data (required for consistency with MOJO).
 701#glm_nan_impute_prediction_data = true
 702
 703# Internal threshold for number of rows x number of columns to trigger certain statistical
 704# techniques (small data recipe like including one hot encoding for all model types, and smaller learning rate)
 705# to increase model accuracy
 706#statistical_threshold_data_size_small = 100000
 707
 708# Internal threshold for number of rows x number of columns to trigger certain statistical
 709# techniques (fewer genes created, removal of high max_depth for tree models, etc.) that can speed up modeling.
 710# Also controls maximum rows used in training final model,
 711# by sampling statistical_threshold_data_size_large / columns number of rows
 712#statistical_threshold_data_size_large = 500000000
 713
 714# Internal threshold for number of rows x number of columns to trigger sampling for auxiliary data uses,
 715# like imbalanced data set detection and bootstrap scoring sample size and iterations
 716#aux_threshold_data_size_large = 10000000
 717
 718# Internal threshold for set-based method for sampling without replacement.
 719# Can be 10x faster than np_random_choice internal optimized method, and
 720# up to 30x faster than np.random.choice to sample 250k rows from 1B rows etc.
 721#set_method_sampling_row_limit = 5000000
 722
 723# Internal threshold for number of rows x number of columns to trigger certain changes in performance
 724# (fewer threads if beyond large value) to help avoid OOM or unnecessary slowdowns
 725# (fewer threads if lower than small value) to avoid excess forking of tasks
 726#performance_threshold_data_size_small = 100000
 727
 728# Internal threshold for number of rows x number of columns to trigger certain changes in performance
 729# (fewer threads if beyond large value) to help avoid OOM or unnecessary slowdowns
 730# (fewer threads if lower than small value) to avoid excess forking of tasks
 731#performance_threshold_data_size_large = 100000000
 732
 733# Threshold for number of rows x number of columns to trigger GPU to be default for models like XGBoost GBM.
 734#gpu_default_threshold_data_size_large = 1000000
 735
 736# Maximum fraction of mismatched columns to allow between train and either valid or test.  Beyond this value the experiment will fail with invalid data error.
 737#max_relative_cols_mismatch_allowed = 0.5
 738
 739# Enable various rules to handle wide (Num. columns > Num. rows) datasets ('auto'/'on'/'off').  Setting on forces rules to be enabled regardless of columns.
 740#enable_wide_rules = "auto"
 741
 742# If columns > wide_factor * rows, then enable wide rules if auto.  For columns > rows, random forest is always enabled.
 743#wide_factor = 5.0
 744
 745# Maximum number of columns to start an experiment. This threshold exists to constraint the # complexity and the length of the Driverless AI's processes.
 746#max_cols = 10000000
 747
 748# Largest number of rows to use for column stats, otherwise sample randomly
 749#max_rows_col_stats = 1000000
 750
 751# Largest number of rows to use for cv in cv for target encoding when doing gini scoring test
 752#max_rows_cv_in_cv_gini = 100000
 753
 754# Largest number of rows to use for constant model fit, otherwise sample randomly
 755#max_rows_constant_model = 1000000
 756
 757# Largest number of rows to use for final ensemble base model fold cores, otherwise sample randomly
 758#max_rows_final_ensemble_base_model_fold_scores = 1000000
 759
 760# Largest number of rows to use for final ensemble blender for regression and binary (scaled down linearly by number of classes for multiclass for >= 10 classes), otherwise sample randomly.
 761#max_rows_final_blender = 1000000
 762
 763# Smallest number of rows (or number of rows if less than this) to use for final ensemble blender.
 764#min_rows_final_blender = 10000
 765
 766# Largest number of rows to use for final training score (no holdout), otherwise sample randomly
 767#max_rows_final_train_score = 5000000
 768
 769# Largest number of rows to use for final ROC, lift-gains, confusion matrix, residual, and actual vs. predicted.  Otherwise sample randomly
 770#max_rows_final_roccmconf = 1000000
 771
 772# Largest number of rows to use for final holdout scores, otherwise sample randomly
 773#max_rows_final_holdout_score = 5000000
 774
 775# Largest number of rows to use for final holdout bootstrap scores, otherwise sample randomly
 776#max_rows_final_holdout_bootstrap_score = 1000000
 777
 778# Whether to obtain permutation feature importance on original features for reporting in logs and summary zip file
 779# (as files with pattern fs_*.json or fs_*.tab.txt).
 780# This computes feature importance on a single un-tuned model
 781# (typically LightGBM with pre-defined un-tuned hyperparameters)
 782# and simple set of features (encoding typically is frequency encoding or target encoding).
 783# Features with low importance are automatically dropped if there are many original features,
 784# or a model with feature selection by permutation importance is created if interpretability is high enough in order to see if it gives a better score.
 785# One can manually drop low importance features, but this can be risky as transformers or hyperparameters might recover
 786# their usefulness.
 787# Permutation importance is obtained by:
 788# 1) Transforming categoricals to frequency or target encoding features.
 789# 2) Fitting that model on many folds, different data sizes, and slightly varying hyperparameters.
 790# 3) Predicting on that model for each feature where each feature has its data shuffled.
 791# 4) Computing the score on each shuffled prediction.
 792# 5) Computing the difference between the unshuffled score and the shuffled score to arrive at a delta score
 793# 6) The delta score becomes the variable importance once normalized by the maximum.
 794# Positive delta scores indicate the feature helped the model score,
 795# while negative delta scores indicate the feature hurt the model score.
 796# The normalized scores are stored in the fs_normalized_* files in the summary zip.
 797# The unnormalized scores (actual delta scores) are stored in the fs_unnormalized_* files in the summary zip.
 798# AutoDoc has a similar functionality of providing permutation importance on original features,
 799# where that takes the specific final model of an experiment and runs training data set through permutation importance to get original importance,
 800# so shuffling of original features is performed and the full pipeline is computed in each shuffled set of original features.
 801# 
 802#orig_features_fs_report = false
 803
 804# Maximum number of rows when doing permutation feature importance, reduced by (stratified) random sampling.
 805# 
 806#max_rows_fs = 500000
 807
 808#max_rows_leak = 100000
 809
 810# How many workers to use for feature selection by permutation for predict phase.
 811# (0 = auto, > 0: min of DAI value and this value, < 0: exactly negative of this value)
 812# 
 813#max_workers_fs = 0
 814
 815# How many workers to use for shift and leakage checks  if using LightGBM on CPU.
 816# (0 = auto, > 0: min of DAI value and this value, < 0: exactly negative of this value)
 817# 
 818#max_workers_shift_leak = 0
 819
 820# Maximum number of columns selected out of original set of original columns, using feature selection.
 821# The selection is based upon how well target encoding (or frequency encoding if not available) on categoricals and numerics treated as categoricals.
 822# This is useful to reduce the final model complexity. First the best
 823# [max_orig_cols_selected] are found through feature selection methods and then
 824# these features are used in feature evolution (to derive other features) and in modelling.
 825# 
 826#max_orig_cols_selected = 10000000
 827
 828# Maximum number of numeric columns selected, above which will do feature selection
 829# same max_orig_cols_selected but for numeric columns.
 830#max_orig_numeric_cols_selected = 10000000
 831
 832#max_orig_nonnumeric_cols_selected_default = 300
 833
 834# Maximum number of non-numeric columns selected, above which will do feature selection on all features. Same as max_orig_numeric_cols_selected but for categorical columns.
 835# If set to -1, then auto mode which uses max_orig_nonnumeric_cols_selected_default, but then for small data can be increased up to 10x larger.
 836# 
 837#max_orig_nonnumeric_cols_selected = -1
 838
 839# The factor times max_orig_cols_selected, by which column selection is based upon no target encoding and no treating numerical as categorical
 840# in order to limit performance cost of feature engineering
 841#max_orig_cols_selected_simple_factor = 2
 842
 843# Like max_orig_cols_selected, but columns above which add special individual with original columns reduced.
 844# 
 845#fs_orig_cols_selected = 10000000
 846
 847# Like max_orig_numeric_cols_selected, but applicable to special individual with original columns reduced.
 848# A separate individual in the genetic algorithm is created by doing feature selection by permutation importance on original features.
 849# 
 850#fs_orig_numeric_cols_selected = 10000000
 851
 852# Like max_orig_nonnumeric_cols_selected, but applicable to special individual with original columns reduced.
 853# A separate individual in the genetic algorithm is created by doing feature selection by permutation importance on original features.
 854# 
 855#fs_orig_nonnumeric_cols_selected = 200
 856
 857# Like max_orig_cols_selected_simple_factor, but applicable to special individual with original columns reduced.
 858#fs_orig_cols_selected_simple_factor = 2
 859
 860#predict_shuffle_inside_model = true
 861
 862#use_native_cats_for_lgbm_fs = true
 863
 864#orig_stddev_max_cols = 1000
 865
 866# Maximum allowed fraction of unique values for integer and categorical columns (otherwise will treat column as ID and drop)
 867#max_relative_cardinality = 0.95
 868
 869# Maximum allowed number of unique values for integer and categorical columns (otherwise will treat column as ID and drop)
 870#max_absolute_cardinality = 1000000
 871
 872# Whether to treat some numerical features as categorical.
 873# For instance, sometimes an integer column may not represent a numerical feature but
 874# represent different numerical codes instead.
 875# Very restrictive to disable, since then even columns with few categorical levels that happen to be numerical
 876# in value will not be encoded like a categorical.
 877# 
 878#num_as_cat = true
 879
 880# Max number of unique values for integer/real columns to be treated as categoricals (test applies to first statistical_threshold_data_size_small rows only)
 881#max_int_as_cat_uniques = 50
 882
 883# Max number of unique values for integer/real columns to be treated as categoricals (test applies to first statistical_threshold_data_size_small rows only). Applies to integer or real numerical feature that violates Benford's law, and so is ID-like but not entirely an ID.
 884#max_int_as_cat_uniques_if_not_benford = 10000
 885
 886# When the fraction of non-numeric (and non-missing) values is less or equal than this value, consider the
 887# column numeric. Can help with minor data quality issues for experimentation, > 0 is not recommended for production,
 888# since type inconsistencies can occur. Note: Replaces non-numeric values with missing values
 889# at start of experiment, so some information is lost, but column is now treated as numeric, which can help.
 890# If < 0, then disabled.
 891# If == 0, then if number of rows <= max_rows_col_stats, then convert any column of strings of numbers to numeric type.
 892# 
 893#max_fraction_invalid_numeric = 0.0
 894
 895# Number of folds for models used during the feature engineering process.
 896# Increasing this will put a lower fraction of data into validation and more into training
 897# (e.g., num_folds=3 means 67%/33% training/validation splits).
 898# Actual value will vary for small or big data cases.
 899# 
 900#num_folds = 3
 901
 902#fold_balancing_repeats_times_rows = 100000000.0
 903
 904#max_fold_balancing_repeats = 10
 905
 906#fixed_split_seed = 0
 907
 908#show_fold_stats = true
 909
 910# For multiclass problems only. Whether to allow different sets of target classes across (cross-)validation
 911# fold splits. Especially important when passing a fold column that isn't balanced w.r.t class distribution.
 912# 
 913#allow_different_classes_across_fold_splits = true
 914
 915# Accuracy setting equal and above which enables full cross-validation (multiple folds) during feature evolution
 916# as opposed to only a single holdout split (e.g. 2/3 train and 1/3 validation holdout)
 917# 
 918#full_cv_accuracy_switch = 9
 919
 920# Accuracy setting equal and above which enables stacked ensemble as final model.
 921# Stacking commences at the end of the feature evolution process..
 922# It quite often leads to better model performance, but it does increase the complexity
 923# and execution time of the final model.
 924# 
 925#ensemble_accuracy_switch = 5
 926
 927# Number of fold splits to use for ensemble_level >= 2.
 928# The ensemble modelling may require predictions to be made on out-of-fold samples
 929# hence the data needs to be split on different folds to generate these predictions.
 930# Less folds (like 2 or 3) normally create more stable models, but may be less accurate
 931# More folds can get to higher accuracy at the expense of more time, but the performance
 932# may be less stable when the training data is not enough (i.e. higher chance of overfitting).
 933# Actual value will vary for small or big data cases.
 934# 
 935#num_ensemble_folds = 4
 936
 937# Includes pickles of (train_idx, valid_idx) tuples (numpy row indices for original training data)
 938# for all internal validation folds in the experiment summary zip. For debugging.
 939# Saves both feature engineering folds (validation_train_valid_split_fold_*.pickle) and
 940# final ensemble folds (ensemble_train_valid_split_fold_*.pickle) when no validation dataset is provided.
 941# 
 942#save_validation_splits = false
 943
 944# Number of repeats for each fold for all validation
 945# (modified slightly for small or big data cases)
 946# 
 947#fold_reps = 1
 948
 949#max_num_classes_hard_limit = 10000
 950
 951# Maximum number of classes to allow for a classification problem.
 952# High number of classes may make certain processes of Driverless AI time-consuming.
 953# Memory requirements also increase with higher number of classes
 954# 
 955#max_num_classes = 1000
 956
 957# Maximum number of classes to compute ROC and CM for,
 958# beyond which roc_reduce_type choice for reduction is applied.
 959# Too many classes can take much longer than model building time.
 960# 
 961#max_num_classes_compute_roc = 200
 962
 963# Maximum number of classes to show in GUI for confusion matrix, showing first max_num_classes_client_and_gui labels.
 964# Beyond 6 classes the diagnostics launched from GUI are visually truncated.
 965# This will only modify client-GUI launched diagnostics if changed in config.toml and server is restarted,
 966# while this value can be changed in expert settings to control experiment plots.
 967# 
 968#max_num_classes_client_and_gui = 10
 969
 970# If too many classes when computing roc,
 971# reduce by "rows" by randomly sampling rows,
 972# or reduce by truncating classes to no more than max_num_classes_compute_roc.
 973# If have sufficient rows for class count, can reduce by rows.
 974# 
 975#roc_reduce_type = "rows"
 976
 977#min_roc_sample_size = 1
 978
 979# Maximum number of rows to obtain confusion matrix related plots during feature evolution.
 980# Does not limit final model calculation.
 981# 
 982#max_rows_cm_ga = 500000
 983
 984# Number of actuals vs. predicted data points to use in order to generate in the relevant
 985# plot/graph which is shown at the right part of the screen within an experiment.
 986#num_actuals_vs_predicted = 100
 987
 988# Whether to use feature_brain results even if running new experiments.
 989# Feature brain can be risky with some types of changes to experiment setup.
 990# Even rescoring may be insufficient, so by default this is False.
 991# For example, one experiment may have training=external validation by accident, and get high score,
 992# and while feature_brain_reset_score='on' means we will rescore, it will have already seen
 993# during training the external validation and leak that data as part of what it learned from.
 994# If this is False, feature_brain_level just sets possible models to use and logs/notifies,
 995# but does not use these feature brain cached models.
 996# 
 997#use_feature_brain_new_experiments = false
 998
 999# Whether reuse dataset schema, such as data types set in UI for each column, from parent experiment ('on') or to ignore original dataset schema and only use new schema ('off').
1000# resume_data_schema=True is a basic form of data lineage, but it may not be desirable if data colunn names changed to incompatible data types like int to string.
1001# 'auto': for restart, retrain final pipeline, or refit best models, default is to resume data schema, but new experiments would not by default reuse old schema.
1002# 'on': force reuse of data schema from parent experiment if possible
1003# 'off': don't reuse data schema under any case.
1004# The reuse of the column schema can also be disabled by:
1005# in UI: selecting Parent Experiment as None
1006# in client: setting resume_experiment_id to None
1007#resume_data_schema = "auto"
1008
1009#resume_data_schema_old_logic = false
1010
1011# Whether to show (or use) results from H2O.ai brain: the local caching and smart re-use of prior experiments,
1012# in order to generate more useful features and models for new experiments.
1013# See use_feature_brain_new_experiments for how new experiments by default do not use brain cache.
1014# It can also be used to control checkpointing for experiments that have been paused or interrupted.
1015# DAI will use H2O.ai brain cache if cache file has
1016# a) any matching column names and types for a similar experiment type
1017# b) exactly matches classes
1018# c) exactly matches class labels
1019# d) matches basic time series choices
1020# e) interpretability of cache is equal or lower
1021# f) main model (booster) is allowed by new experiment.
1022# Level of brain to use (for chosen level, where higher levels will also do all lower level operations automatically)
1023# -1 = Don't use any brain cache and don't write any cache
1024# 0 = Don't use any brain cache but still write cache
1025# Use case: Want to save model for later use, but want current model to be built without any brain models
1026# 1 = smart checkpoint from latest best individual model
1027# Use case: Want to use latest matching model, but match can be loose, so needs caution
1028# 2 = smart checkpoint from H2O.ai brain cache of individual best models
1029# Use case: DAI scans through H2O.ai brain cache for best models to restart from
1030# 3 = smart checkpoint like level #1, but for entire population.  Tune only if brain population insufficient size
1031# (will re-score entire population in single iteration, so appears to take longer to complete first iteration)
1032# 4 = smart checkpoint like level #2, but for entire population.  Tune only if brain population insufficient size
1033# (will re-score entire population in single iteration, so appears to take longer to complete first iteration)
1034# 5 = like #4, but will scan over entire brain cache of populations to get best scored individuals
1035# (can be slower due to brain cache scanning if big cache)
1036# 1000 + feature_brain_level (above positive values) = use resumed_experiment_id and actual feature_brain_level,
1037# to use other specific experiment as base for individuals or population,
1038# instead of sampling from any old experiments
1039# GUI has 3 options and corresponding settings:
1040# 1) New Experiment: Uses feature brain level default of 2
1041# 2) New Experiment With Same Settings: Re-uses the same feature brain level as parent experiment
1042# 3) Restart From Last Checkpoint: Resets feature brain level to 1003 and sets experiment ID to resume from
1043# (continued genetic algorithm iterations)
1044# 4) Retrain Final Pipeline:  Like Restart but also time=0 so skips any tuning and heads straight to final model
1045# (assumes had at least one tuning iteration in parent experiment)
1046# Other use cases:
1047# a) Restart on different data: Use same column names and fewer or more rows (applicable to 1 - 5)
1048# b) Re-fit only final pipeline: Like (a), but choose time=1 and feature_brain_level=3 - 5
1049# c) Restart with more columns: Add columns, so model builds upon old model built from old column names (1 - 5)
1050# d) Restart with focus on model tuning: Restart, then select feature_engineering_effort = 3 in expert settings
1051# e) can retrain final model but ignore any original features except those in final pipeline (normal retrain but set brain_add_features_for_new_columns=false)
1052# Notes:
1053# 1) In all cases, we first check the resumed experiment id if given, and then the brain cache
1054# 2) For Restart cases, may want to set min_dai_iterations to non-zero to force delayed early stopping, else may not be enough iterations to find better model.
1055# 3) A "New experiment with Same Settings" of a Restart will use feature_brain_level=1003 for default Restart mode (revert to 2, or even 0 if want to start a fresh experiment otherwise)
1056#feature_brain_level = 2
1057
1058# Whether to smartly keep score to avoid re-munging/retraining/rescoring steps brain models ('auto'); always
1059# force all steps for all brain imports ('on'); or never rescore ('off').
1060# 'auto' only rescores if differences in the current and previous experiments warrant it (e.g., column or metric changes).
1061# 'on' is useful when smart similarity checking is not reliable enough.
1062# 'off' is useful when you want to reuse the same features and model for the final model refit, despite changes in seed or other features
1063# that might change the outcome if rescored before reaching the final model.
1064# If set to 'off', no limits are applied to features during brain ingestion,
1065# while you can set brain_add_features_for_new_columns to false if you want to ignore any new columns in the data.
1066# Additionally, any unscored individuals loaded from the parent experiment are not rescored during refit or retrain.
1067# You can also set refit_same_best_individual to True if you want the same best individual (highest-scored model and features) to be used
1068# regardless of any scoring changes.
1069# 
1070#feature_brain_reset_score = "auto"
1071
1072#enable_strict_confict_key_check_for_brain = true
1073
1074#allow_change_layer_count_brain = false
1075
1076# Relative number of columns that must match between current reference individual and brain individual.
1077# 0.0: perfect match
1078# 1.0: All columns are different, worst match
1079# e.g. 0.1 implies no more than 10% of columns mismatch between reference set of columns and brain individual.
1080# 
1081#brain_maximum_diff_score = 0.1
1082
1083# Maximum number of brain individuals pulled from H2O.ai brain cache for feature_brain_level=1, 2
1084#max_num_brain_indivs = 3
1085
1086# Save feature brain iterations every iter_num % feature_brain_iterations_save_every_iteration == 0, to be able to restart/refit with which_iteration_brain >= 0
1087# 0 means disable
1088# 
1089#feature_brain_save_every_iteration = 0
1090
1091# When doing restart or re-fit type feature_brain_level with resumed_experiment_id, choose which iteration to start from, instead of only last best
1092# -1 means just use last best
1093# Usage:
1094# 1) Run one experiment with feature_brain_iterations_save_every_iteration=1 or some other number
1095# 2) Identify which iteration brain dump one wants to restart/refit from
1096# 3) Restart/Refit from original experiment, setting which_iteration_brain to that number in expert settings
1097# Note: If restart from a tuning iteration, this will pull in entire scored tuning population and use that for feature evolution
1098# 
1099#which_iteration_brain = -1
1100
1101# When doing re-fit from feature brain, if change columns or features, population of individuals used to refit from may change order of which was best,
1102# leading to better result chosen (False case).  But sometimes want to see exact same model/features with only one feature added,
1103# and then would need to set this to True case.
1104# E.g. if refit with just 1 extra column and have interpretability=1, then final model will be same features,
1105# with one more engineered feature applied to that new original feature.
1106# 
1107#refit_same_best_individual = false
1108
1109# When doing restart or re-fit of experiment from feature brain,
1110# sometimes user might change data significantly and then warrant
1111# redoing reduction of original features by feature selection, shift detection, and leakage detection.
1112# However, in other cases, if data and all options are nearly (or exactly) identical, then these
1113# steps might change the features slightly (e.g. due to random seed if not setting reproducible mode),
1114# leading to changes in features and model that is refitted.  By default, restart and refit avoid
1115# these steps assuming data and experiment setup have no changed significantly.
1116# If check_distribution_shift is forced to on (instead of auto), then this option is ignored.
1117# In order to ensure exact same final pipeline is fitted, one should also set:
1118# 1) brain_add_features_for_new_columns false
1119# 2) refit_same_best_individual true
1120# 3) feature_brain_reset_score 'off'
1121# 4) force_model_restart_to_defaults false
1122# The score will still be reset if the experiment metric chosen changes,
1123# but changes to the scored model and features will be more frozen in place.
1124# 
1125#restart_refit_redo_origfs_shift_leak = "[]"
1126
1127# Directory, relative to data_directory, to store H2O.ai brain meta model files
1128#brain_rel_dir = "H2O.ai_brain"
1129
1130# Maximum size in bytes the brain will store
1131# We reserve this memory to save data in order to ensure we can retrieve an experiment if
1132# for any reason it gets interrupted.
1133# -1: unlimited
1134# >=0 number of GB to limit brain to
1135#brain_max_size_GB = 20
1136
1137# Whether to take any new columns and add additional features to pipeline, even if doing retrain final model.
1138# In some cases, one might have a new dataset but only want to keep same pipeline regardless of new columns,
1139# in which case one sets this to False.  For example, new data might lead to new dropped features,
1140# due to shift or leak detection.  To avoid change of feature set, one can disable all dropping of columns,
1141# but set this to False to avoid adding any columns as new features,
1142# so pipeline is perfectly preserved when changing data.
1143# 
1144#brain_add_features_for_new_columns = true
1145
1146# If restart/refit and no longer have the original model class available, be conservative
1147# and go back to defaults for that model class.  If False, then try to keep original hyperparameters,
1148# which can fail to work in general.
1149# 
1150#force_model_restart_to_defaults = true
1151
1152# Whether to enable early stopping
1153# Early stopping refers to stopping the feature evolution/engineering process
1154# when there is no performance uplift after a certain number of iterations.
1155# After early stopping has been triggered, Driverless AI will initiate the ensemble
1156# process if selected.
1157#early_stopping = true
1158
1159# Whether to enable early stopping per individual
1160# Each individual in the generic algorithm will stop early if no improvement,
1161# and it will no longer be mutated.
1162# Instead, the best individual will be additionally mutated.
1163#early_stopping_per_individual = true
1164
1165# Minimum number of Driverless AI iterations to stop the feature evolution/engineering
1166# process even if score is not improving. Driverless AI needs to run for at least that many
1167# iterations before deciding to stop. It can be seen a safeguard against suboptimal (early)
1168# convergence.
1169# 
1170#min_dai_iterations = 0
1171
1172# Maximum features per model (and each model within the final model if ensemble) kept.
1173# Keeps top variable importance features, prunes rest away, after each scoring.
1174# Final ensemble will exclude any pruned-away features and only train on kept features,
1175# but may contain a few new features due to fitting on different data view (e.g. new clusters)
1176# Final scoring pipeline will exclude any pruned-away features,
1177# but may contain a few new features due to fitting on different data view (e.g. new clusters)
1178# -1 means no restrictions except internally-determined memory and interpretability restrictions.
1179# Notes:
1180# * If interpretability > remove_scored_0gain_genes_in_postprocessing_above_interpretability, then
1181# every GA iteration post-processes features down to this value just after scoring them.  Otherwise,
1182# only mutations of scored individuals will be pruned (until the final model where limits are strictly applied).
1183# * If ngenes_max is not also limited, then some individuals will have more genes and features until
1184# pruned by mutation or by preparation for final model.
1185# * E.g. to generally limit every iteration to exactly 1 features, one must set nfeatures_max=ngenes_max=1
1186# and remove_scored_0gain_genes_in_postprocessing_above_interpretability=0, but the genetic algorithm
1187# will have a harder time finding good features.
1188# 
1189#nfeatures_max = -1
1190
1191# Maximum genes (transformer instances) per model (and each model within the final model if ensemble) kept.
1192# Controls number of genes before features are scored, so just randomly samples genes if pruning occurs.
1193# If restriction occurs after scoring features, then aggregated gene importances are used for pruning genes.
1194# Instances includes all possible transformers, including original transformer for numeric features.
1195# -1 means no restrictions except internally-determined memory and interpretability restrictions
1196# 
1197#ngenes_max = -1
1198
1199# Like ngenes_max but controls minimum number of genes.
1200#ngenes_min = -1
1201
1202# Like nfeatures_max but controls the minimum number of features.
1203# Useful when DAI generates too few engineered features by default and you want it to create more.
1204# This is especially useful when the dataset has few input features, causing Driverless AI to behave conservatively and generate fewer transformed features.
1205# For example, if only the target encoding transformer is selected, increasing this value allows DAI to explore more possible input features.
1206#nfeatures_min = -1
1207
1208# Whether to limit feature counts by interpretability setting via features_allowed_by_interpretability
1209#limit_features_by_interpretability = true
1210
1211# Whether to use out-of-fold predictions of Word-based CNN Torch models as transformers for NLP if Torch enabled
1212#enable_textcnn = "auto"
1213
1214# Whether to use out-of-fold predictions of Word-based Bi-GRU Torch models as transformers for NLP if Torch enabled
1215#enable_textbigru = "auto"
1216
1217# Whether to use out-of-fold predictions of Character-level CNN Torch models as transformers for NLP if Torch enabled
1218#enable_charcnn = "auto"
1219
1220# Whether to use pretrained PyTorch models (BERT Transformer) as transformers for NLP tasks. Fits a linear model on top of pretrained embeddings. Requires internet connection. Default of 'auto' means disabled. To enable, set to 'on'. GPU(s) are highly recommended.Reduce string_col_as_text_min_relative_cardinality closer to 0.0 and string_col_as_text_threshold closer to 0.0 to force string column to be treated as text despite low number of uniques.
1221#enable_pytorch_nlp_transformer = "auto"
1222
1223# More rows can slow down the fitting process. Recommended values are less than 100000.
1224#pytorch_nlp_transformer_max_rows_linear_model = 50000
1225
1226# Whether to use pretrained PyTorch models and fine-tune them for NLP tasks. Requires internet connection. Default of 'auto' means disabled. To enable, set to 'on'. These models are only using the first text column, and can be slow to train. GPU(s) are highly recommended.Set string_col_as_text_min_relative_cardinality=0.0 to force string column to be treated as text despite low number of uniques.
1227#enable_pytorch_nlp_model = "auto"
1228
1229# Select which pretrained PyTorch NLP model(s) to use. Non-default ones might have no MOJO support. Requires internet connection. Only if PyTorch models or transformers for NLP are set to 'on'.
1230#pytorch_nlp_pretrained_models = "['bert-base-uncased', 'distilbert-base-uncased', 'bert-base-multilingual-cased']"
1231
1232# Max. number of epochs for Torch models for making NLP features
1233#pytorch_max_epochs_nlp = 2
1234
1235# Path to pretrained embeddings for Torch NLP models, can be a path in local file system or an S3 location (s3://).
1236# For example, download and unzip https://nlp.stanford.edu/data/glove.6B.zip
1237# nlp_pretrained_embeddings_file_path = /path/on/server/to/glove.6B.300d.txt
1238# 
1239#nlp_pretrained_embeddings_file_path = ""
1240
1241#nlp_pretrained_s3_access_key_id = ""
1242
1243#nlp_pretrained_s3_secret_access_key = ""
1244
1245# Allow training of all weights of the neural network graph, including the pretrained embedding layer weights. If disabled, then the embedding layer is frozen, but all other weights are still fine-tuned.
1246#nlp_pretrained_embeddings_trainable = false
1247
1248#bert_migration_timeout_secs = 600
1249
1250#enable_bert_transformer_acceptance_test = false
1251
1252#enable_bert_model_acceptance_test = false
1253
1254# Whether to parallelize tokenization for BERT Models/Transformers.
1255#pytorch_tokenizer_parallel = true
1256
1257# Number of epochs for fine-tuning of PyTorch NLP models. Larger values can increase accuracy but take longer to train.
1258#pytorch_nlp_fine_tuning_num_epochs = -1
1259
1260# Batch size for PyTorch NLP models. Larger models and larger batch sizes will use more memory.
1261#pytorch_nlp_fine_tuning_batch_size = -1
1262
1263# Maximum sequence length (padding length) for PyTorch NLP models. Larger models and larger padding lengths will use more memory.
1264#pytorch_nlp_fine_tuning_padding_length = -1
1265
1266# Path to pretrained PyTorch NLP models. Note that this can be either a path in the local file system
1267# (/path/on/server/to/bert_models_folder), an URL or a S3 location (s3://).
1268# To get all models, download https://artifacts.cdn.h2o.ai/releases/ai/h2o/pretrained/bert_models.zip
1269# and unzip and store it in a directory on the instance where DAI is installed.
1270# ``pytorch_nlp_pretrained_models_dir=/path/on/server/to/bert_models_folder``
1271# 
1272#pytorch_nlp_pretrained_models_dir = ""
1273
1274#pytorch_nlp_pretrained_s3_access_key_id = ""
1275
1276#pytorch_nlp_pretrained_s3_secret_access_key = ""
1277
1278# Fraction of text columns out of all features to be considered a text-dominated problem
1279#text_fraction_for_text_dominated_problem = 0.3
1280
1281# Fraction of text transformers to all transformers above which to trigger that text dominated problem
1282#text_transformer_fraction_for_text_dominated_problem = 0.3
1283
1284# Whether to reduce options for text-dominated models to reduce expense, e.g. disable ensemble, disable genetic algorithm, single identity target encoder for classification, etc.
1285#text_dominated_limit_tuning = true
1286
1287# Whether to reduce options for image-dominated models to reduce expense, e.g. disable ensemble, disable genetic algorithm, single identity target encoder for classification, etc.
1288#image_dominated_limit_tuning = true
1289
1290# Threshold for average string-is-text score as determined by internal heuristics
1291# It decides when a string column will be treated as text (for an NLP problem) or just as
1292# a standard categorical variable.
1293# Higher values will favor string columns as categoricals, lower values will favor string columns as text.
1294# Set string_col_as_text_min_relative_cardinality=0.0 to force string column to be treated as text despite low number of uniques.
1295#string_col_as_text_threshold = 0.3
1296
1297# Threshold for string columns to be treated as text during preview - should be less than string_col_as_text_threshold to allow data with first 20 rows that don't look like text to still work for Text-only transformers (0.0 - text, 1.0 - string)
1298#string_col_as_text_threshold_preview = 0.1
1299
1300# Mininum fraction of unique values for string columns to be considered as possible text (otherwise categorical)
1301#string_col_as_text_min_relative_cardinality = 0.1
1302
1303# Mininum number of uniques for string columns to be considered as possible text (if not already)
1304#string_col_as_text_min_absolute_cardinality = 10000
1305
1306# If disabled, require 2 or more alphanumeric characters for a token in Text (Count and TF/IDF) transformers, otherwise create tokens out of single alphanumeric characters. True means that 'Street 3' is tokenized into 'Street' and '3', while False means that it's tokenized into 'Street'.
1307#tokenize_single_chars = true
1308
1309# Supported image types. URIs with these endings will be considered as image paths (local or remote).
1310#supported_image_types = "['jpg', 'jpeg', 'png', 'bmp', 'ppm', 'tif', 'tiff', 'JPG', 'JPEG', 'PNG', 'BMP', 'PPM', 'TIF', 'TIFF']"
1311
1312# Whether to create absolute paths for images when importing datasets containing images. Can faciliate testing or re-use of frames for scoring.
1313#image_paths_absolute = false
1314
1315# Whether to use pretrained deep learning models for processing of image data as part of the feature engineering pipeline. A column of URIs to images (jpg, png, etc.) will be converted to a numeric representation using ImageNet-pretrained deep learning models. If no GPUs are found, then must be set to 'on' to enable.
1316#enable_image_transformer = "auto"
1317
1318# Supported ImageNet pretrained architectures for Image V2 Transformer. Non-default ones will require internet access to download pretrained models from H2O S3 buckets (To get all models, download https://artifacts.cdn.h2o.ai/releases/ai/h2o/pretrained/dai_image_models_2_3_0.zip and unzip inside image_pretrained_models_dir).
1319#image_transformer_pretrained_models = "['levit']"
1320
1321# Dimensionality of feature (embedding) space created by Image V2 Transformer. If more than one is selected, multiple transformers can be active at the same time.
1322#image_transformer_vectorization_output_dimension = "[100]"
1323
1324# Enable fine-tuning of the ImageNet pretrained models used for the Image V2 Transformer. Enabling this will slow down training, but should increase accuracy.
1325#image_transformer_fine_tune = false
1326
1327# Number of epochs for fine-tuning of ImageNet pretrained models used for the Image V2 Transformer.
1328#image_transformer_fine_tuning_num_epochs = 2
1329
1330# The list of possible image augmentations to apply while fine-tuning the ImageNet pretrained models used for the Image V2 Transformer. Details about individual augmentations could be found here: https://albumentations.ai/docs/. Note: Does not apply to tf_efficientnetv2 as the recommended transformers from huggingface will be used.
1331#default_image_augmentations = "['HorizontalFlip']"
1332
1333# Batch size for Image V2 Transformer. Larger architectures and larger batch sizes will use more memory.Note. Driverless will automatically find the most appropriate batch size if set to -1 (or non-positive).
1334#image_transformer_batch_size = -1
1335
1336# Path to pretrained Image models.
1337# To get all models, download https://artifacts.cdn.h2o.ai/releases/ai/h2o/pretrained/dai_image_models_2_3_0.zip,
1338# then extract it in a directory on the instance where Driverless AI is installed.
1339# 
1340#image_pretrained_models_dir = "./pretrained/image/"
1341
1342# Max. number of seconds to wait for image download if images are provided by URL
1343#image_download_timeout = 60
1344
1345# Maximum fraction of missing elements in a string column for it to be considered as possible image paths (URIs)
1346#string_col_as_image_max_missing_fraction = 0.1
1347
1348# Fraction of (unique) image URIs that need to have valid endings (as defined by string_col_as_image_valid_types) for a string column to be considered as image data
1349#string_col_as_image_min_valid_types_fraction = 0.8
1350
1351# Whether to use GPU(s), if available, to transform images into embeddings with Image V2 Transformer. Can lead to significant speedups.
1352#image_transformer_use_gpu = true
1353
1354# Nominally, the time dial controls the search space, with higher time trying more options, but any keys present in this dictionary will override the automatic choices.
1355# e.g. ``params_image_auto_search_space="{'augmentation': ['safe'], 'crop_strategy': ['Resize'], 'optimizer': ['AdamW'], 'dropout': [0.1], 'epochs_per_stage': [5], 'warmup_epochs': [0], 'mixup': [0.0], 'cutmix': [0.0], 'global_pool': ['avg'], 'learning_rate': [3e-4]}"``
1356# Options, e.g. used for time>=8
1357# # Overfit Protection Options:
1358# 'augmentation': ``["safe", "semi_safe", "hard"]``
1359# 'crop_strategy': ``["Resize", "RandomResizedCropSoft", "RandomResizedCropHard"]``
1360# 'dropout': ``[0.1, 0.3, 0.5]``
1361# # Global Pool Options:
1362# avgmax -- sum of AVG and MAX poolings
1363# catavgmax -- concatenation of AVG and MAX poolings
1364# https://github.com/rwightman/pytorch-image-models/blob/master/timm/models/layers/adaptive_avgmax_pool.py
1365# ``'global_pool': ['avg', 'avgmax', 'catavgmax']``
1366# # Regression: No MixUp and CutMix:
1367# ``'mixup': [0.0]``
1368# ``'cutmix': [0.0]``
1369# # Classification: Beta distribution coeff to generate weights for MixUp:
1370# ``'mixup': [0.0, 0.4, 1.0, 3.0]``
1371# ``'cutmix': [0.0, 0.4, 1.0, 3.0]``
1372# # Optimization Options:
1373# ``'epochs_per_stage': [5, 10, 15]``  # from 40 to 135 epochs
1374# ``'warmup_epochs': [0, 0.5, 1]``
1375# ``'optimizer': ["AdamW", "SGD"]``
1376# ``'learning_rate': [1e-3, 3e-4, 1e-4]``
1377#params_image_auto_search_space = "{}"
1378
1379# Nominally, the accuracy dial controls the architectures considered if this is left empty,
1380# but one can choose specific ones.  The options in the list are ordered by complexity.
1381#image_auto_arch = "[]"
1382
1383# Any images smaller are upscaled to the minimum.  Default is 64, but can be as small as 32 given the pooling layers used.
1384#image_auto_min_shape = 64
1385
1386# 0 means automatic based upon time dial of min(1, time//2).
1387#image_auto_num_final_models = 0
1388
1389# 0 means automatic based upon time dial of max(4 * (time - 1), 2).
1390#image_auto_num_models = 0
1391
1392# 0 means automatic based upon time dial of time + 1 if time < 6 else time - 1.
1393#image_auto_num_stages = 0
1394
1395# 0 means automatic based upon time dial or number of models and stages
1396# set by image_auto_num_models and image_auto_num_stages.
1397#image_auto_iterations = 0
1398
1399# 0.0 means automatic based upon the current stage, where stage 0 uses half, stage 1 uses 3/4, and stage 2 uses full image.
1400# One can pass 1.0 to override and always use full image.  0.5 would mean use half.
1401#image_auto_shape_factor = 0.0
1402
1403# Whether to use test time augmentation for image auto v2.  This will increase accuracy, but also increase scoring time.  If False, then no test time augmentation will be used.
1404# 
1405#enable_image_auto_v2_tta = true
1406
1407# Control maximum number of cores to use for image auto model parallel data management. 0 will disable mp: https://pytorch-lightning.readthedocs.io/en/latest/guides/speed.html
1408#max_image_auto_ddp_cores = 10
1409
1410# Percentile value cutoff of input text token lengths for nlp deep learning models
1411#text_dl_token_pad_percentile = 99
1412
1413# Maximum token length of input text to be used in nlp deep learning models
1414#text_dl_token_pad_max = 512
1415
1416# Interpretability setting equal and above which will use automatic monotonicity constraints in
1417# XGBoostGBM/LightGBM/DecisionTree models.
1418# 
1419#monotonicity_constraints_interpretability_switch = 7
1420
1421# For models that support monotonicity constraints, and if enabled, show automatically determined monotonicity constraints for each feature going into the model based on its correlation with the target. 'low' shows only monotonicity constraint direction. 'medium' shows correlation of positively and negatively constraint features. 'high' shows all correlation values.
1422#monotonicity_constraints_log_level = "medium"
1423
1424# Threshold, of Pearson product-moment correlation coefficient between numerical or encoded transformed
1425# feature and target, above (below negative for) which will enforce positive (negative) monotonicity
1426# for XGBoostGBM, LightGBM and DecisionTree models.
1427# Enabled when interpretability >= monotonicity_constraints_interpretability_switch config toml value.
1428# Only if monotonicity_constraints_dict is not provided.
1429# 
1430#monotonicity_constraints_correlation_threshold = 0.1
1431
1432# If enabled, only monotonic features with +1/-1 constraints will be passed to the model(s), and features
1433# without monotonicity constraints (0, as set by monotonicity_constraints_dict or determined automatically)
1434# will be dropped. Otherwise all features will be in the model.
1435# Only active when interpretability >= monotonicity_constraints_interpretability_switch or
1436# monotonicity_constraints_dict is provided.
1437# 
1438#monotonicity_constraints_drop_low_correlation_features = false
1439
1440# Manual override for monotonicity constraints. Mapping of original numeric features to desired constraint
1441# (1 for pos, -1 for neg, or 0 to disable.  True can be set for automatic handling, False is same as 0).
1442# Features that are not listed here will be treated automatically,
1443# and so get no constraint (i.e., 0) if interpretability < monotonicity_constraints_interpretability_switch
1444# and otherwise the constraint is automatically determined from the correlation between each feature and the target.
1445# Example: {'PAY_0': -1, 'PAY_2': -1, 'AGE': -1, 'BILL_AMT1': 1, 'PAY_AMT1': -1}
1446# 
1447#monotonicity_constraints_dict = "{}"
1448
1449# Exploring feature interactions can be important in gaining better predictive performance.
1450# The interaction can take multiple forms (i.e. feature1 + feature2 or feature1 * feature2 + ... featureN)
1451# Although certain machine learning algorithms (like tree-based methods) can do well in
1452# capturing these interactions as part of their training process, still generating them may
1453# help them (or other algorithms) yield better performance.
1454# The depth of the interaction level (as in "up to" how many features may be combined at
1455# once to create one single feature) can be specified to control the complexity of the
1456# feature engineering process.  For transformers that use both numeric and categorical features, this constrains
1457# the number of each type, not the total number. Higher values might be able to make more predictive models
1458# at the expense of time (-1 means automatic).
1459# 
1460#max_feature_interaction_depth = -1
1461
1462# Instead of sampling from min to max (up to max_feature_interaction_depth unless all specified)
1463# columns allowed for each transformer (0), choose fixed non-zero number of columns to use.
1464# Can make same as number of columns to use all columns for each transformers if allowed by each transformer.
1465# -n can be chosen to do 50/50 sample and fixed of n features.
1466# 
1467#fixed_feature_interaction_depth = 0
1468
1469# Accuracy setting equal and above which enables tuning of model parameters
1470# Only applicable if parameter_tuning_num_models=-1 (auto)
1471#tune_parameters_accuracy_switch = 3
1472
1473# Accuracy setting equal and above which enables tuning of target transform for regression.
1474# This is useful for time series when instead of predicting the actual target value, it
1475# might be better to predict a transformed target variable like sqrt(target) or log(target)
1476# as a means to control for outliers.
1477#tune_target_transform_accuracy_switch = 5
1478
1479# Select a target transformation for regression problems. Must be one of: ['auto',
1480# 'identity', 'identity_noclip', 'center', 'standardize', 'unit_box', 'log', 'log_noclip', 'square',
1481# 'sqrt', 'double_sqrt', 'inverse', 'anscombe', 'logit', 'sigmoid'].
1482# If set to 'auto', will automatically pick the best target transformer (if accuracy is set to
1483# tune_target_transform_accuracy_switch or larger, considering interpretability level of each target transformer),
1484# otherwise will fall back to 'identity_noclip' (easiest to interpret, Shapley values are in original space, etc.).
1485# All transformers except for 'center', 'standardize', 'identity_noclip' and 'log_noclip' perform clipping
1486# to constrain the predictions to the domain of the target in the training data. Use 'center', 'standardize',
1487# 'identity_noclip' or 'log_noclip' to disable clipping and to allow predictions outside of the target domain observed in
1488# the training data (for parametric models or custom models that support extrapolation).
1489# 
1490#target_transformer = "auto"
1491
1492# Select list of target transformers to use for tuning. Only for target_transformer='auto' and accuracy >= tune_target_transform_accuracy_switch.
1493# 
1494#target_transformer_tuning_choices = "['identity', 'identity_noclip', 'center', 'standardize', 'unit_box', 'log', 'square', 'sqrt', 'double_sqrt', 'anscombe', 'logit', 'sigmoid']"
1495
1496# Tournament style (method to decide which models are best at each iteration)
1497# 'auto' : Choose based upon accuracy and interpretability
1498# 'uniform' : all individuals in population compete to win as best (can lead to all, e.g. LightGBM models in final ensemble, which may not improve ensemble performance due to lack of diversity)
1499# 'model' : individuals with same model type compete (good if multiple models do well but some models that do not do as well still contribute to improving ensemble)
1500# 'feature' : individuals with similar feature types compete (good if target encoding, frequency encoding, and other feature sets lead to good results)
1501# 'fullstack' : Choose among optimal model and feature types
1502# 'model' and 'feature' styles preserve at least one winner for each type (and so 2 total indivs of each type after mutation)
1503# For each case, a round robin approach is used to choose best scores among type of models to choose from.
1504# If enable_genetic_algorithm=='Optuna', then every individual is self-mutated without any tournament
1505# during the genetic algorithm.  The tournament is only used to prune-down individuals for, e.g.,
1506# tuning -> evolution and evolution -> final model.
1507# 
1508#tournament_style = "auto"
1509
1510# Interpretability above which will use 'uniform' tournament style
1511#tournament_uniform_style_interpretability_switch = 8
1512
1513# Accuracy below which will use uniform style if tournament_style = 'auto' (regardless of other accuracy tournament style switch values)
1514#tournament_uniform_style_accuracy_switch = 6
1515
1516# Accuracy equal and above which uses model style if tournament_style = 'auto'
1517#tournament_model_style_accuracy_switch = 6
1518
1519# Accuracy equal and above which uses feature style if tournament_style = 'auto'
1520#tournament_feature_style_accuracy_switch = 13
1521
1522# Accuracy equal and above which uses fullstack style if tournament_style = 'auto'
1523#tournament_fullstack_style_accuracy_switch = 13
1524
1525# Whether to use penalized score for GA tournament or actual score
1526#tournament_use_feature_penalized_score = true
1527
1528# Whether to keep poor scores for small data (<10k rows) in case exploration will find good model.
1529# sets tournament_remove_poor_scores_before_evolution_model_factor=1.1
1530# tournament_remove_worse_than_constant_before_evolution=false
1531# tournament_keep_absolute_ok_scores_before_evolution_model_factor=1.1
1532# tournament_remove_poor_scores_before_final_model_factor=1.1
1533# tournament_remove_worse_than_constant_before_final_model=true
1534#tournament_keep_poor_scores_for_small_data = true
1535
1536# Factor (compared to best score plus each score) beyond which to drop poorly scoring models before evolution.
1537# This is useful in cases when poorly scoring models take a long time to train.
1538#tournament_remove_poor_scores_before_evolution_model_factor = 0.7
1539
1540# For before evolution after tuning, whether to remove models that are worse than (optimized to scorer) constant prediction model
1541#tournament_remove_worse_than_constant_before_evolution = true
1542
1543# For before evolution after tuning, where on scale of 0 (perfect) to 1 (constant model) to keep ok scores by absolute value.
1544#tournament_keep_absolute_ok_scores_before_evolution_model_factor = 0.2
1545
1546# Factor (compared to best score) beyond which to drop poorly scoring models before building final ensemble.  This is useful in cases when poorly scoring models take a long time to train.
1547#tournament_remove_poor_scores_before_final_model_factor = 0.3
1548
1549# For before final model after evolution, whether to remove models that are worse than (optimized to scorer) constant prediction model
1550#tournament_remove_worse_than_constant_before_final_model = true
1551
1552# Driverless AI uses a genetic algorithm (GA) to find the best features, best models and
1553# best hyper parameters for these models. The GA facilitates getting good results while not
1554# requiring torun/try every possible model/feature/parameter. This version of GA has
1555# reinforcement learning elements - it uses a form of exploration-exploitation to reach
1556# optimum solutions. This means it will capitalise on models/features/parameters that seem # to be working well and continue to exploit them even more, while allowing some room for
1557# trying new (and semi-random) models/features/parameters to avoid settling on a local
1558# minimum.
1559# These models/features/parameters tried are what-we-call individuals of a population. More # individuals connote more models/features/parameters to be tried and compete to find the best # ones.
1560#num_individuals = 2
1561
1562# set fixed number of individuals (if > 0) - useful to compare different hardware configurations.  If want 3 individuals in GA race to be preserved, choose 6, since need 1 mutatable loser per surviving individual.
1563#fixed_num_individuals = 0
1564
1565#max_fold_reps_hard_limit = 20
1566
1567# number of unique targets or folds counts after which switch to faster/simpler non-natural sorting and print outs
1568#sanitize_natural_sort_limit = 1000
1569
1570# number of fold ids to report cardinality for, both most common (head) and least common (tail)
1571#head_tail_fold_id_report_length = 30
1572
1573# Whether target encoding (CV target encoding, weight of evidence, etc.) could be enabled
1574# Target encoding refers to several different feature transformations (primarily focused on
1575# categorical data) that aim to represent the feature using information of the actual
1576# target variable. A simple example can be to use the mean of the target to replace each
1577# unique category of a categorical feature. This type of features can be very predictive,
1578# but are prone to overfitting and require more memory as they need to store mappings of
1579# the unique categories and the target values.
1580# 
1581#enable_target_encoding = "auto"
1582
1583# For target encoding, whether a model is used to compute Ginis for checking sanity of transformer. Requires cvte_cv_in_cv to be enabled. If enabled, CV-in-CV isn't done in case the check fails.
1584#cvte_cv_in_cv_use_model = false
1585
1586# For target encoding,
1587# whether an outer level of cross-fold validation is performed,
1588# in cases when GINI is detected to flip sign (or have inconsistent sign for weight of evidence)
1589# between fit_transform on training, transform on training, and transform on validation data.
1590# The degree to which GINI is poor is also used to perform fold-averaging of look-up tables instead
1591# of using global look-up tables.
1592# 
1593#cvte_cv_in_cv = true
1594
1595# For target encoding,
1596# when an outer level of cross-fold validation is performed,
1597# increase number of outer folds or abort target encoding when GINI between feature and target
1598# are not close between fit_transform on training, transform on training, and transform on validation data.
1599# 
1600#cv_in_cv_overconfidence_protection = "auto"
1601
1602#cv_in_cv_overconfidence_protection_factor = 3.0
1603
1604#enable_lexilabel_encoding = "off"
1605
1606#enable_isolation_forest = "off"
1607
1608# Whether one hot encoding could be enabled.  If auto, then only applied for small data and GLM.
1609#enable_one_hot_encoding = "auto"
1610
1611# Limit number of output features (total number of bins) created by all BinnerTransformers based on this
1612# value, scaled by accuracy, interpretability and dataset size. 0 means unlimited.
1613#binner_cardinality_limiter = 50
1614
1615# Whether simple binning of numeric features should be enabled by default. If auto, then only for
1616# GLM/FTRL/GrowNet for time-series or for interpretability >= 6. Binning can help linear (or simple)
1617# models by exposing more signal for features that are not linearly correlated with the target. Note that
1618# NumCatTransformer and NumToCatTransformer already do binning, but also perform target encoding, which makes them
1619# less interpretable. The BinnerTransformer is more interpretable, and also works for time series.
1620#enable_binning = "auto"
1621
1622# Tree uses XGBoost to find optimal split points for binning of numeric features.
1623# Quantile use quantile-based binning. Might fall back to quantile-based if too many classes or
1624# not enough unique values.
1625#binner_bin_method = "['tree']"
1626
1627# If enabled, will attempt to reduce the number of bins during binning of numeric features.
1628# Applies to both tree-based and quantile-based bins.
1629#binner_minimize_bins = true
1630
1631# Given a set of bins (cut points along min...max), the encoding scheme converts the original
1632# numeric feature values into the values of the output columns (one column per bin, and one extra bin for
1633# missing values if any).
1634# Piecewise linear is 0 left of the bin, and 1 right of the bin, and grows linearly from 0 to 1 inside the bin.
1635# Binary is 1 inside the bin and 0 outside the bin. Missing value bin encoding is always binary, either 0 or 1.
1636# If no missing values in the data, then there is no missing value bin.
1637# Piecewise linear helps to encode growing values and keeps smooth transitions across the bin
1638# boundaries, while binary is best suited for detecting specific values in the data.
1639# Both are great at providing features to models that otherwise lack non-linear pattern detection.
1640#binner_encoding = "['piecewise_linear', 'binary']"
1641
1642# If enabled (default), include the original feature value as a output feature for the BinnerTransformer.
1643# This ensures that the BinnerTransformer never has less signal than the OriginalTransformer, since they can
1644# be chosen exclusively.
1645# 
1646#binner_include_original = true
1647
1648#isolation_forest_nestimators = 200
1649
1650# Transformer display names to indicate which transformers to use in experiment.
1651# More information for these transformers can be viewed here:
1652# http://docs.h2o.ai/driverless-ai/latest-stable/docs/userguide/transformations.html
1653# This section allows including/excluding these transformations and may be useful when
1654# simpler (more interpretable) models are sought at the expense of accuracy.
1655# the interpretability setting)
1656# for multi-class: '['NumCatTETransformer', 'TextLinModelTransformer',
1657# 'FrequentTransformer', 'CVTargetEncodeTransformer', 'ClusterDistTransformer',
1658# 'WeightOfEvidenceTransformer', 'TruncSVDNumTransformer', 'CVCatNumEncodeTransformer',
1659# 'DatesTransformer', 'TextTransformer', 'OriginalTransformer',
1660# 'NumToCatWoETransformer', 'NumToCatTETransformer', 'ClusterTETransformer',
1661# 'InteractionsTransformer']'
1662# for regression/binary: '['TextTransformer', 'ClusterDistTransformer',
1663# 'OriginalTransformer', 'TextLinModelTransformer', 'NumToCatTETransformer',
1664# 'DatesTransformer', 'WeightOfEvidenceTransformer', 'InteractionsTransformer',
1665# 'FrequentTransformer', 'CVTargetEncodeTransformer', 'NumCatTETransformer',
1666# 'NumToCatWoETransformer', 'TruncSVDNumTransformer', 'ClusterTETransformer',
1667# 'CVCatNumEncodeTransformer']'
1668# This list appears in the experiment logs (search for 'Transformers used')
1669# 
1670#included_transformers = "[]"
1671
1672# Auxiliary to included_transformers
1673# e.g. to disable all Target Encoding: excluded_transformers =
1674# '['NumCatTETransformer', 'CVTargetEncodeF', 'NumToCatTETransformer',
1675# 'ClusterTETransformer']'.
1676# Does not affect transformers used for preprocessing with included_pretransformers.
1677# 
1678#excluded_transformers = "[]"
1679
1680# Exclude list of genes (i.e. genes (built on top of transformers) to not use,
1681# independent of the interpretability setting)
1682# Some transformers are used by multiple genes, so this allows different control over feature engineering
1683# for multi-class: '['InteractionsGene', 'WeightOfEvidenceGene',
1684# 'NumToCatTargetEncodeSingleGene', 'OriginalGene', 'TextGene', 'FrequentGene',
1685# 'NumToCatWeightOfEvidenceGene', 'NumToCatWeightOfEvidenceMonotonicGene', '
1686# CvTargetEncodeSingleGene', 'DateGene', 'NumToCatTargetEncodeMultiGene', '
1687# DateTimeGene', 'TextLinRegressorGene', 'ClusterIDTargetEncodeSingleGene',
1688# 'CvCatNumEncodeGene', 'TruncSvdNumGene', 'ClusterIDTargetEncodeMultiGene',
1689# 'NumCatTargetEncodeMultiGene', 'CvTargetEncodeMultiGene', 'TextLinClassifierGene',
1690# 'NumCatTargetEncodeSingleGene', 'ClusterDistGene']'
1691# for regression/binary: '['CvTargetEncodeSingleGene', 'NumToCatTargetEncodeSingleGene',
1692# 'CvCatNumEncodeGene', 'ClusterIDTargetEncodeSingleGene', 'TextLinRegressorGene',
1693# 'CvTargetEncodeMultiGene', 'ClusterDistGene', 'OriginalGene', 'DateGene',
1694# 'ClusterIDTargetEncodeMultiGene', 'NumToCatTargetEncodeMultiGene',
1695# 'NumCatTargetEncodeMultiGene', 'TextLinClassifierGene', 'WeightOfEvidenceGene',
1696# 'FrequentGene', 'TruncSvdNumGene', 'InteractionsGene', 'TextGene',
1697# 'DateTimeGene', 'NumToCatWeightOfEvidenceGene',
1698# 'NumToCatWeightOfEvidenceMonotonicGene', ''NumCatTargetEncodeSingleGene']'
1699# This list appears in the experiment logs (search for 'Genes used')
1700# e.g. to disable interaction gene, use:  excluded_genes =
1701# '['InteractionsGene']'.
1702# Does not affect transformers used for preprocessing with included_pretransformers.
1703# 
1704#excluded_genes = "[]"
1705
1706# "Include specific models" lets you choose a set of models that will be considered during experiment training. The
1707# individual model settings and its AUTO / ON / OFF mean following: AUTO lets the internal decision mechanisms determine
1708# whether the model should be used during training; ON will try to force the use of the model; OFF turns the model
1709# off during training (it is equivalent of deselecting the model in the "Include specific models" picker).
1710# 
1711#included_models = "[]"
1712
1713# Auxiliary to included_models
1714#excluded_models = "[]"
1715
1716#included_scorers = "[]"
1717
1718# Select transformers to be used for preprocessing before other transformers operate.
1719# Pre-processing transformers can potentially take any original features and output
1720# arbitrary features, which will then be used by the normal layer of transformers
1721# whose selection is controlled by toml included_transformers or via the GUI
1722# "Include specific transformers".
1723# Notes:
1724# 1) preprocessing transformers (and all other layers of transformers) are part of the python and (if applicable) mojo scoring packages.
1725# 2) any BYOR transformer recipe or native DAI transformer can be used as a preprocessing transformer.
1726# So, e.g., a preprocessing transformer can do interactions, string concatenations, date extractions as a preprocessing step,
1727# and next layer of Date and DateTime transformers will use that as input data.
1728# Caveats:
1729# 1) one cannot currently do a time-series experiment on a time_column that hasn't yet been made (setup of experiment only knows about original data, not transformed)
1730# However, one can use a run-time data recipe to (e.g.) convert a float date-time into string date-time, and this will
1731# be used by DAIs Date and DateTime transformers as well as auto-detection of time series.
1732# 2) in order to do a time series experiment with the GUI/client auto-selecting groups, periods, etc. the dataset
1733# must have time column and groups prepared ahead of experiment by user or via a one-time data recipe.
1734# 
1735#included_pretransformers = "[]"
1736
1737# Auxiliary to included_pretransformers
1738#excluded_pretransformers = "[]"
1739
1740#include_all_as_pretransformers_if_none_selected = false
1741
1742#force_include_all_as_pretransformers_if_none_selected = false
1743
1744# Number of full pipeline layers
1745# (not including preprocessing layer when included_pretransformers is not empty).
1746# 
1747#num_pipeline_layers = 1
1748
1749# There are 2 data recipes:
1750# 1) that adds new dataset or modifies dataset outside experiment by file/url (pre-experiment data recipe)
1751# 2) that modifies dataset during experiment and python scoring (run-time data recipe)
1752# This list applies to the 2nd case.  One can use the same data recipe code for either case, but note:
1753# A) the 1st case can make any new data, but is not part of scoring package.
1754# B) the 2nd case modifies data during the experiment, so needs some original dataset.
1755# The recipe can still create all new features, as long as it has same *name* for:
1756# target, weight_column, fold_column, time_column, time group columns.
1757# 
1758#included_datas = "[]"
1759
1760# Auxiliary to included_datas
1761#excluded_datas = "[]"
1762
1763# Custom individuals to use in experiment.
1764# DAI contains most information about model type, model hyperparameters, data science types for input features, transformers used, and transformer parameters an Individual Recipe (an object that is evolved by mutation within the context of DAI's genetic algorithm).
1765# Every completed experiment auto-generates python code for the experiment that corresponds to the individual(s) used to build the final model.  This auto-generated python code can be edited offline and uploaded as a recipe, or it can be edited within the custom recipe management editor and saved.  This allowed one a code-first access to a significant portion of DAI's internal transformer and model generation.
1766# Choices are:
1767# * Empty means all individuals are freshly generated and treated by DAI's AutoML as a container of model and transformer choices.
1768# * Recipe display names of custom individuals, usually chosen via the UI.  If the number of included custom individuals is less than DAI would need, then the remaining individuals are freshly generated.
1769# The expert experiment-level option fixed_num_individuals can be used to enforce how many individuals to use in evolution stage.
1770# The expert experiment-level option fixed_ensemble_level can be used to enforce how many individuals (each with one base model) will be used in the final model.
1771# These individuals act in similar way as the feature brain acts for restart and retrain/refit, and one can retrain/refit custom individuals (i.e. skip the tuning and evolution stages) to use them in building a final model.
1772# See toml make_python_code for more details.
1773#included_individuals = "[]"
1774
1775# Auxiliary to included_individuals
1776#excluded_individuals = "[]"
1777
1778# Whether to generate python code for the best individuals for the experiment.
1779# This python code contains a CustomIndividual class that is a recipe that can be edited and customized.  The CustomIndividual class itself can also be customized for expert use.
1780# By default, 'auto' means on.
1781# At the end of an experiment, the summary zip contains auto-generated python code for the individuals used in the experiment, including the last best population (best_population_indivXX.py where XX iterates the population), last best individual (best_individual.py), final base models (final_indivYY.py where YY iterates the final base models).
1782# The summary zip also contains an example_indiv.py file that generates other transformers that may be useful that did not happen to be used in the experiment.
1783# In addition, the GUI and python client allow one to generate custom individuals from an aborted or finished experiment.
1784# For finished experiments, this will provide a zip file containing the final_indivYY.py files, and for aborted experiments this will contain the best population and best individual files.
1785# See included_individuals for more details.
1786#make_python_code = "auto"
1787
1788# Whether to generate json code for the best individuals for the experiment.
1789# This python code contains the essential attributes from the internal DAI
1790# individual class.  Reading the json code as a recipe is not supported.
1791# By default, 'auto' means off.
1792# 
1793#make_json_code = "auto"
1794
1795# Maximum number of genes to make for example auto-generated custom individual,
1796# called example_indiv.py in the summary zip file.
1797# 
1798#python_code_ngenes_max = 100
1799
1800# Minimum number of genes to make for example auto-generated custom individual,
1801# called example_indiv.py in the summary zip file.
1802# 
1803#python_code_ngenes_min = 100
1804
1805# Select the scorer to optimize the binary probability threshold that is being used in related Confusion Matrix based scorers that are trivial to optimize otherwise: Precision, Recall, FalsePositiveRate, FalseDiscoveryRate, FalseOmissionRate, TrueNegativeRate, FalseNegativeRate, NegativePredictiveValue. Use F1 if the target class matters more, and MCC if all classes are equally important. AUTO will try to sync the threshold scorer with the scorer used for the experiment, otherwise falls back to F1. The optimized threshold is also used for creating labels in addition to probabilities in MOJO/Python scorers.
1806#threshold_scorer = "AUTO"
1807
1808# Auxiliary to included_scorers
1809#excluded_scorers = "[]"
1810
1811# Whether to enable constant models ('auto'/'on'/'off')
1812#enable_constant_model = "auto"
1813
1814# Whether to enable Decision Tree models ('auto'/'on'/'off').  'auto' disables decision tree unless only non-constant model chosen.
1815#enable_decision_tree = "auto"
1816
1817# Whether to enable GLM models ('auto'/'on'/'off')
1818#enable_glm = "auto"
1819
1820# Whether to enable CatBoost models ('auto'/'on'/'off'), note CatBoost model will always utilize gpu if available.
1821#enable_catboost = "auto"
1822
1823# Whether to enable XGBoost GBM models ('auto'/'on'/'off')
1824#enable_xgboost_gbm = "auto"
1825
1826# Whether to enable LightGBM models ('auto'/'on'/'off')
1827#enable_lightgbm = "auto"
1828
1829# Whether to enable PyTorch-based GrowNet models ('auto'/'on'/'off')
1830#enable_grownet = "auto"
1831
1832# Whether to enable FTRL support (follow the regularized leader) model ('auto'/'on'/'off')
1833#enable_ftrl = "auto"
1834
1835# Whether to enable RuleFit support (beta version, no mojo) ('auto'/'on'/'off')
1836#enable_rulefit = "auto"
1837
1838# Whether to enable automatic addition of zero-inflated models for regression problems with zero-inflated target values that meet certain conditions: y >= 0, y.std() > y.mean()
1839#enable_zero_inflated_models = "auto"
1840
1841# Whether to enable XGBoost RF mode without early stopping.
1842# Disabled unless switched on.
1843# 
1844#enable_xgboost_rf = "auto"
1845
1846# If num_inner_hyperopt_trials_prefinal > 0,
1847# then whether to do hyper parameter tuning during leakage/shift detection.
1848# Might be useful to find non-trivial leakage/shift, but usually not necessary.
1849# 
1850#hyperopt_shift_leak = false
1851
1852# If num_inner_hyperopt_trials_prefinal > 0,
1853# then whether to do hyper parameter tuning during leakage/shift detection,
1854# when checking each column.
1855# 
1856#hyperopt_shift_leak_per_column = false
1857
1858# Number of trials for Optuna hyperparameter optimization for tuning and evolution models.
1859# 0 means no trials.
1860# For small data, 100 is ok choice,
1861# while for larger data smaller values are reasonable if need results quickly.
1862# If using RAPIDS or DASK, hyperparameter optimization keeps data on GPU entire time.
1863# Currently applies to XGBoost GBM/Dart and LightGBM.
1864# Useful when there is high overhead of DAI outside inner model fit/predict,
1865# so this tunes without that overhead.
1866# However, can overfit on a single fold when doing tuning or evolution,
1867# and if using CV then averaging the fold hyperparameters can lead to unexpected results.
1868# 
1869#num_inner_hyperopt_trials_prefinal = 0
1870
1871# Number of trials for Optuna hyperparameter optimization for final models.
1872# 0 means no trials.
1873# For small data, 100 is ok choice,
1874# while for larger data smaller values are reasonable if need results quickly.
1875# Applies to final model only even if num_inner_hyperopt_trials=0.
1876# If using RAPIDS or DASK, hyperparameter optimization keeps data on GPU entire time.
1877# Currently applies to XGBoost GBM/Dart and LightGBM.
1878# Useful when there is high overhead of DAI outside inner model fit/predict,
1879# so this tunes without that overhead.
1880# However, for final model each fold is independently optimized and can overfit on each fold,
1881# after which predictions are averaged
1882# (so no issue with averaging hyperparameters when doing CV with tuning or evolution).
1883# 
1884#num_inner_hyperopt_trials_final = 0
1885
1886# Number of individuals in final model (all folds/repeats for given base model) to
1887# optimize with Optuna hyperparameter tuning.
1888# -1 means all.
1889# 0 is same as choosing no Optuna trials.
1890# Might be only beneficial to optimize hyperparameters of best individual (i.e. value of 1) in ensemble.
1891# 
1892#num_hyperopt_individuals_final = -1
1893
1894# Optuna Pruner to use (applicable to XGBoost and LightGBM that support Optuna callbacks).  To disable choose None.
1895#optuna_pruner = "MedianPruner"
1896
1897# Set Optuna constructor arguments for particular applicable pruners.
1898# https://optuna.readthedocs.io/en/stable/reference/pruners.html
1899# 
1900#optuna_pruner_kwargs = "{'n_startup_trials': 5, 'n_warmup_steps': 20, 'interval_steps': 20, 'percentile': 25.0, 'min_resource': 'auto', 'max_resource': 'auto', 'reduction_factor': 4, 'min_early_stopping_rate': 0, 'n_brackets': 4, 'min_early_stopping_rate_low': 0, 'upper': 1.0, 'lower': 0.0}"
1901
1902# Optuna Pruner to use (applicable to XGBoost and LightGBM that support Optuna callbacks).
1903#optuna_sampler = "TPESampler"
1904
1905# Set Optuna constructor arguments for particular applicable samplers.
1906# https://optuna.readthedocs.io/en/stable/reference/samplers.html
1907# 
1908#optuna_sampler_kwargs = "{}"
1909
1910# Whether to enable Optuna's XGBoost Pruning callback to abort unpromising runs.  Not done if tuning learning rate.
1911#enable_xgboost_hyperopt_callback = true
1912
1913# Whether to enable Optuna's LightGBM Pruning callback to abort unpromising runs.  Not done if tuning learning rate.
1914#enable_lightgbm_hyperopt_callback = true
1915
1916# Whether to enable XGBoost Dart models ('auto'/'on'/'off')
1917#enable_xgboost_dart = "auto"
1918
1919# Whether to use (and expect exists) xgbfi feature interactions for xgboost.
1920#use_xgboost_xgbfi = false
1921
1922# Which boosting types to enable for LightGBM (gbdt = boosted trees, rf_early_stopping = random forest with early stopping rf = random forest (no early stopping), dart = drop-out boosted trees with no early stopping
1923#enable_lightgbm_boosting_types = "['gbdt']"
1924
1925# Whether to enable automatic class weighting for imbalanced multiclass problems. Can make worse probabilities, but improve confusion-matrix based scorers for rare classes without the need to manually calibrate probabilities or fine-tune the label creation process.
1926#enable_lightgbm_multiclass_balancing = "auto"
1927
1928# Whether to enable LightGBM categorical feature support (runs in CPU mode even if GPUs enabled, and no MOJO built)
1929#enable_lightgbm_cat_support = false
1930
1931# Whether to enable CatBoost native categorical feature support (no MOJO built, since the MOJO runtime has no categorical support)
1932#enable_catboost_cat_support = false
1933
1934# Whether to enable LightGBM linear_tree handling
1935# (only CPU mode currently, no L1 regularization -- mae objective, and no MOJO build).
1936# 
1937#enable_lightgbm_linear_tree = false
1938
1939# Whether to enable LightGBM extra trees mode to help avoid overfitting
1940#enable_lightgbm_extra_trees = false
1941
1942# basic: as fast as when no constraints applied, but over-constrains the predictions.
1943# intermediate: very slightly slower, but much less constraining while still holding monotonicity and should be more accurate than basic.
1944# advanced: slower, but even more accurate than intermediate.
1945# 
1946#lightgbm_monotone_constraints_method = "intermediate"
1947
1948# Forbids any monotone splits on the first x (rounded down) level(s) of the tree.
1949# The penalty applied to monotone splits on a given depth is a continuous,
1950# increasing function the penalization parameter.
1951# https://lightgbm.readthedocs.io/en/latest/Parameters.html#monotone_penalty
1952# 
1953#lightgbm_monotone_penalty = 0.0
1954
1955# Whether to enable LightGBM CUDA implementation instead of OpenCL.
1956# CUDA with LightGBM only supported for Pascal+ (compute capability >=6.0)
1957#enable_lightgbm_cuda_support = false
1958
1959# Whether to show constant models in iteration panel even when not best model.
1960#show_constant_model = false
1961
1962#drop_constant_model_final_ensemble = true
1963
1964#xgboost_rf_exact_threshold_num_rows_x_cols = 10000
1965
1966# Select objectives allowed for XGBoost.
1967# Added to allowed mutations (the default reg:squarederror is in sample list 3 times)
1968# Note: logistic, tweedie, gamma, poisson are only valid for targets with positive values.
1969# Note: The objective relates to the form of the (regularized) loss function,
1970# used to determine the split with maximum information gain,
1971# while the metric is the non-regularized metric
1972# measured on the validation set (external or internally generated by DAI).
1973# 
1974#xgboost_reg_objectives = "['reg:squarederror']"
1975
1976# Select metrics allowed for XGBoost.
1977# Added to allowed mutations (the default rmse and mae are in sample list twice).
1978# Note: tweedie, gamma, poisson are only valid for targets with positive values.
1979# Note: 'map' was removed: xgboost >= 2.0 only accepts it for binary labels,
1980# so it aborts regression training; stale configs listing it are ignored and
1981# old experiments carrying it refit with rmse.
1982# 
1983#xgboost_reg_metrics = "['rmse', 'mae']"
1984
1985# Select which objectives allowed for XGBoost.
1986# Added to allowed mutations (all evenly sampled).
1987#xgboost_binary_metrics = "['logloss', 'auc', 'aucpr', 'error']"
1988
1989# Select objectives allowed for LightGBM.
1990# Added to allowed mutations (the default mse is in sample list 2 times if selected).
1991# "binary" refers to logistic regression.
1992# Note: If choose quantile/huber or fair and data is not normalized,
1993# recommendation is to use params_lightgbm to specify reasonable
1994# value of alpha (for quantile or huber) or fairc (for fair) to LightGBM.
1995# Note: mse is same as rmse correponding to L2 loss.  mae is L1 loss.
1996# Note: tweedie, gamma, poisson are only valid for targets with positive values.
1997# Note: The objective relates to the form of the (regularized) loss function,
1998# used to determine the split with maximum information gain,
1999# while the metric is the non-regularized metric
2000# measured on the validation set (external or internally generated by DAI).
2001# 
2002#lightgbm_reg_objectives = "['mse', 'mae']"
2003
2004# Select metrics allowed for LightGBM.
2005# Added to allowed mutations (the default rmse is in sample list three times if selected).
2006# Note: If choose huber or fair and data is not normalized,
2007# recommendation is to use params_lightgbm to specify reasonable
2008# value of alpha (for huber or quantile) or fairc (for fair) to LightGBM.
2009# Note: tweedie, gamma, poisson are only valid for targets with positive values.
2010# 
2011#lightgbm_reg_metrics = "['rmse', 'mse', 'mae']"
2012
2013# Select objectives allowed for LightGBM.
2014# Added to allowed mutations (the default binary is in sample list 2 times if selected)
2015#lightgbm_binary_objectives = "['binary', 'xentropy']"
2016
2017# Select which binary metrics allowed for LightGBM.
2018# Added to allowed mutations (all evenly sampled).
2019#lightgbm_binary_metrics = "['binary', 'binary', 'auc']"
2020
2021# Select which metrics allowed for multiclass LightGBM.
2022# Added to allowed mutations (evenly sampled if selected).
2023#lightgbm_multi_metrics = "['multiclass', 'multi_error']"
2024
2025# tweedie_variance_power parameters to try for XGBoostModel and LightGBMModel if tweedie is used.
2026# First value is default.
2027#tweedie_variance_power_list = "[1.5, 1.2, 1.9]"
2028
2029# huber parameters to try for LightGBMModel if huber is used.
2030# First value is default.
2031#huber_alpha_list = "[0.9, 0.3, 0.5, 0.6, 0.7, 0.8, 0.1, 0.99]"
2032
2033# fair c parameters to try for LightGBMModel if fair is used.
2034# First value is default.
2035#fair_c_list = "[1.0, 0.1, 0.5, 0.9]"
2036
2037# poisson max_delta_step parameters to try for LightGBMModel if poisson is used.
2038# First value is default.
2039#poisson_max_delta_step_list = "[0.7, 0.9, 0.5, 0.2]"
2040
2041# quantile alpha parameters to try for LightGBMModel if quantile is used.
2042# First value is default.
2043#quantile_alpha = "[0.9, 0.95, 0.99, 0.6]"
2044
2045# Default reg_lambda regularization for GLM.
2046#reg_lambda_glm_default = 0.0004
2047
2048#lossguide_drop_factor = 4.0
2049
2050#lossguide_max_depth_extend_factor = 8.0
2051
2052# Parameters for CatBoost to override DAI parameters
2053# e.g. ``'eval_metric'`` instead of ``'metric'`` should be used
2054# e.g. ``params_catboost="{'l2_leaf_reg': 3, 'learning_rate': 0.01, 'depth': 64, 'one_hot_max_size': 100, 'iterations': 500}"``
2055# e.g. ``params_catboost="{'l2_leaf_reg': 3, 'learning_rate': 0.01, 'depth': 64, 'one_hot_max_size': 100, 'iterations': 500, 'boosting_type': 'Ordered', 'random_strength': 1, 'bagging_temperature': 0, max_bin: 128, has-time: False, grow_policy: 'SymmetricTree', 'rsm': 0.1, 'max-ctr-complexity': 8}"``
2056# avoid including "system"-level parameters like ``'n_gpus': 1, 'gpu_id': 0, , 'n_jobs': 1, 'booster': 'catboost'``
2057# also likely should avoid parameters like: 'objective': 'binary', unless one really knows what one is doing (e.g. alternative objectives)
2058# See: https://catboost.ai/docs/en/references/training-parameters
2059# And see: https://catboost.ai/docs/en/concepts/parameter-tuning
2060# Parameters that could speed up training if set
2061# https://catboost.ai/docs/en/concepts/speed-up-training
2062# Note: Currently do not support Depthwise grow_policy.
2063#params_catboost = "{}"
2064
2065# Parameters for LightGBM to override DAI parameters
2066# e.g. ``'eval_metric'`` instead of ``'metric'`` should be used
2067# e.g. ``params_lightgbm="{'objective': 'binary', 'n_estimators': 100, 'max_leaves': 64, 'random_state': 1234}"``
2068# e.g. ``params_lightgbm="{'n_estimators': 600, 'learning_rate': 0.1, 'reg_alpha': 0.0, 'reg_lambda': 0.5, 'gamma': 0, 'max_depth': 0, 'max_bin': 128, 'max_leaves': 256, 'scale_pos_weight': 1.0, 'max_delta_step': 3.469919910597877, 'min_child_weight': 1, 'subsample': 0.9, 'colsample_bytree': 0.3, 'tree_method': 'gpu_hist', 'grow_policy': 'lossguide', 'min_data_in_bin': 3, 'min_child_samples': 5, 'early_stopping_rounds': 20, 'num_classes': 2, 'objective': 'binary', 'eval_metric': 'binary', 'random_state': 987654, 'early_stopping_threshold': 0.01, 'monotonicity_constraints': False, 'silent': True, 'debug_verbose': 0, 'subsample_freq': 1}"``
2069# avoid including "system"-level parameters like ``'n_gpus': 1, 'gpu_id': 0, , 'n_jobs': 1, 'booster': 'lightgbm'``
2070# also likely should avoid parameters like: 'objective': 'binary', unless one really knows what one is doing (e.g. alternative objectives)
2071# See: https://xgboost.readthedocs.io/en/latest/parameter.html
2072# And see: https://github.com/Microsoft/LightGBM/blob/master/docs/Parameters.rst
2073# Can also pass objective parameters if choose (or in case automatically chosen) certain objectives
2074# https://lightgbm.readthedocs.io/en/latest/Parameters.html#metric-parameters
2075#params_lightgbm = "{}"
2076
2077# Parameters for XGBoost to override DAI parameters
2078# similar parameters as LightGBM since LightGBM parameters are transcribed from XGBoost equivalent versions
2079# e.g. ``params_xgboost="{'n_estimators': 100, 'max_leaves': 64, 'max_depth': 0, 'random_state': 1234}"``
2080# See: https://xgboost.readthedocs.io/en/latest/parameter.html
2081#params_xgboost = "{}"
2082
2083# Like params_xgboost but for XGBoost random forest.
2084#params_xgboost_rf = "{}"
2085
2086# Like params_xgboost but for XGBoost's dart method
2087#params_dart = "{}"
2088
2089# Parameters for XGBoost's gblinear to override DAI parameters
2090# e.g. ``params_gblinear="{'n_estimators': 100}"``
2091# See: https://xgboost.readthedocs.io/en/latest/parameter.html
2092#params_gblinear = "{}"
2093
2094# Parameters for Decision Tree to override DAI parameters
2095# parameters should be given as XGBoost equivalent unless unique LightGBM parameter
2096# e.g. ``'eval_metric'`` instead of ``'metric'`` should be used
2097# e.g. ``params_decision_tree="{'objective': 'binary', 'n_estimators': 100, 'max_leaves': 64, 'random_state': 1234}"``
2098# e.g. ``params_decision_tree="{'n_estimators': 1, 'learning_rate': 1, 'reg_alpha': 0.0, 'reg_lambda': 0.5, 'gamma': 0, 'max_depth': 0, 'max_bin': 128, 'max_leaves': 256, 'scale_pos_weight': 1.0, 'max_delta_step': 3.469919910597877, 'min_child_weight': 1, 'subsample': 0.9, 'colsample_bytree': 0.3, 'tree_method': 'gpu_hist', 'grow_policy': 'lossguide', 'min_data_in_bin': 3, 'min_child_samples': 5, 'early_stopping_rounds': 20, 'num_classes': 2, 'objective': 'binary', 'eval_metric': 'logloss', 'random_state': 987654, 'early_stopping_threshold': 0.01, 'monotonicity_constraints': False, 'silent': True, 'debug_verbose': 0, 'subsample_freq': 1}"``
2099# avoid including "system"-level parameters like ``'n_gpus': 1, 'gpu_id': 0, , 'n_jobs': 1, 'booster': 'lightgbm'``
2100# also likely should avoid parameters like: ``'objective': 'binary:logistic'``, unless one really knows what one is doing (e.g. alternative objectives)
2101# See: https://xgboost.readthedocs.io/en/latest/parameter.html
2102# And see: https://github.com/Microsoft/LightGBM/blob/master/docs/Parameters.rst
2103# Can also pass objective parameters if choose (or in case automatically chosen) certain objectives
2104# https://lightgbm.readthedocs.io/en/latest/Parameters.html#metric-parameters
2105#params_decision_tree = "{}"
2106
2107# Parameters for Rulefit to override DAI parameters
2108# e.g. ``params_rulefit="{'max_leaves': 64}"``
2109# See: https://xgboost.readthedocs.io/en/latest/parameter.html
2110#params_rulefit = "{}"
2111
2112# Parameters for FTRL to override DAI parameters
2113#params_ftrl = "{}"
2114
2115# Parameters for GrowNet to override DAI parameters
2116#params_grownet = "{}"
2117
2118# How to handle tomls like params_tune_lightgbm.
2119# override: For any key in the params_tune_ toml dict, use the list of values instead of DAI's list of values.
2120# override_and_first_as_default: like override, but also use first entry in tuple/list (if present) as override as replacement for (e.g.) params_lightgbm when using params_tune_lightgbm.
2121# exclusive: Only tune the keys in the params_tune_ toml dict, unless no keys are present.  Otherwise use DAI's default values.
2122# exclusive_and_first_as_default: Like exclusive but same first as default behavior as override_and_first_as_default.
2123# In order to fully control hyperparameter tuning, either one should set "override" mode and include every hyperparameter and at least one value in each list within the dictionary, or choose "exclusive" and then rely upon DAI unchanging default values for any keys not given.
2124# For custom recipes, one can use recipe_dict to pass hyperparameters and if using the "get_one()" function in a custom recipe, and if user_tune passed contains the hyperparameter dictionary equivalent of params_tune_ tomls, then this params_tune_mode will also work for custom recipes.
2125#params_tune_mode = "override_and_first_as_default"
2126
2127# Whether to adjust GBM trees, learning rate, and early_stopping_rounds for GBM models or recipes with _is_gbm=True.
2128# True: auto mode, that changes trees/LR/stopping if tune_learning_rate=false and early stopping is supported by the model and model is GBM or from custom individual with parameter in adjusted_params.
2129# False: disable any adjusting from tuning-evolution into final model.
2130# Setting this to false is required if (e.g.) one changes params_lightgbm or params_tune_lightgbm and wanted to preserve the tuning-evolution values into the final model.
2131# One should also set tune_learning_rate to true to tune the learning_rate, else it will be fixed to some single value.
2132#params_final_auto_adjust = true
2133
2134# Dictionary of key:lists of values to use for CatBoost tuning, overrides DAI's choice per key
2135# e.g. ``params_tune_catboost="{'min_child_samples': [1,2,5,100,1000], 'min_data_in_bin': [1,2,3,10,100,1000]}"``
2136# Note: Currently do not support Depthwise grow_policy.
2137#params_tune_catboost = "{}"
2138
2139# Dictionary of key:lists of values to use for LightGBM tuning, overrides DAI's choice per key
2140# e.g. ``params_tune_lightgbm="{'min_child_samples': [1,2,5,100,1000], 'min_data_in_bin': [1,2,3,10,100,1000]}"``
2141#params_tune_lightgbm = "{}"
2142
2143# Like params_tune_lightgbm but for XGBoost
2144# e.g. ``params_tune_xgboost="{'max_leaves': [8, 16, 32, 64]}"``
2145#params_tune_xgboost = "{}"
2146
2147# Like params_tune_lightgbm but for XGBoost random forest
2148# e.g. ``params_tune_xgboost_rf="{'max_leaves': [8, 16, 32, 64]}"``
2149#params_tune_xgboost_rf = "{}"
2150
2151# Dictionary of key:lists of values to use for LightGBM Decision Tree tuning, overrides DAI's choice per key
2152# e.g. ``params_tune_decision_tree="{'min_child_samples': [1,2,5,100,1000], 'min_data_in_bin': [1,2,3,10,100,1000]}"``
2153#params_tune_decision_tree = "{}"
2154
2155# Like params_tune_lightgbm but for XGBoost's Dart
2156# e.g. ``params_tune_dart="{'max_leaves': [8, 16, 32, 64]}"``
2157#params_tune_dart = "{}"
2158
2159# [DEPRECATED] Like params_tune_lightgbm but for TensorFlow
2160# e.g. ``params_tune_tensorflow="{'layers': [(10,10,10), (10, 10, 10, 10)]}"``
2161#params_tune_tensorflow = "{}"
2162
2163# Like params_tune_lightgbm but for gblinear
2164# e.g. ``params_tune_gblinear="{'reg_lambda': [.01, .001, .0001, .0002]}"``
2165#params_tune_gblinear = "{}"
2166
2167# Like params_tune_lightgbm but for rulefit
2168# e.g. ``params_tune_rulefit="{'max_depth': [4, 5, 6]}"``
2169#params_tune_rulefit = "{}"
2170
2171# Like params_tune_lightgbm but for ftrl
2172#params_tune_ftrl = "{}"
2173
2174# Like params_tune_lightgbm but for GrowNet
2175# e.g. ``params_tune_grownet="{'input_dropout': [0.2, 0.5]}"``
2176#params_tune_grownet = "{}"
2177
2178# Whether to force max_leaves and max_depth to be 0 if grow_policy is depthwise and lossguide, respectively.
2179#params_tune_grow_policy_simple_trees = true
2180
2181# Maximum number of GBM trees or GLM iterations. Can be reduced for lower accuracy and/or higher interpretability.
2182# Early-stopping usually chooses less. Ignored if fixed_max_nestimators is > 0.
2183# 
2184#max_nestimators = 3000
2185
2186# Fixed maximum number of GBM trees or GLM iterations. If > 0, ignores max_nestimators and disables automatic reduction
2187# due to lower accuracy or higher interpretability. Early-stopping usually chooses less.
2188# 
2189#fixed_max_nestimators = -1
2190
2191# LightGBM dart mode and normal rf mode do not use early stopping,
2192# and they will sample from these values for n_estimators.
2193# XGBoost Dart mode will also sample from these n_estimators.
2194# Also applies to XGBoost Dask models that do not yet support early stopping or callbacks.
2195# For default parameters it chooses first value in list, while mutations sample from the list.
2196# 
2197#n_estimators_list_no_early_stopping = "[50, 100, 150, 200, 250, 300]"
2198
2199# Lower limit on learning rate for final ensemble GBM models.
2200# In some cases, the maximum number of trees/iterations is insufficient for the final learning rate,
2201# which can lead to no early stopping triggered and poor final model performance.
2202# Then, one can try increasing the learning rate by raising this minimum,
2203# or one can try increasing the maximum number of trees/iterations.
2204# 
2205#min_learning_rate_final = 0.01
2206
2207# Upper limit on learning rate for final ensemble GBM models
2208#max_learning_rate_final = 0.05
2209
2210# factor by which max_nestimators is reduced for tuning and feature evolution
2211#max_nestimators_feature_evolution_factor = 0.2
2212
2213# Lower limit on learning rate for feature engineering GBM models
2214#min_learning_rate = 0.05
2215
2216# Upper limit on learning rate for GBM models
2217# If want to override min_learning_rate and min_learning_rate_final, set this to smaller value
2218# 
2219#max_learning_rate = 0.5
2220
2221# Whether to lock learning rate, tree count, early stopping rounds for GBM algorithms to the final model values.
2222#lock_ga_to_final_trees = false
2223
2224# Whether to tune learning rate for GBM algorithms (if not doing just single final model).
2225# If tuning with Optuna, might help isolate optimal learning rate.
2226# 
2227#tune_learning_rate = false
2228
2229# Max. number of epochs for FTRL models
2230#max_epochs = 50
2231
2232# Maximum tree depth (and corresponding max max_leaves as 2**max_max_depth)
2233#max_max_depth = 12
2234
2235# Default max_bin for tree methods
2236#default_max_bin = 256
2237
2238# Default max_bin for LightGBM (64 recommended for GPU LightGBM for speed)
2239#default_lightgbm_max_bin = 249
2240
2241# Maximum max_bin for tree features
2242#max_max_bin = 256
2243
2244# Minimum max_bin for any tree
2245#min_max_bin = 32
2246
2247# Amount of memory which can handle max_bin = 256 can handle 125 columns and max_bin = 32 for 1000 columns
2248# As available memory on system goes higher than this scale, can handle proportionally more columns at higher max_bin
2249# Currently set to 10GB
2250#scale_mem_for_max_bin = 10737418240
2251
2252# Factor by which rf gets more depth than gbdt
2253#factor_rf = 1.25
2254
2255# For Pytorch Image fitting including both models and transformers. See also max_fit_cores for all models.
2256#image_max_cores = 4
2257
2258# How many cores to use for each Bert Model and Transformer, regardless if GPU or CPU based (0 = auto mode)
2259#bert_cores = 0
2260
2261# Whether Bert will use all CPU cores, or if it will split among all transformers.  Only for transformers, not Bert model.
2262#bert_use_all_cores = true
2263
2264# For Bert models, maximum number of cores to use if bert_cores=0 (auto mode), because Bert model is inefficient at using many cores.  See also max_fit_cores for all models.
2265#bert_model_max_cores = 8
2266
2267# Max number of rules to be used for RuleFit models (-1 for all)
2268#rulefit_max_num_rules = -1
2269
2270# Max tree depth for RuleFit models
2271#rulefit_max_tree_depth = 6
2272
2273# Max number of trees for RuleFit models
2274#rulefit_max_num_trees = 500
2275
2276# Enable One-Hot-Encoding (which does binning to limit to number of bins to no more than 100 anyway) for categorical columns with fewer than this many unique values
2277# Set to 0 to disable
2278#one_hot_encoding_cardinality_threshold = 50
2279
2280# How many levels to choose one-hot by default instead of other encodings, restricted down to 10x less (down to 2 levels) when number of columns able to be used with OHE exceeds 500. Note the total number of bins is reduced if bigger data independently of this.
2281#one_hot_encoding_cardinality_threshold_default_use = 40
2282
2283# Treat text columns also as categorical columns if the cardinality is <= this value.
2284# Set to 0 to treat text columns only as text.
2285#text_as_categorical_cardinality_threshold = 1000
2286
2287# If num_as_cat is true, then treat numeric columns also as categorical columns if the cardinality is > this value.
2288# Setting to 0 allows all numeric to be treated as categorical if num_as_cat is True.
2289#numeric_as_categorical_cardinality_threshold = 2
2290
2291# If num_as_cat is true, then treat numeric columns also as categorical columns to possibly one-hot encode if the cardinality is > this value.
2292# Setting to 0 allows all numeric to be treated as categorical to possibly ohe-hot encode if num_as_cat is True.
2293#numeric_as_ohe_categorical_cardinality_threshold = 2
2294
2295# Fixed ensemble_level
2296# -1 = auto, based upon ensemble_accuracy_switch, accuracy, size of data, etc.
2297# 0 = No ensemble, only final single model on validated iteration/tree count
2298# 1 = 1 model, multiple ensemble folds (cross-validation)
2299# >=2 = >=2 models, multiple ensemble folds (cross-validation)
2300# 
2301#fixed_ensemble_level = -1
2302
2303# If enabled, use cross-validation to determine optimal parameters for single final model,
2304# and to be able to create training holdout predictions.
2305#cross_validate_single_final_model = true
2306
2307# Model to combine base model predictions, for experiments that create a final pipeline
2308# consisting of multiple base models.
2309# blender: Creates a linear blend with non-negative weights that add to 1 (blending) - recommended
2310# extra_trees: Creates a tree model to non-linearly combine the base models (stacking) - experimental, and recommended to also set enable cross_validate_meta_learner.
2311# neural_net: Creates a neural net model to non-linearly combine the base models (stacking) - experimental, and recommended to also set enable cross_validate_meta_learner.
2312# 
2313#ensemble_meta_learner = "blender"
2314
2315# If enabled, use cross-validation to create an ensemble for the meta learner itself. Especially recommended for
2316# ``ensemble_meta_learner='extra_trees'``, to make unbiased training holdout predictions.
2317# Will disable MOJO if enabled. Not needed for ``ensemble_meta_learner='blender'``."
2318# 
2319#cross_validate_meta_learner = false
2320
2321# Number of models to tune during pre-evolution phase
2322# Can make this lower to avoid excessive tuning, or make higher to do enhanced tuning.
2323# ``-1 : auto``
2324# 
2325#parameter_tuning_num_models = -1
2326
2327# Number of models (out of all parameter_tuning_num_models) to have as SEQUENCE instead of random features/parameters.
2328# ``-1 : auto, use at least one default individual per model class tuned``
2329# 
2330#parameter_tuning_num_models_sequence = -1
2331
2332# Number of models to add during tuning that cover other cases, like for TS having no TE on time column groups.
2333# ``-1 : auto, adds additional models to protect against overfit on high-gain training features.``
2334# 
2335#parameter_tuning_num_models_extra = -1
2336
2337# Dictionary of model class name (keys) and number (values) of instances.
2338#num_tuning_instances = "{}"
2339
2340#validate_meta_learner = true
2341
2342#validate_meta_learner_extra = false
2343
2344# Specify the fixed number of cross-validation folds (if >= 2) for feature evolution. (The actual number of splits allowed can be less and is determined at experiment run-time).
2345#fixed_num_folds_evolution = -1
2346
2347# Specify the fixed number of cross-validation folds (if >= 2) for the final model. (The actual number of splits allowed can be less and is determined at experiment run-time).
2348#fixed_num_folds = -1
2349
2350# set "on" to force only first fold for models - useful for quick runs regardless of data
2351#fixed_only_first_fold_model = "auto"
2352
2353# Set the number of repeated cross-validation folds for feature evolution and final models (if > 0), 0 is default. Only for ensembles that do cross-validation (so no external validation and not time-series), not for single final models.
2354#fixed_fold_reps = 0
2355
2356#num_fold_ids_show = 10
2357
2358#fold_scores_instability_warning_threshold = 0.25
2359
2360# Upper limit on the number of rows x number of columns for feature evolution (applies to both training and validation/holdout splits)
2361# feature evolution is the process that determines which features will be derived.
2362# Depending on accuracy settings, a fraction of this value will be used
2363# 
2364#feature_evolution_data_size = 300000000
2365
2366# Upper limit on the number of rows x number of columns for training final pipeline.
2367# 
2368#final_pipeline_data_size = 1000000000
2369
2370# Whether to automatically limit validation data size using feature_evolution_data_size (giving max_rows_feature_evolution shown in logs) for tuning-evolution, and using final_pipeline_data_size, max_validation_to_training_size_ratio_for_final_ensemble for final model.
2371#limit_validation_size = true
2372
2373# Smaller values can speed up final pipeline model training, as validation data is only used for early stopping.
2374# Note that final model predictions and scores will always be provided on the full dataset provided.
2375# 
2376#max_validation_to_training_size_ratio_for_final_ensemble = 2.0
2377
2378# Ratio of minority to majority class of the target column beyond which stratified sampling is done for binary classification. Otherwise perform random sampling. Set to 0 to always do random sampling. Set to 1 to always do stratified sampling.
2379#force_stratified_splits_for_imbalanced_threshold_binary = 0.01
2380
2381#force_stratified_splits_for_binary_max_rows = 1000000
2382
2383# Specify whether to do stratified sampling for validation fold creation for iid regression problems. Otherwise perform random sampling.
2384#stratify_for_regression = true
2385
2386# Sampling method for imbalanced binary classification problems. Choices are:
2387# "auto": sample both classes as needed, depending on data
2388# "over_under_sampling": over-sample the minority class and under-sample the majority class, depending on data
2389# "under_sampling": under-sample the majority class to reach class balance
2390# "off": do not perform any sampling
2391# 
2392#imbalance_sampling_method = "off"
2393
2394# For smaller data, there's no generally no benefit in using imbalanced sampling methods.
2395#imbalance_sampling_threshold_min_rows_original = 100000
2396
2397# For imbalanced binary classification: ratio of majority to minority class equal and above which to enable
2398# special imbalanced models with sampling techniques (specified by imbalance_sampling_method) to attempt to improve model performance.
2399# 
2400#imbalance_ratio_sampling_threshold = 5
2401
2402# For heavily imbalanced binary classification: ratio of majority to minority class equal and above which to enable only
2403# special imbalanced models on full original data, without upfront sampling.
2404# 
2405#heavy_imbalance_ratio_sampling_threshold = 25
2406
2407# Special handling can include special models, special scorers, special feature engineering.
2408# 
2409#imbalance_ratio_multiclass_threshold = 5
2410
2411# Special handling can include special models, special scorers, special feature engineering.
2412# 
2413#heavy_imbalance_ratio_multiclass_threshold = 25
2414
2415# -1: automatic
2416#imbalance_sampling_number_of_bags = -1
2417
2418# -1: automatic
2419#imbalance_sampling_max_number_of_bags = 10
2420
2421# Only for shift/leakage/tuning/feature evolution models. Not used for final models. Final models can
2422# be limited by imbalance_sampling_max_number_of_bags.
2423#imbalance_sampling_max_number_of_bags_feature_evolution = 3
2424
2425# Max. size of data sampled during imbalanced sampling (in terms of dataset size),
2426# controls number of bags (approximately). Only for imbalance_sampling_number_of_bags == -1.
2427#imbalance_sampling_max_multiple_data_size = 1.0
2428
2429# Rank averaging can be helpful when ensembling diverse models when ranking metrics like AUC/Gini
2430# metrics are optimized. No MOJO support yet.
2431#imbalance_sampling_rank_averaging = "auto"
2432
2433# A value of 0.5 means that models/algorithms will be presented a balanced target class distribution
2434# after applying under/over-sampling techniques on the training data. Sometimes it makes sense to
2435# choose a smaller value like 0.1 or 0.01 when starting from an extremely imbalanced original target
2436# distribution. -1.0: automatic
2437#imbalance_sampling_target_minority_fraction = -1.0
2438
2439# For binary classification: ratio of majority to minority class equal and above which to notify
2440# of imbalance in GUI to say slightly imbalanced.
2441# More than ``imbalance_ratio_sampling_threshold`` will say problem is imbalanced.
2442# 
2443#imbalance_ratio_notification_threshold = 2.0
2444
2445# List of possible bins for FTRL (largest is default best value)
2446#nbins_ftrl_list = "[1000000, 10000000, 100000000]"
2447
2448# Samples the number of automatic FTRL interactions terms to no more than this value (for each of 2nd, 3rd, 4th order terms)
2449#ftrl_max_interaction_terms_per_degree = 10000
2450
2451# List of possible bins for target encoding (first is default value)
2452#te_bin_list = "[25, 10, 100, 250]"
2453
2454# List of possible bins for weight of evidence encoding (first is default value)
2455# If only want one value: woe_bin_list = [2]
2456#woe_bin_list = "[25, 10, 100, 250]"
2457
2458# List of possible bins for ohe hot encoding (first is default value).  If left as default, the actual list is changed for given data size and dials.
2459#ohe_bin_list = "[10, 25, 50, 75, 100]"
2460
2461# List of max possible number of bins for numeric binning (first is default value). If left as default, the actual list is changed for given data size and dials. The binner will automatically reduce the number of bins based on predictive power.
2462#binner_bin_list = "[5, 10, 20]"
2463
2464# If dataset has more columns, then will check only first such columns. Set to 0 to disable.
2465#drop_redundant_columns_limit = 1000
2466
2467# Whether to drop columns with constant values
2468#drop_constant_columns = true
2469
2470# Whether to detect duplicate rows in training, validation and testing datasets. Done after doing type detection and dropping of redundant or missing columns across datasets, just before the experiment starts, still before leakage detection. Any further dropping of columns can change the amount of duplicate rows. Informative only, if want to drop rows in training data, make sure to check the drop_duplicate_rows setting. Uses a sample size, given by detect_duplicate_rows_max_rows_x_cols.
2471#detect_duplicate_rows = true
2472
2473#drop_duplicate_rows_timeout = 60
2474
2475# Whether to drop duplicate rows in training data. Done at the start of Driverless AI, only considering columns to drop as given by the user, not considering validation or training datasets or leakage or redundant columns. Any further dropping of columns can change the amount of duplicate rows. Time limited by drop_duplicate_rows_timeout seconds.
2476# 'auto': "off""
2477# 'weight': If duplicates, then convert dropped duplicates into a weight column for training.  Useful when duplicates are added to preserve some distribution of instances expected.  Only allowed if no weight columnn is present, else duplicates are just dropped.
2478# 'drop': Drop any duplicates, keeping only first instances.
2479# 'off': Do not drop any duplicates.  This may lead to over-estimation of accuracy.
2480#drop_duplicate_rows = "auto"
2481
2482# If > 0, then acts as sampling size for informative duplicate row detection. If set to 0, will do checks for all dataset sizes.
2483#detect_duplicate_rows_max_rows_x_cols = 10000000
2484
2485# Whether to drop columns that appear to be an ID
2486#drop_id_columns = true
2487
2488# Whether to avoid dropping any columns (original or derived)
2489#no_drop_features = false
2490
2491# Direct control over columns to drop in bulk so can copy-paste large lists instead of selecting each one separately in GUI
2492#cols_to_drop = "[]"
2493
2494#cols_to_drop_sanitized = "[]"
2495
2496# Control over columns to group by for CVCatNumEncode Transformer, default is empty list that means DAI automatically searches all columns,
2497# selected randomly or by which have top variable importance.
2498# The CVCatNumEncode Transformer takes a list of categoricals (or these cols_to_group_by) and uses those columns
2499# as new feature to perform aggregations on (agg_funcs_for_group_by).
2500#cols_to_group_by = "[]"
2501
2502#cols_to_group_by_sanitized = "[]"
2503
2504# Whether to sample from given features to group by (True) or to always group by all features (False) when using cols_to_group_by.
2505#sample_cols_to_group_by = false
2506
2507# Aggregation functions to use for groupby operations for CVCatNumEncode Transformer, see also cols_to_group_by and sample_cols_to_group_by.
2508#agg_funcs_for_group_by = "['mean', 'sd', 'min', 'max', 'count']"
2509
2510# Out of fold aggregations ensure less overfitting, but see less data in each fold.  For controlling how many folds used by CVCatNumEncode Transformer.
2511#folds_for_group_by = 5
2512
2513# Control over columns to force-in.  Forced-in features are are handled by the most interpretable transformer allowed by experiment
2514# options, and they are never removed (although model may assign 0 importance to them still).
2515# Transformers used by default include:
2516# OriginalTransformer for numeric,
2517# CatOriginalTransformer or FrequencyTransformer for categorical,
2518# TextOriginalTransformer for text,
2519# DateTimeOriginalTransformer for date-times,
2520# DateOriginalTransformer for dates,
2521# ImageOriginalTransformer, ImageVectorizerV2Transformer for images,
2522# etc.
2523#cols_to_force_in = "[]"
2524
2525#cols_to_force_in_sanitized = "[]"
2526
2527# Strategy to apply when doing mutations on transformers.
2528# Sample mode is default, with tendency to sample transformer parameters.
2529# Batched mode tends to do multiple types of the same transformation together.
2530# Full mode does even more types of the same transformation together.
2531# 
2532#mutation_mode = "sample"
2533
2534# 'baseline': Explore exemplar set of models with baselines as reference.
2535# 'random': Explore 10 random seeds for same setup.  Useful since nature of genetic algorithm is noisy and repeats might get better results, or one can ensemble the custom individuals from such repeats.
2536# 'line': Explore good model with all features and original features with all models.  Useful as first exploration.
2537# 'line_all': Like 'line', but enable all models and transformers possible instead of only what base experiment setup would have inferred.
2538# 'product': Explore one-by-one Cartesian product of each model and transformer.  Useful for exhaustive exploration.
2539#leaderboard_mode = "baseline"
2540
2541# Controls whether users can launch an experiment in Leaderboard mode form the UI.
2542#leaderboard_off = false
2543
2544# Allows control over default accuracy knob setting.
2545# If default models are too complex, set to -1 or -2, etc.
2546# If default models are not accurate enough, set to 1 or 2, etc.
2547# 
2548#default_knob_offset_accuracy = 0
2549
2550# Allows control over default time knob setting.
2551# If default experiments are too slow, set to -1 or -2, etc.
2552# If default experiments finish too fast, set to 1 or 2, etc.
2553# 
2554#default_knob_offset_time = 0
2555
2556# Allows control over default interpretability knob setting.
2557# If default models are too simple, set to -1 or -2, etc.
2558# If default models are too complex, set to 1 or 2, etc.
2559# 
2560#default_knob_offset_interpretability = 0
2561
2562# Whether to enable checking text for shift, currently only via label encoding.
2563#shift_check_text = false
2564
2565# Whether to use LightGBM random forest mode without early stopping for shift detection.
2566#use_rf_for_shift_if_have_lgbm = true
2567
2568# Normalized training variable importance above which to check the feature for shift
2569# Useful to avoid checking likely unimportant features
2570#shift_key_features_varimp = 0.01
2571
2572# Whether to only check certain features based upon the value of shift_key_features_varimp
2573#shift_check_reduced_features = true
2574
2575# Number of trees to use to train model to check shift in distribution
2576# No larger than max_nestimators
2577#shift_trees = 100
2578
2579# The value of max_bin to use for trees to use to train model to check shift in distribution
2580#shift_max_bin = 256
2581
2582# The min. value of max_depth to use for trees to use to train model to check shift in distribution
2583#shift_min_max_depth = 4
2584
2585# The max. value of max_depth to use for trees to use to train model to check shift in distribution
2586#shift_max_max_depth = 8
2587
2588# If distribution shift detection is enabled, show features for which shift AUC is above this value
2589# (AUC of a binary classifier that predicts whether given feature value belongs to train or test data)
2590#detect_features_distribution_shift_threshold_auc = 0.55
2591
2592# Minimum number of features to keep, keeping least shifted feature at least if 1
2593#drop_features_distribution_shift_min_features = 1
2594
2595# Shift beyond which shows HIGH notification, else MEDIUM
2596#shift_high_notification_level = 0.8
2597
2598# Whether to enable checking text for leakage, currently only via label encoding.
2599#leakage_check_text = true
2600
2601# Normalized training variable importance (per 1 minus AUC/R2 to control for leaky varimp dominance) above which to check the feature for leakage
2602# Useful to avoid checking likely unimportant features
2603#leakage_key_features_varimp = 0.001
2604
2605# Like leakage_key_features_varimp, but applies if early stopping disabled when can trust multiple leaks to get uniform varimp.
2606#leakage_key_features_varimp_if_no_early_stopping = 0.05
2607
2608# Whether to only check certain features based upon the value of leakage_key_features_varimp.  If any feature has AUC near 1, will consume all variable importance, even if another feature is also leaky.  So False is safest option, but True generally good if many columns.
2609#leakage_check_reduced_features = true
2610
2611# Whether to use LightGBM random forest mode without early stopping for leakage detection.
2612#use_rf_for_leakage_if_have_lgbm = true
2613
2614# Number of trees to use to train model to check for leakage
2615# No larger than max_nestimators
2616#leakage_trees = 100
2617
2618# The value of max_bin to use for trees to use to train model to check for leakage
2619#leakage_max_bin = 256
2620
2621# The value of max_depth to use for trees to use to train model to check for leakage
2622#leakage_min_max_depth = 6
2623
2624# The value of max_depth to use for trees to use to train model to check for leakage
2625#leakage_max_max_depth = 8
2626
2627# When leakage detection is enabled, if AUC (R2 for regression) on original data (label-encoded)
2628# is above or equal to this value, then trigger per-feature leakage detection
2629# 
2630#detect_features_leakage_threshold_auc = 0.95
2631
2632# When leakage detection is enabled, show features for which AUC (R2 for regression,
2633# for whether that predictor/feature alone predicts the target) is above or equal to this value.
2634# Feature is dropped if AUC/R2 is above or equal to drop_features_leakage_threshold_auc
2635# 
2636#detect_features_per_feature_leakage_threshold_auc = 0.8
2637
2638# Minimum number of features to keep, keeping least leakage feature at least if 1
2639#drop_features_leakage_min_features = 1
2640
2641# Ratio of train to validation holdout when testing for leakage
2642#leakage_train_test_split = 0.25
2643
2644# Whether to enable detailed traces (in GUI Trace)
2645#detailed_traces = false
2646
2647# Whether to enable debug log level (in log files)
2648#debug_log = false
2649
2650# Whether to add logging of system information such as CPU, GPU, disk space at the start of each experiment log. Same information is already logged in system logs.
2651#log_system_info_per_experiment = true
2652
2653#check_system = true
2654
2655#check_system_basic = true
2656
2657# How close to the optimal value (usually 1 or 0) does the validation score need to be to be considered perfect (to stop the experiment)?
2658#abs_tol_for_perfect_score = 0.0001
2659
2660# Timeout in seconds to wait for data ingestion.
2661#data_ingest_timeout = 86400.0
2662
2663# How many seconds to allow mutate to take, nominally only takes few seconds at most.  But on busy system doing many individuals, might take longer.  Optuna sometimes live lock hangs in scipy random distribution maker.
2664#mutate_timeout = 600
2665
2666# Whether to trust GPU locking for submission of GPU jobs to limit memory usage.
2667# If False, then wait for as GPU submissions to be less than number of GPUs,
2668# even if later jobs could be purely CPU jobs that did not need to wait.
2669# Only applicable if not restricting number of GPUs via num_gpus_per_experiment,
2670# else have to use resources instead of relying upon locking.
2671# 
2672#gpu_locking_trust_pool_submission = true
2673
2674# Whether to steal GPU locks when process is neither on GPU PID list nor using CPU resources at all (e.g. sleeping).  Only steal from multi-GPU locks that are incomplete.  Prevents deadlocks in case multi-GPU model hangs.
2675#gpu_locking_free_dead = true
2676
2677#check_pred_contribs_sum = false
2678
2679#debug_daimodel_level = 0
2680
2681#debug_debug_xgboost_splits = false
2682
2683#log_predict_info = true
2684
2685#log_fit_info = true
2686
2687# Amount of time to stall (in seconds) before killing the job (assumes it hung). Reference time is scaled by train data shape of rows * cols to get used stalled_time_kill
2688#stalled_time_kill_ref = 440.0
2689
2690# Amount of time between checks for some process taking long time, every cycle full process list will be dumped to console or experiment logs if possible.
2691#long_time_psdump = 1800
2692
2693# Whether to dump ps every long_time_psdump
2694#do_psdump = false
2695
2696# Whether to check every long_time_psdump seconds and SIGUSR1 to all children to see where maybe stuck or taking long time.
2697#livelock_signal = false
2698
2699# Value to override number of sockets, in case DAIs determination is wrong, for non-trivial systems.  0 means auto.
2700#num_cpu_sockets_override = 0
2701
2702# Value to override number of GPUs, in case DAIs determination is wrong, for non-trivial systems.  -1 means auto.Can also set min_num_cores_per_gpu=-1 to allowany number of GPUs for each experiment regardlessof number of cores.
2703#num_gpus_override = -1
2704
2705# Whether to show GPU usage only when locking.  'auto' means 'on' if num_gpus_override is different than actual total visible GPUs, else it means 'off'
2706#show_gpu_usage_only_if_locked = "auto"
2707
2708# Show inapplicable models in preview, to be sure not missing models one could have used
2709#show_inapplicable_models_preview = false
2710
2711# Show inapplicable transformers in preview, to be sure not missing transformers one could have used
2712#show_inapplicable_transformers_preview = false
2713
2714# Show warnings for models (image auto, Dask multinode/multi-GPU) if conditions are met to use but not chosen to avoid missing models that could benefit accuracy/performance
2715#show_warnings_preview = false
2716
2717# Show warnings for models that have no transformers for certain features.
2718#show_warnings_preview_unused_map_features = true
2719
2720# Up to how many input features to determine, during GUI/client preview, unused features. Too many slows preview down.
2721#max_cols_show_unused_features = 1000
2722
2723# Up to how many input features to show transformers used for each input feature.
2724#max_cols_show_feature_transformer_mapping = 1000
2725
2726# Up to how many input features to show, in preview, that are unused features.
2727#warning_unused_feature_show_max = 3
2728
2729#interaction_finder_max_rows_x_cols = 200000.0
2730
2731#interaction_finder_corr_threshold = 0.95
2732
2733# Required GINI relative improvement for InteractionTransformer.
2734# If GINI is not better than this relative improvement compared to original features considered
2735# in the interaction, then the interaction is not returned.  If noisy data, and no clear signal
2736# in interactions but still want interactions, then can decrease this number.
2737#interaction_finder_gini_rel_improvement_threshold = 0.5
2738
2739# Number of transformed Interactions to make as best out of many generated trial interactions.
2740#interaction_finder_return_limit = 5
2741
2742# Whether to enable bootstrap sampling. Provides error bars to validation and test scores based on the standard error of the bootstrap mean.
2743#enable_bootstrap = true
2744
2745# Minimum number of bootstrap samples to use for estimating score and its standard deviation
2746# Actual number of bootstrap samples will vary between the min and max,
2747# depending upon row count (more rows, fewer samples) and accuracy settings (higher accuracy, more samples)
2748# 
2749#min_bootstrap_samples = 1
2750
2751# Maximum number of bootstrap samples to use for estimating score and its standard deviation
2752# Actual number of bootstrap samples will vary between the min and max,
2753# depending upon row count (more rows, fewer samples) and accuracy settings (higher accuracy, more samples)
2754# 
2755#max_bootstrap_samples = 100
2756
2757# Minimum fraction of row size to take as sample size for bootstrap estimator
2758# Actual sample size used for bootstrap estimate will vary between the min and max,
2759# depending upon row count (more rows, smaller sample size) and accuracy settings (higher accuracy, larger sample size)
2760# 
2761#min_bootstrap_sample_size_factor = 1.0
2762
2763# Maximum fraction of row size to take as sample size for bootstrap estimator
2764# Actual sample size used for bootstrap estimate will vary between the min and max,
2765# depending upon row count (more rows, smaller sample size) and accuracy settings (higher accuracy, larger sample size)
2766# 
2767#max_bootstrap_sample_size_factor = 10.0
2768
2769# Seed to use for final model bootstrap sampling, -1 means use experiment-derived seed.
2770# E.g. one can retrain final model with different seed to get different final model error bars for scores.
2771# 
2772#bootstrap_final_seed = -1
2773
2774# Benford's law: mean absolute deviance threshold equal and above which integer valued columns are treated as categoricals too
2775#benford_mad_threshold_int = 0.03
2776
2777# Benford's law: mean absolute deviance threshold equal and above which real valued columns are treated as categoricals too
2778#benford_mad_threshold_real = 0.1
2779
2780# Variable importance below which feature is dropped (with possible replacement found that is better)
2781# This also sets overall scale for lower interpretability settings.
2782# Set to lower value if ok with many weak features despite choosing high interpretability,
2783# or if see drop in performance due to the need for weak features.
2784# 
2785#varimp_threshold_at_interpretability_10 = 0.001
2786
2787# Whether to avoid setting stabilize_varimp=false and stabilize_fs=false for time series experiments.
2788#allow_stabilize_varimp_for_ts = false
2789
2790# Variable importance is used by genetic algorithm to decide which features are useful,
2791# so this can stabilize the feature selection by the genetic algorithm.
2792# This is by default disabled for time series experiments, which can have real diverse behavior in each split.
2793# But in some cases feature selection is improved in presence of highly shifted variables that are not handled
2794# by lag transformers and one can set allow_stabilize_varimp_for_ts=true.
2795# 
2796#stabilize_varimp = true
2797
2798# Whether to take minimum (True) or mean (False) of delta improvement in score when aggregating feature selection scores across multiple folds/depths.
2799# Delta improvement of score corresponds to original metric minus metric of shuffled feature frame if maximizing metric,
2800# and corresponds to negative of such a score difference if minimizing.
2801# Feature selection by permutation importance considers the change in score after shuffling a feature, and using minimum operation
2802# ignores optimistic scores in favor of pessimistic scores when aggregating over folds.
2803# Note, if using tree methods, multiple depths may be fitted, in which case regardless of this toml setting,
2804# only features that are kept for all depths are kept by feature selection.
2805# If interpretability >= config toml value of fs_data_vary_for_interpretability, then half data (or setting of fs_data_frac)
2806# is used as another fit, in which case regardless of this toml setting,
2807# only features that are kept for all data sizes are kept by feature selection.
2808# Note: This is disabled for small data since arbitrary slices of small data can lead to disjoint features being important and only aggregated average behavior has signal.
2809# 
2810#stabilize_fs = true
2811
2812# Whether final pipeline uses fixed features for some transformers that would normally
2813# perform search, such as InteractionsTransformer.
2814# Use what learned from tuning and evolution (True) or to freshly search for new features (False).
2815# This can give a more stable pipeline, especially for small data or when using interaction transformer
2816# as pretransformer in multi-layer pipeline.
2817# 
2818#stabilize_features = true
2819
2820#fraction_std_bootstrap_ladder_factor = 0.01
2821
2822#bootstrap_ladder_samples_limit = 10
2823
2824#features_allowed_by_interpretability = "{1: 10000000, 2: 10000, 3: 1000, 4: 500, 5: 300, 6: 200, 7: 150, 8: 100, 9: 80, 10: 50, 11: 50, 12: 50, 13: 50}"
2825
2826#nfeatures_max_threshold = 200
2827
2828#rdelta_percent_score_penalty_per_feature_by_interpretability = "{1: 0.0, 2: 0.1, 3: 1.0, 4: 2.0, 5: 5.0, 6: 10.0, 7: 20.0, 8: 30.0, 9: 50.0, 10: 100.0, 11: 100.0, 12: 100.0, 13: 100.0}"
2829
2830#drop_low_meta_weights = true
2831
2832#meta_weight_allowed_by_interpretability = "{1: 1E-7, 2: 1E-5, 3: 1E-4, 4: 1E-3, 5: 1E-2, 6: 0.03, 7: 0.05, 8: 0.08, 9: 0.10, 10: 0.15, 11: 0.15, 12: 0.15, 13: 0.15}"
2833
2834#meta_weight_allowed_for_reference = 1.0
2835
2836#feature_cost_mean_interp_for_penalty = 5
2837
2838#features_cost_per_interp = 0.25
2839
2840#varimp_threshold_shift_report = 0.3
2841
2842#apply_featuregene_limits_after_tuning = true
2843
2844#remove_scored_0gain_genes_in_postprocessing_above_interpretability = 13
2845
2846#remove_scored_0gain_genes_in_postprocessing_above_interpretability_final_population = 2
2847
2848#remove_scored_by_threshold_genes_in_postprocessing_above_interpretability_final_population = 7
2849
2850#show_full_pipeline_details = false
2851
2852#num_transformed_features_per_pipeline_show = 10
2853
2854#fs_data_vary_for_interpretability = 7
2855
2856#fs_data_frac = 0.5
2857
2858#many_columns_count = 400
2859
2860#columns_count_interpretable = 200
2861
2862#round_up_indivs_for_busy_gpus = true
2863
2864#tuning_share_varimp = "best"
2865
2866# Graphviz is an optional requirement for native installations (RPM/DEP/Tar-SH, outside of Docker)to convert .dot files into .png files for pipeline visualizations as part of experiment artifacts
2867#require_graphviz = true
2868
2869# Unnormalized probability to add genes or instances of transformers with specific attributes.
2870# If no genes can be added, other mutations
2871# (mutating models hyper parmaters, pruning genes, pruning features, etc.) are attempted.
2872# 
2873#prob_add_genes = 0.5
2874
2875# Unnormalized probability, conditioned on prob_add_genes,
2876# to add genes or instances of transformers with specific attributes
2877# that have shown to be beneficial to other individuals within the population.
2878# 
2879#prob_addbest_genes = 0.5
2880
2881# Unnormalized probability to prune genes or instances of transformers with specific attributes.
2882# If a variety of transformers with many attributes exists, default value is reasonable.
2883# However, if one has fixed set of transformers that should not change or no new transformer attributes
2884# can be added, then setting this to 0.0 is reasonable to avoid undesired loss of transformations.
2885# 
2886#prob_prune_genes = 0.5
2887
2888# Unnormalized probability change model hyper parameters.
2889# 
2890#prob_perturb_xgb = 0.25
2891
2892# Unnormalized probability to prune features that have low variable importance, as opposed to pruning entire instances of genes/transformers when prob_prune_genes used.
2893# If prob_prune_genes=0.0 and prob_prune_by_features==0.0 and prob_prune_by_top_features==0.0, then genes/transformers and transformed features are only pruned if they are:
2894# 1) inconsistent with the genome
2895# 2) inconsistent with the column data types
2896# 3) had no signal (for interactions and cv_in_cv for target encoding)
2897# 4) transformation failed
2898# E.g. these are toml settings are then ignored:
2899# 1) ngenes_max
2900# 2) limit_features_by_interpretability
2901# 3) varimp_threshold_at_interpretability_10
2902# 4) features_allowed_by_interpretability
2903# 5) remove_scored_0gain_genes_in_postprocessing_above_interpretability
2904# 6) nfeatures_max_threshold
2905# 7) features_cost_per_interp
2906# So this acts similar to no_drop_features, except no_drop_features also applies to shift and leak detection, constant columns are not dropped, ID columns are not dropped.
2907#prob_prune_by_features = 0.25
2908
2909# Unnormalized probability to prune features that have high variable importance,
2910# in case they have high gain but negaive perfomrance on validation and would otherwise maintain poor validation scores.
2911# Similar to prob_prune_by_features but for high gain features.
2912#prob_prune_by_top_features = 0.25
2913
2914# Maximum number of high gain features to prune for each mutation call, to control behavior of prob_prune_by_top_features.
2915#max_num_prune_by_top_features = 1
2916
2917# Like prob_prune_genes but only for pretransformers, i.e. those transformers in layers except last layer that connects to model.
2918#prob_prune_pretransformer_genes = 0.5
2919
2920# Like prob_prune_by_features but only for pretransformers, i.e. those transformers in layers except last layer that connects to model.
2921#prob_prune_pretransformer_by_features = 0.25
2922
2923# Like prob_prune_by_top_features but only for pretransformers, i.e. those transformers in layers except last layer that connects to model.
2924#prob_prune_pretransformer_by_top_features = 0.25
2925
2926# When doing restart, retrain, refit, reset these individual parameters to new toml values.
2927#override_individual_from_toml_list = "['prob_perturb_xgb', 'prob_add_genes', 'prob_addbest_genes', 'prob_prune_genes', 'prob_prune_by_features', 'prob_prune_by_top_features', 'prob_prune_pretransformer_genes', 'prob_prune_pretransformer_by_features', 'prob_prune_pretransformer_by_top_features']"
2928
2929# Max. number of trees to use for all tree model predictions. For testing, when predictions don't matter. -1 means disabled.
2930#fast_approx_max_num_trees_ever = -1
2931
2932# Max. number of trees to use for fast_approx=True (e.g., for AutoDoc/MLI).
2933#fast_approx_num_trees = 250
2934
2935# Whether to speed up fast_approx=True further, by using only one fold out of all cross-validation folds (e.g., for AutoDoc/MLI).
2936#fast_approx_do_one_fold = true
2937
2938# Whether to speed up fast_approx=True further, by using only one model out of all ensemble models (e.g., for AutoDoc/MLI).
2939#fast_approx_do_one_model = false
2940
2941# Max. number of trees to use for fast_approx_contribs=True (e.g., for 'Fast Approximation' in GUI when making Shapley predictions, and for AutoDoc/MLI).
2942#fast_approx_contribs_num_trees = 50
2943
2944# Whether to speed up fast_approx_contribs=True further, by using only one fold out of all cross-validation folds (e.g., for 'Fast Approximation' in GUI when making Shapley predictions, and for AutoDoc/MLI).
2945#fast_approx_contribs_do_one_fold = true
2946
2947# Whether to speed up fast_approx_contribs=True further, by using only one model out of all ensemble models (e.g., for 'Fast Approximation' in GUI when making Shapley predictions, and for AutoDoc/MLI).
2948#fast_approx_contribs_do_one_model = true
2949
2950# Approximate interval between logging of progress updates when making predictions. >=0 to enable, -1 to disable.
2951#prediction_logging_interval = 300
2952
2953# Whether to use exploit-explore logic like DAI 1.8.x.  False will explore more.
2954#use_187_prob_logic = true
2955
2956# Whether to enable cross-validated OneHotEncoding+LinearModel transformer
2957#enable_ohe_linear = false
2958
2959#max_absolute_feature_expansion = 1000
2960
2961#booster_for_fs_permute = "auto"
2962
2963#model_class_name_for_fs_permute = "auto"
2964
2965#switch_from_tree_to_lgbm_if_can = true
2966
2967#model_class_name_for_shift = "auto"
2968
2969#model_class_name_for_leakage = "auto"
2970
2971#default_booster = "lightgbm"
2972
2973#default_model_class_name = "LightGBMModel"
2974
2975#num_as_cat_false_if_ohe = true
2976
2977#no_ohe_try = true
2978
2979# Compute empirical prediction intervals (based on holdout predictions).
2980#prediction_intervals = true
2981
2982# Confidence level for prediction intervals.
2983#prediction_intervals_alpha = 0.9
2984
2985# DISCLAIMER: THIS IS AN EXPERIMENTAL FEATURE, USE AT YOUR OWN RISK.
2986# The new methods will simulate error propagation over future prediction across horizons, not intend to be realistic model prediction pattern as model does not trained in AR(auto-regressive) fashion.
2987# error_propagation: Assume normal distribution with std sigma then set bands as y_hat +/- z * sigma and inflating with horizon. Good when residuals are roughly Gaussian but relies on correct inflation model;
2988# bootstrap_simulation: Resample historical residuals (with replacement) to simulate future errors, take simulation percentiles per group/horizon and add to y_hat. Capture skew/heavy tails without parametric assumption but computational expensive and performance can drift if error distribution shift;
2989# monte_carlo_simulation: Fit a parametric error model (Gaussian), simulate many error draws, take percentiles to add to y_hat. Smoother and more stable than bootstrap with limited data but risk of Misspecification if the chosen distribution is wrong.
2990#prediction_intervals_simulation_method = ""
2991
2992# DISCLAIMER: THIS IS AN EXPERIMENTAL FEATURE, USE AT YOUR OWN RISK.
2993# Sample size to simulate future errors, used by ``bootstrap_simulation`` and ``monte_carlo_simulation``.
2994#prediction_intervals_sampling_errors = 1000
2995
2996# DISCLAIMER: THIS IS AN EXPERIMENTAL FEATURE, USE AT YOUR OWN RISK.
2997# A heuristic approach that will greatly reduces the memory cost due to the expensive join and group operations while being horizon-aware.
2998# Note: If buckets is 1 then only the fixed median of entire horizon will be utilized, thus no effect of horizon at all.
2999# If buckets is <= 0, then all horizons will be considered.
3000# It is highly recommend to tune this parameter for the best tradeoff as experiment may become unstable and subject to failure due to the amount of memory/cpu exhausted depending on the size of training data.
3001#prediction_intervals_bin_horizon = 0
3002
3003# DISCLAIMER: THIS IS AN EXPERIMENTAL FEATURE, USE AT YOUR OWN RISK.
3004# Control the spread of error accumulation over the horizon:
3005# If == 1.0: intervals use the raw residual standard deviation and the growth based on strong assumption of independent, constant residuals;
3006# If > 1.0: widens intervals (more conservative). Useful if your residual underestimates true predictive uncertainty;
3007# If < 1.0 (default 0.9): narrows intervals (sharper). Useful if the raw variance + growth is too pessimistic for your data.
3008#prediction_interval_monte_carlo_calibration_ratio = 0.9
3009
3010# Appends one extra output column with predicted target class (after the per-class probabilities).
3011# Uses argmax for multiclass, and the threshold defined by the optimal scorer controlled by the
3012# 'threshold_scorer' expert setting for binary problems. This setting controls the training, validation and test
3013# set predictions (if applicable) that are created by the experiment. MOJO, scoring pipeline and client APIs
3014# control this behavior via their own version of this parameter.
3015#pred_labels = true
3016
3017# Class count above which do not use TextLin Transformer.
3018#textlin_num_classes_switch = 5
3019
3020#text_gene_dim_reduction_choices = "[50]"
3021
3022#text_gene_max_ngram = "[1, 2, 3]"
3023
3024# Max size (in tokens) of the vocabulary created during fitting of Tfidf/Count/Comatrix based text
3025# transformers (not CNN/BERT). If multiple values are provided, will use the first one for initial models, and use remaining
3026# values during parameter tuning and feature evolution. Values smaller than 10000 are recommended for speed,
3027# and a reasonable set of choices include: 100, 1000, 5000, 10000, 50000, 100000, 500000.
3028# Note: If force_enable_text_comatrix_preprocess is set to True, then only selective set of top vocabularies will be used due to computational and memory complexity.
3029#text_transformers_max_vocabulary_size = "[1000, 5000]"
3030
3031# Enables caching of BERT embeddings by temporally saving the embedding vectors to the experiment directory. Set to -1 to cache all text, set to 0 to disable caching.
3032#number_of_texts_to_cache_in_bert_transformer = -1
3033
3034# Modify early stopping behavior for tree-based models (LightGBM, XGBoostGBM, CatBoost) such
3035# that training score (on training data, not holdout) and validation score differ no more than this absolute value
3036# (i.e., stop adding trees once abs(train_score - valid_score) > max_abs_score_delta_train_valid).
3037# Keep in mind that the meaning of this value depends on the chosen scorer and the dataset (i.e., 0.01 for
3038# LogLoss is different than 0.01 for MSE). Experimental option, only for expert use to keep model complexity low.
3039# To disable, set to 0.0
3040#max_abs_score_delta_train_valid = 0.0
3041
3042# Modify early stopping behavior for tree-based models (LightGBM, XGBoostGBM, CatBoost) such
3043# that training score (on training data, not holdout) and validation score differ no more than this relative value
3044# (i.e., stop adding trees once abs(train_score - valid_score) > max_rel_score_delta_train_valid * abs(train_score)).
3045# Keep in mind that the meaning of this value depends on the chosen scorer and the dataset (i.e., 0.01 for
3046# LogLoss is different than 0.01 for MSE). Experimental option, only for expert use to keep model complexity low.
3047# To disable, set to 0.0
3048#max_rel_score_delta_train_valid = 0.0
3049
3050# Whether to search for optimal lambda for given alpha for XGBoost GLM.
3051# If 'auto', disabled if training data has more rows * cols than final_pipeline_data_size or for multiclass experiments.
3052# Disabled always for ensemble_level = 0.
3053# Not always a good approach, can be slow for little payoff compared to grid search.
3054# 
3055#glm_lambda_search = "auto"
3056
3057# If XGBoost GLM lambda search is enabled, whether to do search by the eval metric (True)
3058# or using the actual DAI scorer (False).
3059#glm_lambda_search_by_eval_metric = false
3060
3061#gbm_early_stopping_rounds_min = 1
3062
3063#gbm_early_stopping_rounds_max = 10000000000
3064
3065# Whether to enable early stopping threshold for LightGBM, varying by accuracy.
3066# Stops training once validation score changes by less than the threshold.
3067# This leads to fewer trees, usually avoiding wasteful trees, but may lower accuracy.
3068# However, it may also improve generalization by avoiding fine-tuning to validation set.
3069# 0 leads to value of 0 used, i.e. disabled
3070# > 0 means non-automatic mode using that *relative* value, scaled by first tree results of the metric for any metric.
3071# -1 means always enable, but the threshold itself is automatic (lower the accuracy, the larger the threshold).
3072# -2 means fully automatic mode, i.e. disabled unless reduce_mojo_size is true.  In true, the lower the accuracy, the larger the threshold.
3073# NOTE: Automatic threshold is set so relative value of metric's min_delta in LightGBM's callback for early stopping is:
3074# if accuracy <= 1:
3075# early_stopping_threshold = 1e-1
3076# elif accuracy <= 4:
3077# early_stopping_threshold = 1e-2
3078# elif accuracy <= 7:
3079# early_stopping_threshold = 1e-3
3080# elif accuracy <= 9:
3081# early_stopping_threshold = 1e-4
3082# else:
3083# early_stopping_threshold = 0
3084# 
3085#enable_early_stopping_threshold = -2.0
3086
3087#glm_optimal_refit = true
3088
3089# Whether to force enable co-occurrence text preprocess, only applicable to TextTransformer, default is False.Note: This setting will override choice made from Gene. Currently MOJO does not support co-occurrence matrix operation.
3090#force_enable_text_comatrix_preprocess = false
3091
3092# Window size of the neighboring vocabulary being counted during fitting of Co-Occurrence based text
3093# transformers (not CNN/BERT). If multiple values are provided, will use the first one for initial models, and use remaining
3094# values during parameter tuning and feature evolution. Values smaller than 5 are recommended for speed and memory,
3095# defaults are 3, 2, 4.
3096#text_gene_comatrix_window_size_choices = "[3, 2, 4]"
3097
3098# Max. number of top variable importances to save per iteration (GUI can only display a max. of 14)
3099#max_varimp_to_save = 100
3100
3101# Max. number of top variable importances to show in logs during feature evolution
3102#max_num_varimp_to_log = 10
3103
3104# Max. number of top variable importance shifts to show in logs and GUI after final model built
3105#max_num_varimp_shift_to_log = 10
3106
3107# Skipping just avoids the failed transformer.
3108# Sometimes python multiprocessing swallows exceptions,
3109# so skipping and logging exceptions is also more reliable way to handle them.
3110# Recipe can raise h2oaicore.systemutils.IgnoreError to ignore error and avoid logging error.
3111# Features that fail are pruned from the individual.
3112# If that leaves no features in the individual, then backend tuning, feature/model tuning, final model building, etc.
3113# will still fail since DAI should not continue if all features are from a failed state.
3114# 
3115#skip_transformer_failures = true
3116
3117# Skipping just avoids the failed model.  Failures are logged depending upon detailed_skip_failure_messages_level."
3118# Recipe can raise h2oaicore.systemutils.IgnoreError to ignore error and avoid logging error.
3119# 
3120#skip_model_failures = true
3121
3122# Skipping just avoids the failed scorer if among many scorers.  Failures are logged depending upon detailed_skip_failure_messages_level."
3123# Recipe can raise h2oaicore.systemutils.IgnoreError to ignore error and avoid logging error.
3124# Default is True to avoid failing in, e.g., final model building due to a single scorer.
3125# 
3126#skip_scorer_failures = true
3127
3128# Skipping avoids the failed recipe.  Failures are logged depending upon detailed_skip_failure_messages_level."
3129# Default is False because runtime data recipes are one-time at start of experiment and expected to work by default.
3130# 
3131#skip_data_recipe_failures = false
3132
3133# Whether can skip final model transformer failures for layer > first layer for multi-layer pipeline.
3134#can_skip_final_upper_layer_failures = true
3135
3136# How much verbosity to log failure messages for failed and then skipped transformers or models.
3137# Full failures always go to disk as *.stack files,
3138# which upon completion of experiment goes into details folder within experiment log zip file.
3139# 
3140#detailed_skip_failure_messages_level = 1
3141
3142# Whether to not just log errors of recipes (models and transformers) but also show high-level notification in GUI.
3143# 
3144#notify_failures = true
3145
3146# Instructions for 'Add to config.toml via toml string' in GUI expert page
3147# Self-referential toml parameter, for setting any other toml parameters as string of tomls separated by
3148# (spaces around
3149# are ok).
3150# Useful when toml parameter is not in expert mode but want per-experiment control.
3151# Setting this will override all other choices.
3152# In expert page, each time expert options saved, the new state is set without memory of any prior settings.
3153# The entered item is a fully compliant toml string that would be processed directly by toml.load().
3154# One should include 2 double quotes around the entire setting, or double quotes need to be escaped.
3155# One enters into the expert page text as follows:
3156# e.g. ``enable_glm="off"
3157# enable_xgboost_gbm="off"
3158# enable_lightgbm="on"``
3159# e.g. ``""enable_glm="off"
3160# enable_xgboost_gbm="off"
3161# enable_lightgbm="off"""``
3162# e.g. ``fixed_num_individuals=4``
3163# e.g. ``params_lightgbm="{'objective':'poisson'}"``
3164# e.g. ``""params_lightgbm="{'objective':'poisson'}"""``
3165# e.g. ``max_cores=10
3166# data_precision="float32"
3167# max_rows_feature_evolution=50000000000
3168# ensemble_accuracy_switch=11
3169# feature_engineering_effort=1
3170# target_transformer="identity"
3171# tournament_feature_style_accuracy_switch=5``
3172# e.g. ""max_cores=10
3173# data_precision="float32"
3174# max_rows_feature_evolution=50000000000
3175# ensemble_accuracy_switch=11
3176# feature_engineering_effort=1
3177# target_transformer="identity"
3178# tournament_feature_style_accuracy_switch=5""
3179# If you see: "toml.TomlDecodeError" then ensure toml is set correctly.
3180# When set in the expert page of an experiment, these changes only affect experiments and not the server
3181# Usually should keep this as empty string in this toml file.
3182# 
3183#config_overrides = ""
3184
3185# Whether to dump every scored individual's variable importance to csv/tabulated/json file produces files like:
3186# individual_scored_id%d.iter%d.<hash>.features.txt for transformed features.
3187# individual_scored_id%d.iter%d.<hash>.features_orig.txt for original features.
3188# individual_scored_id%d.iter%d.<hash>.coefs.txt for absolute importance of transformed features.
3189# There are txt, tab.txt, and json formats for some files, and "best_" prefix means it is the best individual for that iteration
3190# The hash in the name matches the hash in the files produced by dump_modelparams_every_scored_indiv=true that can be used to track mutation history.
3191#dump_varimp_every_scored_indiv = false
3192
3193# Whether to dump every scored individual's model parameters to csv/tabulated/json file
3194# produces files like: individual_scored.params.[txt, csv, json].
3195# Each individual has a hash that matches the hash in the filenames produced if dump_varimp_every_scored_indiv=true,
3196# and the "unchanging hash" is the first parent hash (None if that individual is the first parent itself).
3197# These hashes can be used to track the history of the mutations.
3198# 
3199#dump_modelparams_every_scored_indiv = true
3200
3201# Number of features to show in model dump every scored individual
3202#dump_modelparams_every_scored_indiv_feature_count = 3
3203
3204# Number of past mutations to show in model dump every scored individual
3205#dump_modelparams_every_scored_indiv_mutation_count = 3
3206
3207# Whether to append (false) or have separate files, files like: individual_scored_id%d.iter%d*params*, (true) for modelparams every scored indiv
3208#dump_modelparams_separate_files = false
3209
3210# Whether to dump every scored fold's timing and feature info to a *timings*.txt file
3211# 
3212#dump_trans_timings = false
3213
3214# whether to delete preview timings if wrote transformer timings
3215#delete_preview_trans_timings = true
3216
3217# Attempt to create at most this many exemplars (actual rows behaving like cluster centroids) for the Aggregator
3218# algorithm in unsupervised experiment mode.
3219# 
3220#unsupervised_aggregator_n_exemplars = 100
3221
3222# Attempt to create at least this many clusters for clustering algorithm in unsupervised experiment mode.
3223# 
3224#unsupervised_clustering_min_clusters = 2
3225
3226# Attempt to create no more than this many clusters for clustering algorithm in unsupervised experiment mode.
3227# 
3228#unsupervised_clustering_max_clusters = 10
3229
3230#use_random_text_file = false
3231
3232#runtime_estimation_train_frame = ""
3233
3234#enable_bad_scorer = false
3235
3236#debug_col_dict_prefix = ""
3237
3238#return_early_debug_col_dict_prefix = false
3239
3240#return_early_debug_preview = false
3241
3242#wizard_random_attack = false
3243
3244#wizard_enable_back_button = true
3245
3246#wizard_deployment = ""
3247
3248#wizard_repro_level = -1
3249
3250#wizard_sample_size = 100000
3251
3252#wizard_model = "rf"
3253
3254# Maximum number of columns to start an experiment. This threshold exists to constraint the # complexity and the length of the Driverless AI's processes.
3255#wizard_max_cols = 100000
3256
3257# How many seconds to allow preview to take for Wizard.
3258#wizard_timeout_preview = 30
3259
3260# How many seconds to allow leakage detection to take for Wizard.
3261#wizard_timeout_leakage = 60
3262
3263# How many seconds to allow duplicate row detection to take for Wizard.
3264#wizard_timeout_dups = 30
3265
3266# How many seconds to allow variable importance calculation to take for Wizard.
3267#wizard_timeout_varimp = 30
3268
3269# How many seconds to allow dataframe schema calculation to take for Wizard.
3270#wizard_timeout_schema = 60
3271
3272#max_reorder_experiments = 100
3273
3274# Default the upper bound number of experiments owned per user. Negative value means infinite quota.
3275#default_experiments_quota_per_user = -1
3276
3277# Dictionary of key:list of experiments quota values for users, overrides above defaults with specified set of users
3278# e.g: ``override_experiments_quota_for_users="{'user1':10,'user2':20,'user3':30}"`` to set user1 with 10 experiments quota,
3279# user2 with 20 experiments quota and user3 with 30 experiments quota.
3280# 
3281#override_experiments_quota_for_users = "{}"
3282
3283# authentication_method
3284# unvalidated : Accepts user id and password. Does not validate password.
3285# none: Does not ask for user id or password. Authenticated as admin.
3286# openid: Users OpenID Connect provider for authentication. See additional OpenID settings below.
3287# oidc: Renewed OpenID Connect authentication using authorization code flow. See additional OpenID settings below.
3288# pam: Accepts user id and password. Validates user with operating system.
3289# ldap: Accepts user id and password. Validates against an ldap server. Look
3290# for additional settings under LDAP settings.
3291# local: Accepts a user id and password. Validated against an htpasswd file provided in local_htpasswd_file.
3292# ibm_spectrum_conductor: Authenticate with IBM conductor auth api.
3293# tls_certificate: Authenticate with Driverless by providing a TLS certificate.
3294# jwt: Authenticate by JWT obtained from the request metadata.
3295# 
3296#authentication_method = "unvalidated"
3297
3298# Additional authentication methods that will be enabled for for the clients.Login forms for each method will be available on the``/login/<authentication_method>`` path.Comma separated list.
3299#additional_authentication_methods = "[]"
3300
3301# The default amount of time in hours before a user is signed out and must log in again. This setting is used when a default timeout value is not provided by ``authentication_method``.
3302#authentication_default_timeout_hours = 72.0
3303
3304# When enabled, the user's session is automatically prolonged, even when they are not interacting directly with the application.
3305#authentication_gui_polling_prolongs_session = false
3306
3307# OpenID Connect Settings:
3308# Refer to the OpenID Connect Basic Client Implementation Guide for details on how OpenID authentication flow works
3309# https://openid.net/specs/openid-connect-basic-1_0.html
3310# base server URI to the OpenID Provider server (ex: https://oidp.ourdomain.com
3311#auth_openid_provider_base_uri = ""
3312
3313# URI to pull OpenID config data from (you can extract most of required OpenID config from this url)
3314# usually located at: /auth/realms/master/.well-known/openid-configuration
3315#auth_openid_configuration_uri = ""
3316
3317# URI to start authentication flow
3318#auth_openid_auth_uri = ""
3319
3320# URI to make request for token after callback from OpenID server was received
3321#auth_openid_token_uri = ""
3322
3323# URI to get user information once access_token has been acquired (ex: list of groups user belongs to will be provided here)
3324#auth_openid_userinfo_uri = ""
3325
3326# URI to logout user
3327#auth_openid_logout_uri = ""
3328
3329# callback URI that OpenID provide will use to send 'authentication_code'
3330# This is OpenID callback endpoint in Driverless AI. Most OpenID providers need this to be HTTPs.
3331# (ex. https://driverless.ourdomin.com/openid/callback)
3332#auth_openid_redirect_uri = ""
3333
3334# OAuth2 grant type (usually authorization_code for OpenID, can be access_token also)
3335#auth_openid_grant_type = ""
3336
3337# OAuth2 response type (usually code)
3338#auth_openid_response_type = ""
3339
3340# Client ID registered with OpenID provider
3341#auth_openid_client_id = ""
3342
3343# Client secret provided by OpenID provider when registering Client ID
3344#auth_openid_client_secret = ""
3345
3346# Scope of info (usually openid). Can be list of more than one, space delimited, possible
3347# values listed at https://openid.net/specs/openid-connect-basic-1_0.html#Scopes
3348#auth_openid_scope = ""
3349
3350# What key in user_info JSON should we check to authorize user
3351#auth_openid_userinfo_auth_key = ""
3352
3353# What value should the key have in user_info JSON in order to authorize user
3354#auth_openid_userinfo_auth_value = ""
3355
3356# Key that specifies username in user_info JSON (we will use the value of this key as username in Driverless AI)
3357#auth_openid_userinfo_username_key = ""
3358
3359# Quote method from urllib.parse used to encode payload dict in Authentication Request
3360#auth_openid_urlencode_quote_via = "quote"
3361
3362# Key in Token Response JSON that holds the value for access token expiry
3363#auth_openid_access_token_expiry_key = "expires_in"
3364
3365# Key in Token Response JSON that holds the value for access token expiry
3366#auth_openid_refresh_token_expiry_key = "refresh_expires_in"
3367
3368# Expiration time in seconds for access token
3369#auth_openid_token_expiration_secs = 3600
3370
3371# Enables advanced matching for OpenID Connect authentication.
3372# When enabled ObjectPath (<http://objectpath.org/>) expression is used to
3373# evaluate the user identity.
3374# 
3375#auth_openid_use_objectpath_match = false
3376
3377# ObjectPath (<http://objectpath.org/>) expression that will be used
3378# to evaluate whether user is allowed to login into Driverless.
3379# Any expression that evaluates to True means user is allowed to log in.
3380# Examples:
3381# Simple claim equality: `$.our_claim is "our_value"`
3382# List of claims contains required value: `"expected_role" in @.roles`
3383# 
3384#auth_openid_use_objectpath_expression = ""
3385
3386# Sets token introspection URL for OpenID Connect authentication. (needs to be an absolute URL) Needs to be set when API token introspection is enabled. Is used to get the token TTL when set and IDP does not provide expires_in field in the token endpoint response.
3387#auth_openid_token_introspection_url = ""
3388
3389# Sets an URL where the user is being redirected after being logged out when set. (needs to be an absolute URL)
3390#auth_openid_end_session_endpoint_url = ""
3391
3392# If set, server will use these scopes when it asks for the token on the login. (space separated list)
3393#auth_openid_default_scopes = ""
3394
3395# Specifies the source from which user identity and username is retrieved.
3396# Currently supported sources are:
3397# user_info: Retrieves username from UserInfo endpoint response
3398# id_token: Retrieves username from ID Token using
3399# `auth_openid_id_token_username_key` claim
3400# 
3401#auth_oidc_identity_source = "userinfo"
3402
3403# Claim of preferred username in a message holding the user identity, which will be used as a username in application. The user identity source is specified by `auth_oidc_identity_source`, and can be e.g. UserInfo endpoint response or ID Token
3404#auth_oidc_username_claim = ""
3405
3406# OpenID-Connect Issuer URL, which is used for automatic provider infodiscovery. E.g. https://login.microsoftonline.com/<client-id>/v2.0
3407#auth_oidc_issuer_url = ""
3408
3409# OpenID-Connect Token endpoint URL. Setting this is optional and if it's empty, it'll be automatically set by provider info discovery.
3410#auth_oidc_token_endpoint_url = ""
3411
3412# OpenID-Connect Token introspection endpoint URL. Setting this is optional and if it's empty, it'll be automatically set by provider info discovery.
3413#auth_oidc_introspection_endpoint_url = ""
3414
3415# Absolute URL to which user is redirected, after they log out from the application, in case OIDC authentication is used. Usually this is absolute URL of DriverlessAI Login page e.g. https://1.2.3.4:12345/login
3416#auth_oidc_post_logout_url = ""
3417
3418# Key-value mapping of extra HTTP query parameters in an OIDC authorization request.
3419#auth_oidc_authorization_query_params = "{}"
3420
3421# When set to True, will skip cert verification.
3422#auth_oidc_skip_cert_verification = false
3423
3424# When set will use this value as the location for the CA cert, this takes precedence over auth_oidc_skip_cert_verification.
3425#auth_oidc_ca_cert_location = ""
3426
3427# Enables option to use Bearer token for authentication with the RPC endpoint.
3428#api_token_introspection_enabled = false
3429
3430# Sets the method that is used to introspect the bearer token.
3431# OAUTH2_TOKEN_INTROSPECTION: Uses  OAuth 2.0 Token Introspection (RPC 7662)
3432# endpoint to introspect the bearer token.
3433# This useful when 'openid' is used as the authentication method.
3434# Uses 'auth_openid_client_id' and 'auth_openid_client_secret' and to
3435# authenticate with the authorization server and
3436# `auth_openid_token_introspection_url` to perform the introspection.
3437# 
3438#api_token_introspection_method = "OAUTH2_TOKEN_INTROSPECTION"
3439
3440# Sets the minimum of the scopes that the access token needs to have
3441# in order to pass the introspection. Space separated./
3442# This is passed to the introspection endpoint and also verified after response
3443# for the servers that don't enforce scopes.
3444# Keeping this empty turns any the verification off.
3445# 
3446#api_token_oauth2_scopes = ""
3447
3448# Which field of the response returned by the token introspection endpoint should be used as a username.
3449#api_token_oauth2_username_field_name = "username"
3450
3451# Enables the option to initiate a PKCE flow from the UI in order to obtaintokens usable with Driverless clients
3452#oauth2_client_tokens_enabled = false
3453
3454# Sets up client id that will be used in the OAuth 2.0 Authorization Code Flow to obtain the tokens. Client needs to be public and be able to use PKCE with S256 code challenge.
3455#oauth2_client_tokens_client_id = ""
3456
3457# Sets up the absolute url to the authorize endpoint.
3458#oauth2_client_tokens_authorize_url = ""
3459
3460# Sets up the absolute url to the token endpoint.
3461#oauth2_client_tokens_token_url = ""
3462
3463# Sets up the absolute url to the token introspection endpoint.It's displayed in the UI so that clients can inspect the token expiration.
3464#oauth2_client_tokens_introspection_url = ""
3465
3466# Sets up the absolute to the redirect url where Driverless handles the redirect part of the Authorization Code Flow. this <Driverless base url>/oauth2/client_token
3467#oauth2_client_tokens_redirect_url = ""
3468
3469# Sets up the scope for the requested tokens. Space seprated list.
3470#oauth2_client_tokens_scope = "openid profile ai.h2o.storage"
3471
3472# ldap server domain or ip
3473#ldap_server = ""
3474
3475# ldap server port
3476#ldap_port = ""
3477
3478# Complete DN of the LDAP bind user
3479#ldap_bind_dn = ""
3480
3481# Password for the LDAP bind
3482#ldap_bind_password = ""
3483
3484# Provide Cert file location
3485#ldap_tls_file = ""
3486
3487# use true to use ssl or false
3488#ldap_use_ssl = false
3489
3490# the location in the DIT where the search will start
3491#ldap_search_base = ""
3492
3493# A string that describes what you are searching for. You can use Pythonsubstitution to have this constructed dynamically.(only {{DAI_USERNAME}} is supported)
3494#ldap_search_filter = ""
3495
3496# ldap attributes to return from search
3497#ldap_search_attributes = ""
3498
3499# specify key to find user name
3500#ldap_user_name_attribute = ""
3501
3502# When using this recipe, needs to be set to "1"
3503#ldap_recipe = "0"
3504
3505# Deprecated do not use
3506#ldap_user_prefix = ""
3507
3508# Deprecated, Use ldap_bind_dn
3509#ldap_search_user_id = ""
3510
3511# Deprecated, ldap_bind_password
3512#ldap_search_password = ""
3513
3514# Deprecated, use ldap_search_base instead
3515#ldap_ou_dn = ""
3516
3517# Deprecated, use ldap_base_dn
3518#ldap_dc = ""
3519
3520# Deprecated, use ldap_search_base
3521#ldap_base_dn = ""
3522
3523# Deprecated, use ldap_search_filter
3524#ldap_base_filter = ""
3525
3526# Path to the CRL file that will be used to verify client certificate.
3527#auth_tls_crl_file = ""
3528
3529# What field of the subject would used as source for username or other values used for further validation.
3530#auth_tls_subject_field = "CN"
3531
3532# Regular expression that will be used to parse subject field to obtain the username or other values used for further validation.
3533#auth_tls_field_parse_regexp = "(?P<username>.*)"
3534
3535# Sets up the way how user identity would be obtained
3536# REGEXP_ONLY: Will use 'auth_tls_subject_field' and 'auth_tls_field_parse_regexp'
3537# to extract the username from the client certificate.
3538# LDAP_LOOKUP: Will use LDAP server to lookup for the username.
3539# 'auth_tls_ldap_server', 'auth_tls_ldap_port',
3540# 'auth_tls_ldap_use_ssl', 'auth_tls_ldap_tls_file',
3541# 'auth_tls_ldap_bind_dn', 'auth_tls_ldap_bind_password'
3542# options are used to establish the connection with the LDAP server.
3543# 'auth_tls_subject_field' and 'auth_tls_field_parse_regexp'
3544# options are used to parse the certificate.
3545# 'auth_tls_ldap_search_base', 'auth_tls_ldap_search_filter', and
3546# 'auth_tls_ldap_username_attribute' options are used to do the
3547# lookup.
3548# 
3549#auth_tls_user_lookup = "REGEXP_ONLY"
3550
3551# Hostname or IP address of the LDAP server used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3552#auth_tls_ldap_server = ""
3553
3554# Port of the LDAP server used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3555#auth_tls_ldap_port = ""
3556
3557# Whether to SSL to when connecting to the LDAP server used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3558#auth_tls_ldap_use_ssl = false
3559
3560# Path to the SSL certificate used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3561#auth_tls_ldap_tls_file = ""
3562
3563# Complete DN of the LDAP bind user used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3564#auth_tls_ldap_bind_dn = ""
3565
3566# Password for the LDAP bind used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3567#auth_tls_ldap_bind_password = ""
3568
3569# Location in the DIT where the search will start used with LDAP_LOOKUP with 'tls_certificate' authentication method.
3570#auth_tls_ldap_search_base = ""
3571
3572# LDAP filter that will be used to lookup for the user
3573# with LDAP_LOOKUP with 'tls_certificate' authentication method.
3574# Can be built dynamically using the named capturing groups from the
3575# 'auth_tls_field_parse_regexp' for substitution.
3576# Example:
3577# ``auth_tls_field_parse_regexp="\w+ (?P<id>\d+)"``
3578# ``auth_tls_ldap_search_filter="(&(objectClass=person)(id={{id}}))"``
3579# 
3580#auth_tls_ldap_search_filter = ""
3581
3582# Specified what LDAP record attribute will be used as username with LDAP_LOOKUP with 'tls_certificate' authentication method.
3583#auth_tls_ldap_username_attribute = ""
3584
3585# Sets optional additional lookup filter that is performed after the
3586# user is found. This can be used for example to check whether the is member of
3587# particular group.
3588# Filter can be built dynamically from the attributes returned by the lookup.
3589# Authorization fails when search does not return any entry. If one ore more
3590# entries are returned authorization succeeds.
3591# Example:
3592# ``auth_tls_field_parse_regexp="\w+ (?P<id>\d+)"``
3593# ``ldap_search_filter="(&(objectClass=person)(id={{id}}))"``
3594# ``auth_tls_ldap_authorization_lookup_filter="(&(objectClass=group)(member=uid={{uid}},dc=example,dc=com))"``
3595# If this option is empty no additional lookup is done and just a successful user
3596# lookup is enough to authorize the user.
3597# 
3598#auth_tls_ldap_authorization_lookup_filter = ""
3599
3600# Base DN where to start the Authorization lookup. Used when 'auth_tls_ldap_authorization_lookup_filter' is set.
3601#auth_tls_ldap_authorization_search_base = ""
3602
3603# Sets up the way how the token will picked from the request
3604# COOKIE: Will use 'auth_jwt_cookie_name' cookie content parsed with
3605# 'auth_jwt_source_parse_regexp' to obtain the token content.
3606# HEADER: Will use 'auth_jwt_header_name' header value parsed with
3607# 'auth_jwt_source_parse_regexp' to obtain the token content.
3608# 
3609#auth_jwt_token_source = "HEADER"
3610
3611# Specifies name of the cookie that will be used to obtain JWT.
3612#auth_jwt_cookie_name = ""
3613
3614# Specifies name http header that will be used to obtain JWT
3615#auth_jwt_header_name = ""
3616
3617# Regular expression that will be used to parse JWT source. Expression is in Python syntax and must contain named group 'token' with capturing the token value.
3618#auth_jwt_source_parse_regexp = "(?P<token>.*)"
3619
3620# Which JWT claim will be used as username for Driverless.
3621#auth_jwt_username_claim_name = "sub"
3622
3623# Whether to verify the signature of the JWT.
3624#auth_jwt_verify = true
3625
3626# Signature algorithm that will be used to verify the signature according to RFC 7518.
3627#auth_jwt_algorithm = "HS256"
3628
3629# Specifies the secret content for HMAC or public key for RSA and DSA signature algorithms.
3630#auth_jwt_secret = ""
3631
3632# Number of seconds after JWT still can be accepted if when already expired
3633#auth_jwt_exp_leeway_seconds = 0
3634
3635# List of accepted 'aud' claims for the JWTs. When empty, anyaudience is accepted
3636#auth_jwt_required_audience = "[]"
3637
3638# Value of the 'iss' claim that JWTs need to have in order to be accepted.
3639#auth_jwt_required_issuer = ""
3640
3641# Local password file
3642# Generating a htpasswd file: see syntax below
3643# ``htpasswd -B '<location_to_place_htpasswd_file>' '<username>'``
3644# note: -B forces use of brcypt, a secure encryption method
3645#local_htpasswd_file = ""
3646
3647# Specify the name of the report.
3648#autodoc_report_name = "report"
3649
3650# AutoDoc template path. Provide the full path to your custom AutoDoc template or leave as 'default'to generate the standard AutoDoc.
3651#autodoc_template = ""
3652
3653# Location of the additional AutoDoc templates
3654#autodoc_additional_template_folder = ""
3655
3656# Specify the AutoDoc output type.
3657#autodoc_output_type = "docx"
3658
3659# Specify the type of sub-templates to use.
3660# Options are 'auto', 'docx' or  'md'.
3661#autodoc_subtemplate_type = "auto"
3662
3663# Specify the maximum number of classes in the confusion
3664# matrix.
3665#autodoc_max_cm_size = 10
3666
3667# Specify the number of top features to display in
3668# the document. setting to -1 disables this restriction.
3669#autodoc_num_features = 50
3670
3671# Specify the minimum relative importance in order
3672# for a feature to be displayed. autodoc_min_relative_importance
3673# must be a float >= 0 and <= 1.
3674#autodoc_min_relative_importance = 0.003
3675
3676# Whether to compute permutation based feature
3677# importance.
3678#autodoc_include_permutation_feature_importance = false
3679
3680# Number of permutations to make per feature when computing
3681# feature importance.
3682#autodoc_feature_importance_num_perm = 1
3683
3684# Name of the scorer to be used to calculate feature
3685# importance. Leave blank to use experiments default scorer.
3686#autodoc_feature_importance_scorer = ""
3687
3688# The autodoc_pd_max_rows configuration controls the
3689# number of rows shown for the partial dependence plots (PDP) and Shapley
3690# values summary plot in the AutoDoc. Random sampling is used for
3691# datasets with more than the autodoc_pd_max_rows limit.
3692#autodoc_pd_max_rows = 10000
3693
3694# Maximum number of seconds Partial Dependency computation
3695# can take when generating report. Set to -1 for no time limit.
3696#autodoc_pd_max_runtime = 45
3697
3698# Whether to enable fast approximation for predictions that are needed for the
3699# generation of partial dependence plots. Can help when want to create many PDP
3700# plots in short time. Amount of approximation is controlled by fast_approx_num_trees,
3701# fast_approx_do_one_fold, fast_approx_do_one_model experiment expert settings.
3702# 
3703#autodoc_pd_fast_approx = true
3704
3705# Max number of unique values for integer/real columns to be treated as categoricals (test applies to first statistical_threshold_data_size_small rows only)
3706# Similar to max_int_as_cat_uniques used for experiment, but here used to control PDP making.
3707#autodoc_pd_max_int_as_cat_uniques = 50
3708
3709# Number of standard deviations outside of the range of
3710# a column to include in partial dependence plots. This shows how the
3711# model will react to data it has not seen before.
3712#autodoc_out_of_range = 3
3713
3714# Specify the number of rows to include in PDP and ICE plot
3715# if individual rows are not specified.
3716#autodoc_num_rows = 0
3717
3718# Whether to include population stability index if
3719# experiment is binary classification/regression.
3720#autodoc_population_stability_index = false
3721
3722# Number of quantiles to use for population stability index
3723# .
3724#autodoc_population_stability_index_n_quantiles = 10
3725
3726# Whether to include population stability index for features (not just predictions) if
3727# experiment is binary classification/regression. This calculates PSI across
3728# train/validation/test for each feature to detect data drift.
3729#autodoc_feature_population_stability_index = false
3730
3731# Whether to include prediction statistics information if
3732# experiment is binary classification/regression.
3733#autodoc_prediction_stats = false
3734
3735# Number of quantiles to use for prediction statistics.
3736#autodoc_prediction_stats_n_quantiles = 20
3737
3738# Whether to include response rates information if
3739# experiment is binary classification.
3740#autodoc_response_rate = false
3741
3742# Number of quantiles to use for response rates information
3743# .
3744#autodoc_response_rate_n_quantiles = 10
3745
3746# Whether to show the Gini Plot.
3747#autodoc_gini_plot = false
3748
3749# Show Shapley values results in the AutoDoc.
3750#autodoc_enable_shapley_values = true
3751
3752# The number feature in a KLIME global GLM coefficients
3753# table. Must be an integer greater than 0 or -1. To
3754# show all features set to -1.
3755#autodoc_global_klime_num_features = 10
3756
3757# Set the number of KLIME global GLM coefficients tables. Set
3758# to 1 to show one table with coefficients sorted by absolute
3759# value. Set to 2 to two tables one with the top positive
3760# coefficients and one with the top negative coefficients.
3761#autodoc_global_klime_num_tables = 1
3762
3763# Number of features to be show in data summary. Value
3764# must be an integer. Values lower than 1, f.e. 0 or -1, indicate that
3765# all columns should be shown.
3766#autodoc_data_summary_col_num = -1
3767
3768# List of percentile values to include in the numeric data summary table.
3769# Available percentiles are: 1, 25, 50, 75, 99. Default is [].
3770# Example: [1, 25, 50, 75, 99] to show all computed percentiles.
3771#autodoc_data_numeric_percentiles = "[1, 99]"
3772
3773# Whether to show all config settings. If False, only
3774# the changed settings (config overrides) are listed, otherwise all
3775# settings are listed.
3776#autodoc_list_all_config_settings = false
3777
3778# Line length of the keras model architecture summary. Must
3779# be an integer greater than 0 or -1. To use the default line length set
3780# value -1.
3781#autodoc_keras_summary_line_length = -1
3782
3783# Maximum number of lines shown for advanced transformer
3784# architecture in the Feature section. Note that the full architecture
3785# can be found in the Appendix.
3786#autodoc_transformer_architecture_max_lines = 30
3787
3788# Show full NLP/Image transformer architecture in
3789# the Appendix.
3790#autodoc_full_architecture_in_appendix = false
3791
3792# Specify whether to show the full glm coefficient
3793# table(s) in the appendix. coef_table_appendix_results_table must be
3794# a boolean: True to show tables in appendix, False to not show them
3795# .
3796#autodoc_coef_table_appendix_results_table = false
3797
3798# Set the number of models for which a glm coefficients
3799# table is shown in the AutoDoc. coef_table_num_models must
3800# be -1 or an integer >= 1 (-1 shows all models).
3801#autodoc_coef_table_num_models = 1
3802
3803# Set the number of folds per model for which a glm
3804# coefficients table is shown in the AutoDoc.
3805# coef_table_num_folds must be -1 or an integer >= 1
3806# (-1 shows all folds per model).
3807#autodoc_coef_table_num_folds = -1
3808
3809# Set the number of coefficients to show within a glm
3810# coefficients table in the AutoDoc. coef_table_num_coef, controls
3811# the number of rows shown in a glm table and must be -1 or
3812# an integer >= 1 (-1 shows all coefficients).
3813#autodoc_coef_table_num_coef = 50
3814
3815# Set the number of classes to show within a glm
3816# coefficients table in the AutoDoc. coef_table_num_classes controls
3817# the number of class-columns shown in a glm table and must be -1 or
3818# an integer >= 4 (-1 shows all classes).
3819#autodoc_coef_table_num_classes = 9
3820
3821# When histogram plots are available: The number of
3822# top (default 10) features for which to show histograms.
3823#autodoc_num_histogram_plots = 10
3824
3825#pdp_max_threads = -1
3826
3827# If True, will force AutoDoc to run in only the main server, not on remote workers in case of a multi-node setup
3828#autodoc_force_singlenode = false
3829
3830# Whether to include images of sub pipelines for ensemble models
3831#autodoc_include_ensemble_sub_pipelines = false
3832
3833# Whether to include tree structure of sub pipelines for ensemble models
3834#autodoc_include_ensemble_trees = false
3835
3836# AWS access key to fetch custom AutoDoc template from S3.
3837#autodoc_s3_access_key = ""
3838
3839# AWS secret key to fetch custom AutoDoc template from S3.
3840#autodoc_s3_secret_key = ""
3841
3842# AWS session token to fetch custom AutoDoc template from S3.
3843#autodoc_s3_session_token = ""
3844
3845# IP address and port of autoviz process.
3846#vis_server_ip = "127.0.0.1"
3847
3848# IP and port of autoviz process.
3849#vis_server_port = 12346
3850
3851# Maximum number of columns autoviz will work with.
3852# If dataset has more columns than this number,
3853# autoviz will pick columns randomly, prioritizing numerical columns
3854# 
3855#autoviz_max_num_columns = 50
3856
3857#autoviz_max_aggregated_rows = 500
3858
3859# When enabled, experiment will try to use feature transformations recommended by Autoviz
3860#autoviz_enable_recommendations = true
3861
3862# Key-value pairs of column names, and transformations that Autoviz recommended
3863#autoviz_recommended_transformation = "{}"
3864
3865#autoviz_enable_transformer_acceptance_tests = false
3866
3867# Enable custom recipes.
3868#enable_custom_recipes = true
3869
3870# Enable uploading of custom recipes from local file system.
3871#enable_custom_recipes_upload = true
3872
3873# Enable downloading of custom recipes from external URL.
3874#enable_custom_recipes_from_url = true
3875
3876# Enable upload recipe files to be zip, containing custom recipe(s) in root folder,
3877# while any other code or auxiliary files must be in some sub-folder.
3878# 
3879#enable_custom_recipes_from_zip = true
3880
3881#must_have_custom_transformers = false
3882
3883#must_have_custom_transformers_2 = false
3884
3885#must_have_custom_transformers_3 = false
3886
3887#must_have_custom_models = false
3888
3889#must_have_custom_scorers = false
3890
3891# When set to true, it enable downloading custom recipes third party packages from the web, otherwise the python environment will be transferred from main worker.
3892#enable_recreate_custom_recipes_env = true
3893
3894#extra_migration_custom_recipes_missing_modules = false
3895
3896# Include custom recipes in default inclusion lists (warning: enables all custom recipes)
3897#include_custom_recipes_by_default = false
3898
3899#force_include_custom_recipes_by_default = false
3900
3901# Whether to enable use of H2O recipe server.  In some casees, recipe server (started at DAI startup) may enter into an unstable state, and this might affect other experiments.  Then one can avoid triggering use of the recipe server by setting this to false.
3902#enable_h2o_recipes = true
3903
3904# URL of H2O instance for use by transformers, models, or scorers.
3905#h2o_recipes_url = "None"
3906
3907# IP of H2O instance for use by transformers, models, or scorers.
3908#h2o_recipes_ip = "None"
3909
3910# Port of H2O instance for use by transformers, models, or scorers. No other instances must be on that port or on next port.
3911#h2o_recipes_port = 50361
3912
3913# Name of H2O instance for use by transformers, models, or scorers.
3914#h2o_recipes_name = "None"
3915
3916# Number of threads for H2O instance for use by transformers, models, or scorers. -1 for all.
3917#h2o_recipes_nthreads = 8
3918
3919# Log Level of H2O instance for use by transformers, models, or scorers.
3920#h2o_recipes_log_level = "None"
3921
3922# Maximum memory size of H2O instance for use by transformers, models, or scorers.
3923#h2o_recipes_max_mem_size = "None"
3924
3925# Minimum memory size of H2O instance for use by transformers, models, or scorers.
3926#h2o_recipes_min_mem_size = "None"
3927
3928# General user overrides of kwargs dict to pass to h2o.init() for recipe server.
3929#h2o_recipes_kwargs = "{}"
3930
3931# Number of trials to give h2o-3 recipe server to start.
3932#h2o_recipes_start_trials = 5
3933
3934# Number of seconds to sleep before starting h2o-3 recipe server.
3935#h2o_recipes_start_sleep0 = 1
3936
3937# Number of seconds to sleep between trials of starting h2o-3 recipe server.
3938#h2o_recipes_start_sleep = 5
3939
3940# Lock source for recipes to a specific github repo.
3941# If True then all custom recipes must come from the repo specified in setting: custom_recipes_git_repo
3942#custom_recipes_lock_to_git_repo = false
3943
3944# If custom_recipes_lock_to_git_repo is set to True, only this repo can be used to pull recipes from
3945#custom_recipes_git_repo = "https://github.com/h2oai/driverlessai-recipes"
3946
3947# Branch constraint for recipe source repo. Any branch allowed if unset or None
3948#custom_recipes_git_branch = "None"
3949
3950#custom_recipes_excluded_filenames_from_repo_download = "[]"
3951
3952#allow_old_recipes_use_datadir_as_data_directory = true
3953
3954# Internal helper to allow memory of if changed recipe
3955#last_recipe = ""
3956
3957# Dictionary to control recipes for each experiment and particular custom recipes.
3958# E.g. if inserting into the GUI as any toml string, can use:
3959# ""recipe_dict="{'key1': 2, 'key2': 'value2'}"""
3960# E.g. if putting into config.toml as a dict, can use:
3961# recipe_dict="{'key1': 2, 'key2': 'value2'}"
3962# 
3963#recipe_dict = "{}"
3964
3965# Dictionary to control some mutation parameters.
3966# E.g. if inserting into the GUI as any toml string, can use:
3967# ""mutation_dict="{'key1': 2, 'key2': 'value2'}"""
3968# E.g. if putting into config.toml as a dict, can use:
3969# mutation_dict="{'key1': 2, 'key2': 'value2'}"
3970# 
3971#mutation_dict = "{}"
3972
3973#enable_custom_transformers = true
3974
3975#enable_custom_pretransformers = true
3976
3977#enable_custom_models = true
3978
3979#enable_custom_scorers = true
3980
3981#enable_custom_datas = true
3982
3983#enable_custom_explainers = true
3984
3985#enable_custom_individuals = true
3986
3987#enable_connectors_recipes = true
3988
3989# Whether to validate recipe names provided in included lists, like included_models,
3990# or (if False) whether to just log warning to server logs and ignore any invalid names of recipes.
3991# 
3992#raise_on_invalid_included_list = false
3993
3994#contrib_relative_directory = "contrib"
3995
3996# location of custom recipes packages installed (relative to data_directory)
3997# We will try to install packages dynamically, but can also do (before or after server started):
3998# (inside docker running docker instance if running docker, or as user server is running as (e.g. dai user) if deb/tar native installation:
3999# PYTHONPATH=<full tmp dir>/<contrib_env_relative_directory>/lib/python3.6/site-packages/ <path to dai>dai-env.sh python -m pip install --prefix=<full tmp dir>/<contrib_env_relative_directory> <packagename> --upgrade --upgrade-strategy only-if-needed --log-file pip_log_file.log
4000# where <path to dai> is /opt/h2oai/dai/ for native rpm/deb installation
4001# Note can also install wheel files if <packagename> is name of wheel file or archive.
4002# 
4003#contrib_env_relative_directory = "contrib/env"
4004
4005# List of package versions to ignore.  Useful when small version change but likely to function still with old package version.
4006# 
4007#ignore_package_version = "[]"
4008
4009# List of package versions to remove if encounter conflict.  Useful when want new version of package, and old recipes likely to function still.
4010# 
4011#clobber_package_version = "['h2o_featurestore']"
4012
4013# List of package versions to remove if encounter conflict.
4014# Useful when want new version of package, and old recipes likely to function still.
4015# Also useful when do not need to use old versions of recipes even if they would no longer function.
4016# 
4017#swap_package_version = "{}"
4018
4019# If user uploads recipe with changes to package versions,
4020# allow upgrade of package versions.
4021# If DAI protected packages are attempted to be changed, can try using pip_install_options toml with ['--no-deps'].
4022# Or to ignore entirely DAI versions of packages, can try using pip_install_options toml with ['--ignore-installed'].
4023# Any other experiments relying on recipes with such packages will be affected, use with caution.
4024#allow_version_change_user_packages = false
4025
4026# pip install retry for call to pip.  Sometimes need to try twice
4027#pip_install_overall_retries = 2
4028
4029# pip install verbosity level (number of -v's given to pip, up to 3
4030#pip_install_verbosity = 2
4031
4032# pip install timeout in seconds, Sometimes internet issues would mean want to fail faster
4033#pip_install_timeout = 15
4034
4035# pip install retry count
4036#pip_install_retries = 5
4037
4038# Whether to use DAI constraint file to help pip handle versions.  pip can make mistakes and try to install updated packages for no reason.
4039#pip_install_use_constraint = true
4040
4041# pip install options: string of list of other options, e.g. ['--proxy', 'http://user:password@proxyserver:port']
4042#pip_install_options = "[]"
4043
4044# Whether to enable basic acceptance testing.  Tests if can pickle the state, etc.
4045#enable_basic_acceptance_tests = true
4046
4047# Whether acceptance tests should run for custom genes / models / scorers / etc.
4048#enable_acceptance_tests = true
4049
4050#acceptance_tests_use_weather_data = false
4051
4052#acceptance_tests_mojo_benchmark = false
4053
4054# Whether to skip disabled recipes (True) or fail and show GUI message (False).
4055#skip_disabled_recipes = false
4056
4057# Minutes to wait until a recipe's acceptance testing is aborted.  A recipe is rejected if acceptance
4058# testing is enabled and times out.
4059# One may also set timeout for a specific recipe by setting the class's staticmethod function called
4060# acceptance_test_timeout to return number of minutes to wait until timeout doing acceptance testing.
4061# This timeout does not include the time to install required packages.
4062# 
4063#acceptance_test_timeout = 20.0
4064
4065# Whether to re-check recipes during server startup (if per_user_directories == false)
4066# or during user login (if per_user_directories == true).
4067# If any inconsistency develops, the bad recipe will be removed during re-doing acceptance testing.  This process
4068# can make start-up take alot longer for many recipes, but in LTS releases the risk of recipes becoming out of date
4069# is low.  If set to false, will disable acceptance re-testing during sever start but note that previews or experiments may fail if those inconsistent recipes are used.
4070# Such inconsistencies can occur when API changes for recipes or more aggressive acceptance tests are performed.
4071# 
4072#contrib_reload_and_recheck_server_start = true
4073
4074# Whether to at least install packages required for recipes during server startup (if per_user_directories == false)
4075# or during user login (if per_user_directories == true).
4076# Important to keep True so any later use of recipes (that have global packages installed) will work.
4077# 
4078#contrib_install_packages_server_start = true
4079
4080# Whether to re-check recipes after uploaded from main server to worker in multinode.
4081# Expensive for every task that has recipes to do this.
4082#contrib_reload_and_recheck_worker_tasks = false
4083
4084#data_recipe_isolate = true
4085
4086# Space-separated string list of URLs for recipes that are loaded at user login time
4087#server_recipe_url = ""
4088
4089#num_rows_acceptance_test_custom_transformer = 200
4090
4091#num_rows_acceptance_test_custom_model = 100
4092
4093# List of recipes (per dict key by type) that are applicable for given experiment. This is especially relevant
4094# for situations such as new `experiment with same params` where the user should be able to
4095# use the same recipe versions as the parent experiment if he/she wishes to.
4096# 
4097#recipe_activation = "{'transformers': [], 'models': [], 'scorers': [], 'data': [], 'individuals': []}"
4098
4099# File System Support
4100# upload : standard upload feature
4101# file : local file system/server file system
4102# hdfs : Hadoop file system, remember to configure the HDFS config folder path and keytab below
4103# dtap : Blue Data Tap file system, remember to configure the DTap section below
4104# s3 : Amazon S3, optionally configure secret and access key below
4105# gcs : Google Cloud Storage, remember to configure gcs_path_to_service_account_json below
4106# gbq : Google Big Query, remember to configure gcs_path_to_service_account_json below
4107# minio : Minio Cloud Storage, remember to configure secret and access key below
4108# snow : Snowflake Data Warehouse, remember to configure Snowflake credentials below (account name, username, password)
4109# kdb : KDB+ Time Series Database, remember to configure KDB credentials below (hostname and port, optionally: username, password, classpath, and jvm_args)
4110# azrbs : Azure Blob Storage, remember to configure Azure credentials below (account name, account key)
4111# jdbc: JDBC Connector, remember to configure JDBC below. (jdbc_app_configs)
4112# hive: Hive Connector, remember to configure Hive below. (hive_app_configs)
4113# recipe_file: Custom recipe file upload
4114# recipe_url: Custom recipe upload via url
4115# h2o_drive: H2O Drive, remember to configure `h2o_drive_endpoint_url` below
4116# feature_store: Feature Store, remember to configure feature_store_endpoint_url below
4117# databricks: Databricks connector.
4118# delta_table: Delta Table connector.
4119# 
4120#enabled_file_systems = "['upload', 'file', 'hdfs', 's3', 'recipe_file', 'recipe_url']"
4121
4122#max_files_listed = 100
4123
4124# The option disable access to DAI data_directory from file browser
4125#file_hide_data_directory = true
4126
4127# Enable usage of path filters
4128#file_path_filtering_enabled = false
4129
4130# List of absolute path prefixes to restrict access to in file system browser.
4131# First add the following environment variable to your command line to enable this feature:
4132# file_path_filtering_enabled=true
4133# This feature can be used in the following ways (using specific path or using logged user's directory):
4134# file_path_filter_include="['/data/stage']"
4135# file_path_filter_include="['/data/stage','/data/prod']"
4136# file_path_filter_include=/home/{{DAI_USERNAME}}/
4137# file_path_filter_include="['/home/{{DAI_USERNAME}}/','/data/stage','/data/prod']"
4138# 
4139#file_path_filter_include = "[]"
4140
4141# (Required) HDFS connector
4142# Specify HDFS Auth Type, allowed options are:
4143# noauth : (default) No authentication needed
4144# principal : Authenticate with HDFS with a principal user (DEPRECTATED - use `keytab` auth type)
4145# keytab : Authenticate with a Key tab (recommended). If running
4146# DAI as a service, then the Kerberos keytab needs to
4147# be owned by the DAI user.
4148# keytabimpersonation : Login with impersonation using a keytab
4149#hdfs_auth_type = "noauth"
4150
4151# Kerberos app principal user. Required when hdfs_auth_type='keytab'; recommended otherwise.
4152#hdfs_app_principal_user = ""
4153
4154# Deprecated - Do Not Use, login user is taken from the user name from login
4155#hdfs_app_login_user = ""
4156
4157# JVM args for HDFS distributions, provide args seperate by space
4158# -Djava.security.krb5.conf=<path>/krb5.conf
4159# -Dsun.security.krb5.debug=True
4160# -Dlog4j.configuration=file:///<path>log4j.properties
4161#hdfs_app_jvm_args = ""
4162
4163# hdfs class path
4164#hdfs_app_classpath = ""
4165
4166# List of supported DFS schemas. Ex. "['hdfs://', 'maprfs://', 'swift://']"
4167# Supported schemas list is used as an initial check to ensure valid input to connector
4168# 
4169#hdfs_app_supported_schemes = "['hdfs://', 'maprfs://', 'swift://']"
4170
4171# Maximum number of files viewable in connector ui. Set to larger number to view more files
4172#hdfs_max_files_listed = 100
4173
4174# Starting HDFS path displayed in UI HDFS browser
4175#hdfs_init_path = "hdfs://"
4176
4177# Starting HDFS path for the artifacts upload operations
4178#hdfs_upload_init_path = "hdfs://"
4179
4180# Enables the multi-user mode for MapR integration, which allows to have MapR ticket per user.
4181#enable_mapr_multi_user_mode = false
4182
4183# Blue Data DTap connector settings are similar to HDFS connector settings.
4184# Specify DTap Auth Type, allowed options are:
4185# noauth : No authentication needed
4186# principal : Authenticate with DTab with a principal user
4187# keytab : Authenticate with a Key tab (recommended). If running
4188# DAI as a service, then the Kerberos keytab needs to
4189# be owned by the DAI user.
4190# keytabimpersonation : Login with impersonation using a keytab
4191# NOTE: "hdfs_app_classpath" and "core_site_xml_path" are both required to be set for DTap connector
4192#dtap_auth_type = "noauth"
4193
4194# Dtap (HDFS) config folder path , can contain multiple config files
4195#dtap_config_path = ""
4196
4197# Path of the principal key tab file, dtap_key_tab_path is deprecated. Please use dtap_keytab_path
4198#dtap_key_tab_path = ""
4199
4200# Path of the principal key tab file
4201#dtap_keytab_path = ""
4202
4203# Kerberos app principal user (recommended)
4204#dtap_app_principal_user = ""
4205
4206# Specify the user id of the current user here as user@realm
4207#dtap_app_login_user = ""
4208
4209# JVM args for DTap distributions, provide args seperate by space
4210#dtap_app_jvm_args = ""
4211
4212# DTap (HDFS) class path. NOTE: set 'hdfs_app_classpath' also
4213#dtap_app_classpath = ""
4214
4215# Starting DTAP path displayed in UI DTAP browser
4216#dtap_init_path = "dtap://"
4217
4218# S3 Connector credentials
4219#aws_access_key_id = ""
4220
4221# S3 Connector credentials
4222#aws_secret_access_key = 
4223
4224# S3 Connector credentials
4225#aws_role_arn = ""
4226
4227# What region to use when none is specified in the s3 url.
4228# Ignored when aws_s3_endpoint_url is set.
4229# 
4230#aws_default_region = ""
4231
4232# Sets endpoint URL that will be used to access S3.
4233#aws_s3_endpoint_url = ""
4234
4235# If set to true S3 Connector will try to to obtain credentials associated with
4236# the role attached to the EC2 instance.
4237#aws_use_ec2_role_credentials = false
4238
4239# Starting S3 path displayed in UI S3 browser
4240#s3_init_path = "s3://"
4241
4242# S3 Connector will skip cert verification if this is set to true, (mostly used for S3-like connectors, e.g. Ceph)
4243#s3_skip_cert_verification = false
4244
4245# path/to/cert/bundle.pem - A filename of the CA cert bundle to use for the S3 connector
4246#s3_connector_cert_location = ""
4247
4248# GCS Connector credentials
4249# example (suggested) -- '/licenses/my_service_account_json.json'
4250#gcs_path_to_service_account_json = ""
4251
4252# GCS Connector service account credentials in JSON, this configuration takes precedence over gcs_path_to_service_account_json.
4253#gcs_service_account_json = "{}"
4254
4255# GCS Connector impersonated account
4256#gbq_access_impersonated_account = ""
4257
4258# Starting GCS path displayed in UI GCS browser
4259#gcs_init_path = "gs://"
4260
4261# Space-seperated list of OAuth2 scopes for the access token used to authenticate in Google Cloud Storage
4262#gcs_access_token_scopes = ""
4263
4264# When ``google_cloud_use_oauth`` is enabled, Google Cloud client cannot automatically infer the default project, thus it must be explicitly specified
4265#gcs_default_project_id = ""
4266
4267# Space-seperated list of OAuth2 scopes for the access token used to authenticate in Google BigQuery
4268#gbq_access_token_scopes = ""
4269
4270# By default the DriverlessAI Google Cloud Storage and BigQuery connectors are using service account file to retrieve authentication credentials.When enabled, the Storage and BigQuery connectors will use OAuth2 user access tokens to authenticate in Google Cloud instead.
4271#google_cloud_use_oauth = false
4272
4273# Minio Connector credentials
4274#minio_endpoint_url = ""
4275
4276# Minio Connector credentials
4277#minio_access_key_id = ""
4278
4279# Minio Connector credentials
4280#minio_secret_access_key = 
4281
4282# Minio Connector will skip cert verification if this is set to true
4283#minio_skip_cert_verification = false
4284
4285# path/to/cert/bundle.pem - A filename of the CA cert bundle to use for the Minio connector
4286#minio_connector_cert_location = ""
4287
4288# Starting Minio path displayed in UI Minio browser
4289#minio_init_path = "/"
4290
4291# H2O Drive server endpoint URL
4292#h2o_drive_endpoint_url = ""
4293
4294# Space seperated list of OpenID scopes for the access token used by the H2O Drive connector
4295#h2o_drive_access_token_scopes = ""
4296
4297# Maximum duration (in seconds) for a session with the H2O Drive
4298#h2o_drive_session_duration = 10800
4299
4300# Recommended Provide: url, user, password
4301# Optionally Provide: account, user, password
4302# Example URL: https://<snowflake_account>.<region>.snowflakecomputing.com
4303# Snowflake Connector credentials
4304#snowflake_url = ""
4305
4306# Snowflake Connector credentials
4307#snowflake_user = ""
4308
4309# Snowflake Connector credentials
4310#snowflake_password = ""
4311
4312# Snowflake Connector credentials
4313#snowflake_account = ""
4314
4315# Snowflake Connector authenticator, can be used when Snowflake is using native SSO with Okta.
4316# E.g.: snowflake_authenticator = "https://<okta_account_name>.okta.com"
4317# 
4318#snowflake_authenticator = ""
4319
4320# Keycloak endpoint for retrieving external IdP tokens for Snowflake. (https://www.keycloak.org/docs/latest/server_admin/#retrieving-external-idp-tokens)
4321#snowflake_keycloak_broker_token_endpoint = ""
4322
4323# Token type that should be used from the response from Keycloak endpoint for retrieving external IdP tokens for Snowflake. See `snowflake_keycloak_broker_token_endpoint`.
4324#snowflake_keycloak_broker_token_type = "access_token"
4325
4326# ID of the OAuth client configured in H2O Secure Store for authentication with Snowflake.
4327#snowflake_h2o_secure_store_oauth_client_id = ""
4328
4329# Snowflake hostname to connect to when running Driverless AI in Snowpark Container Services.
4330#snowflake_host = ""
4331
4332# Snowflake port to connect to when running Driverless AI in Snowpark Container Services.
4333#snowflake_port = ""
4334
4335# Snowflake filepath that stores the token of the session, when running
4336# Driverless AI in Snowpark Container Services.
4337# E.g.: snowflake_session_token_filepath = "/snowflake/session/token"
4338# 
4339#snowflake_session_token_filepath = ""
4340
4341# Setting to allow or disallow Snowflake connector from using Snowflake stages during queries.
4342# True - will permit the connector to use stages and generally improves performance. However,
4343# if the Snowflake user does not have permission to create/use stages will end in errors.
4344# False - will prevent the connector from using stages, thus Snowflake users without permission
4345# to create/use stages will have successful queries, however may significantly negatively impact
4346# query performance.
4347# 
4348#snowflake_allow_stages = true
4349
4350# Sets the file format to be used when Snowflake stages are enabled for
4351# query execution.
4352# 
4353#snowflake_stages_file_format = "CSV"
4354
4355# Sets the upper size limit (in bytes) of each file to be generated when
4356# Snowflake stages are enabled for query execution.
4357# 
4358#snowflake_stages_max_file_size = 16777216
4359
4360# Optional schema name where temporary Snowflake stages should be created.
4361# If set, the Snowflake connector creates all temporary stages in this schema instead of the table’s schema.
4362# Requirements:
4363# - The Snowflake user/role must have permission to create and use stages
4364# in the specified schema.
4365# - If unset, the Snowflake connector creates stages in the table’s schema
4366# (default Snowflake behavior).
4367# Applies only when 'snowflake_allow_stages' is True
4368# 
4369#snowflake_staging_schema = ""
4370
4371# Sets the number of rows to be fetched by Snowflake cursor at one time. This is only used if setting
4372# `snowflake_allow_stages` is set to False, may help with performance depending on the type and size
4373# of data being queried.
4374# 
4375#snowflake_batch_size = 10000
4376
4377# KDB Connector credentials
4378#kdb_user = ""
4379
4380# KDB Connector credentials
4381#kdb_password = ""
4382
4383# KDB Connector credentials
4384#kdb_hostname = ""
4385
4386# KDB Connector credentials
4387#kdb_port = ""
4388
4389# KDB Connector credentials
4390#kdb_app_classpath = ""
4391
4392# KDB Connector credentials
4393#kdb_app_jvm_args = ""
4394
4395# Account name for Azure Blob Store Connector
4396#azure_blob_account_name = ""
4397
4398# Account key for Azure Blob Store Connector
4399#azure_blob_account_key = 
4400
4401# Connection string for Azure Blob Store Connector
4402#azure_connection_string = 
4403
4404# SAS token for Azure Blob Store Connector
4405#azure_sas_token = 
4406
4407# Starting Azure blob store path displayed in UI Azure blob store browser
4408#azure_blob_init_path = "https://"
4409
4410# When enabled, Azure Blob Store Connector will use access token derived  from the credentials received on login with OpenID Connect.
4411#azure_blob_use_access_token = false
4412
4413# Configures the scopes for the access token used by Azure Blob Store  Connector when the azure_blob_use_access_token us enabled. (space separated list)
4414#azure_blob_use_access_token_scopes = "https://storage.azure.com/.default"
4415
4416# Sets the source of the access token for accessing the Azure bob store
4417# KEYCLOAK: Will exchange the session access token for the federated
4418# refresh token with Keycloak and use it to obtain the access token
4419# directly with the Azure AD.
4420# SESSION: Will use the access token derived  from the credentials
4421# received on login with OpenID Connect.
4422# 
4423#azure_blob_use_access_token_source = "SESSION"
4424
4425# Application (client) ID registered on Azure AD when the KEYCLOAK source is enabled.
4426#azure_blob_keycloak_aad_client_id = ""
4427
4428# Application (client) secret when the KEYCLOAK source is enabled.
4429#azure_blob_keycloak_aad_client_secret = ""
4430
4431# A URL that identifies a token authority. It should be of the format https://login.microsoftonline.com/your_tenant
4432#azure_blob_keycloak_aad_auth_uri = ""
4433
4434# Keycloak Endpoint for Retrieving External IDP Tokens (https://www.keycloak.org/docs/latest/server_admin/#retrieving-external-idp-tokens)
4435#azure_blob_keycloak_broker_token_endpoint = ""
4436
4437# (DEPRECATED, use azure_blob_use_access_token and
4438# azure_blob_use_access_token_source="KEYCLOAK" instead.)
4439# (When enabled only DEPRECATED options azure_ad_client_id,
4440# azure_ad_client_secret, azure_ad_auth_uri and
4441# azure_keycloak_idp_token_endpoint will be effective)
4442# This is equivalent to setting
4443# azure_blob_use_access_token_source = "KEYCLOAK"
4444# and setting azure_blob_keycloak_aad_client_id,
4445# azure_blob_keycloak_aad_client_secret,
4446# azure_blob_keycloak_aad_auth_uri and
4447# azure_blob_keycloak_broker_token_endpoint
4448# options.
4449# )
4450# If true, enable the Azure Blob Storage Connector to use Azure AD tokens
4451# obtained from the Keycloak for auth.
4452# 
4453#azure_enable_token_auth_aad = false
4454
4455# (DEPRECATED, use azure_blob_keycloak_aad_client_id instead.) Application (client) ID registered on Azure AD
4456#azure_ad_client_id = ""
4457
4458# (DEPRECATED, use azure_blob_keycloak_aad_client_secret instead.) Application Client Secret
4459#azure_ad_client_secret = ""
4460
4461# (DEPRECATED, use azure_blob_keycloak_aad_auth_uri instead)A URL that identifies a token authority. It should be of the format https://login.microsoftonline.com/your_tenant
4462#azure_ad_auth_uri = ""
4463
4464# (DEPRECATED, use azure_blob_use_access_token_scopes instead.)Scopes requested to access a protected API (a resource).
4465#azure_ad_scopes = "[]"
4466
4467# (DEPRECATED, use azure_blob_keycloak_broker_token_endpoint instead.)Keycloak Endpoint for Retrieving External IDP Tokens (https://www.keycloak.org/docs/latest/server_admin/#retrieving-external-idp-tokens)
4468#azure_keycloak_idp_token_endpoint = ""
4469
4470# ID of the application's Microsoft Entra tenant, also called its 'directory' ID.
4471# This is used for Azure Workload Identity.
4472# 
4473#azure_workload_identity_tenant_id = ""
4474
4475# The client ID of a Microsoft Entra app registration.
4476# This is used for Azure Workload Identity.
4477# 
4478#azure_workload_identity_client_id = ""
4479
4480# The path to a file containing a Kubernetes service account token that authenticates the identity.
4481# This is used for Azure Workload Identity.
4482# 
4483#azure_workload_identity_token_file_path = ""
4484
4485# Desired scopes for the access token when the Databricks connector is using
4486# Azure Workflow Identity authentication. At least one scope should be specified.
4487# For more information about scopes, see https://learn.microsoft.com/entra/identity-platform/scopes-oidc.
4488# 
4489#databricks_azure_workload_identity_scopes = ""
4490
4491# Desired scopes for the access token when the Azure Blob connector is using
4492# Azure Workflow Identity authentication. At least one scope should be specified.
4493# For more information about scopes, see https://learn.microsoft.com/entra/identity-platform/scopes-oidc.
4494# 
4495#azure_blob_workload_identity_scopes = ""
4496
4497# Name of the Databricks workspace instance. Please refer
4498# https://learn.microsoft.com/en-us/azure/databricks/workspace/workspace-details
4499# on how to obtains the name of your Databricks workspace instance.
4500# 
4501#databricks_workspace_instance_name = ""
4502
4503# Sets the number of rows to be fetched by the Databricks cursor at one time.
4504#databricks_batch_size = 100000
4505
4506# Configuration for JDBC Connector.
4507# JSON/Dictionary String with multiple keys.
4508# Format as a single line without using carriage returns (the following example is formatted for readability).
4509# Use triple quotations to ensure that the text is read as a single string.
4510# Example:
4511# '{
4512# "postgres": {
4513# "url": "jdbc:postgresql://ip address:port/postgres",
4514# "jarpath": "/path/to/postgres_driver.jar",
4515# "classpath": "org.postgresql.Driver"
4516# },
4517# "mysql": {
4518# "url":"mysql connection string",
4519# "jarpath": "/path/to/mysql_driver.jar",
4520# "classpath": "my.sql.classpath.Driver"
4521# }
4522# }'
4523# 
4524#jdbc_app_configs = "{}"
4525
4526# extra jvm args for jdbc connector
4527#jdbc_app_jvm_args = "-Xmx4g"
4528
4529# alternative classpath for jdbc connector
4530#jdbc_app_classpath = ""
4531
4532# Configuration for Hive Connector.
4533# Note that inputs are similar to configuring HDFS connectivity.
4534# important keys:
4535# * hive_conf_path - path to hive configuration, may have multiple files. typically: hive-site.xml, hdfs-site.xml, etc
4536# * auth_type - one of `noauth`, `keytab`, `keytabimpersonation` for kerberos authentication
4537# * keytab_path - path to the kerberos keytab to use for authentication, can be "" if using `noauth` auth_type
4538# * principal_user - Kerberos app principal user. Required when using auth_type `keytab` or `keytabimpersonation`
4539# JSON/Dictionary String with multiple keys. Example:
4540# '{
4541# "hive_connection_1": {
4542# "hive_conf_path": "/path/to/hive/conf",
4543# "auth_type": "one of ['noauth', 'keytab', 'keytabimpersonation']",
4544# "keytab_path": "/path/to/<filename>.keytab",
4545# "principal_user": "hive/localhost@EXAMPLE.COM",
4546# },
4547# "hive_connection_2": {
4548# "hive_conf_path": "/path/to/hive/conf_2",
4549# "auth_type": "one of ['noauth', 'keytab', 'keytabimpersonation']",
4550# "keytab_path": "/path/to/<filename_2>.keytab",
4551# "principal_user": "my_user/localhost@EXAMPLE.COM",
4552# }
4553# }'
4554# 
4555#hive_app_configs = "{}"
4556
4557# Extra jvm args for hive connector
4558#hive_app_jvm_args = "-Xmx4g"
4559
4560# Alternative classpath for hive connector. Can be used to add additional jar files to classpath.
4561#hive_app_classpath = ""
4562
4563# extra JVM args for the Delta Table connector.
4564#delta_table_app_jvm_args = "-Xmx4g"
4565
4566# Alternative Java classpath for the Delta Table connector
4567#delta_table_app_classpath = ""
4568
4569# Replace all the downloads on the experiment page to exports and allow users to push to the artifact store configured with artifacts_store
4570#enable_artifacts_upload = false
4571
4572# Artifacts store.
4573# file_system: stores artifacts on a file system directory denoted by artifacts_file_system_directory.
4574# s3: stores artifacts to S3 bucket.
4575# bitbucket: stores data into Bitbucket repository.
4576# azure: stores data into Azure Blob Store.
4577# hdfs: stores data into a Hadoop distributed file system location.
4578# 
4579#artifacts_store = "file_system"
4580
4581# Decide whether to skip cert verification for Bitbucket when using a repo with HTTPS
4582#bitbucket_skip_cert_verification = false
4583
4584# Local temporary directory to clone artifacts to, relative to data_directory
4585#bitbucket_tmp_relative_dir = "local_git_tmp"
4586
4587# When enabled, .gitignore rules in the target Bitbucket repository are honoured during artifact staging. Disabled by default to preserve pre-1.x dulwich behaviour where artifacts were staged unconditionally regardless of .gitignore patterns.
4588#bitbucket_respect_gitignore = false
4589
4590# File system location where artifacts will be copied in case artifacts_store is set to file_system
4591#artifacts_file_system_directory = "tmp"
4592
4593# AWS S3 bucket used for experiment artifact export.
4594#artifacts_s3_bucket = ""
4595
4596# Azure Blob Store credentials used for experiment artifact export
4597#artifacts_azure_blob_account_name = ""
4598
4599# Azure Blob Store credentials used for experiment artifact export
4600#artifacts_azure_blob_account_key = 
4601
4602# Azure Blob Store connection string used for experiment artifact export
4603#artifacts_azure_connection_string = 
4604
4605# Azure Blob Store SAS token used for experiment artifact export
4606#artifacts_azure_sas_token = 
4607
4608# Git auth user
4609#artifacts_git_user = "git"
4610
4611# Git auth password
4612#artifacts_git_password = ""
4613
4614# Git repo where artifacts will be pushed upon and upload
4615#artifacts_git_repo = ""
4616
4617# Git branch on the remote repo where artifacts are pushed
4618#artifacts_git_branch = "dev"
4619
4620# File location for the ssh private key used for git authentication
4621#artifacts_git_ssh_private_key_file_location = ""
4622
4623# Feature Store server endpoint URL
4624#feature_store_endpoint_url = ""
4625
4626# Enable TLS communication between DAI and the Feature Store server
4627#feature_store_enable_tls = false
4628
4629# Path to the client certificate to authenticate with the Feature Store server. This is only effective when feature_store_enable_tls=True.
4630#feature_store_tls_cert_path = ""
4631
4632# A list of access token scopes used by the Feature Store connector to authenticate. (Space separate list)
4633#feature_store_access_token_scopes = ""
4634
4635# When defined, will be used as an alternative recipe implementation for the FeatureStore connector.
4636#feature_store_custom_recipe_location = ""
4637
4638# If enabled, GPT functionalities such as summarization would be available. If `openai_api_secret_key` config is provided, OpenAI API would be used. Make sure this does not break your internal policy.
4639#enable_gpt = false
4640
4641# OpenAI API secret key. Beware that if this config is set and `enable_gpt` is `true`, we will send some metadata about datasets and experiments to OpenAI (during dataset and experiment summarization). Make sure that passing such data to OpenAI does not break your internal policy.
4642#openai_api_secret_key = 
4643
4644# OpenAI model to use.
4645#openai_api_model = "gpt-4"
4646
4647# h2oGPT URL endpoint that will be used for GPT-related purposes (e.g. summarization). If both `h2ogpt_url` and `openai_api_secret_key` are provided, we will use only h2oGPT URL.
4648#h2ogpt_url = ""
4649
4650# The h2oGPT Key required for specific h2oGPT URLs, enabling authorized access for GPT-related tasks like summarization.
4651#h2ogpt_key = 
4652
4653# Name of the h2oGPT model that should be used. If not specified the default model in the h2oGPT will be used.
4654#h2ogpt_model_name = ""
4655
4656# Default AWS credentials to be used for scorer deployments.
4657#deployment_aws_access_key_id = ""
4658
4659# Default AWS credentials to be used for scorer deployments.
4660#deployment_aws_secret_access_key = ""
4661
4662# AWS S3 bucket to be used for scorer deployments.
4663#deployment_aws_bucket_name = ""
4664
4665# Approximate upper limit of time for Triton to take to compute latency and throughput performance numbers when performing 'Benchmark' operations for a deployment. Higher values result in more accurate performance numbers.
4666#triton_benchmark_runtime = 5
4667
4668# Approximate upper limit of time for Triton to take to compute latency and throughput performance numbers after loading up the deployment, per model. Higher values result in more accurate performance numbers.
4669#triton_quick_test_runtime = 2
4670
4671# Number of Triton deployments to show per page of the Deploy Wizard
4672#deploy_wizard_num_per_page = 10
4673
4674# Whether to allow user to change non-server toml parameters per experiment in expert page.
4675#allow_config_overrides_in_expert_page = true
4676
4677# Maximum number of columns in each head and tail to log when ingesting data or running experiment on data.
4678#max_cols_log_headtail = 1000
4679
4680# Maximum number of columns in each head and tail to show in GUI, useful when head or tail has all necessary columns, but too many for UI or web server to handle.
4681# -1 means no limit.
4682# A reasonable value is 500, after which web server or browser can become overloaded and use too much memory.
4683# Some values of column counts in UI may not show up correctly, and some dataset details functions may not work.
4684# To select (from GUI or client) any columns as being target, weight column, fold column, time column, time column groups, or dropped columns, the dataset should have those columns within the selected head or tail set of columns.
4685#max_cols_gui_headtail = 1000
4686
4687# Supported file formats (file name endings must match for files to show up in file browser)
4688#supported_file_types = "['csv', 'tsv', 'txt', 'dat', 'tgz', 'gz', 'bz2', 'zip', 'xz', 'xls', 'xlsx', 'jay', 'feather', 'bin', 'arff', 'parquet', 'pkl', 'orc', 'avro']"
4689
4690# Supported file formats of data recipe files (file name endings must match for files to show up in file browser)
4691#recipe_supported_file_types = "['py', 'pyc', 'zip']"
4692
4693# By default, only supported file types (based on the file extensions listed above) will be listed for import into DAI
4694# Some data pipelines generate parquet files without any extensions. Enabling the below option will cause files
4695# without an extension to be listed in the file import dialog.
4696# DAI will import files without extensions as parquet files; if cannot be imported, an error is generated
4697# 
4698#list_files_without_extensions = false
4699
4700# Allow using browser localstorage, to improve UX.
4701#allow_localstorage = true
4702
4703# Allow original dataset columns to be present in downloaded predictions CSV
4704#allow_orig_cols_in_predictions = true
4705
4706# Allow the browser to store e.g. login credentials in login form (set to false for higher security)
4707#allow_form_autocomplete = true
4708
4709# Enable Projects workspace (alpha version, for evaluation)
4710#enable_projects = true
4711
4712# Default application language - options are 'en', 'ja', 'cn', 'ko'
4713#app_language = "en"
4714
4715# If true, Logout button is not visible in the GUI.
4716#disablelogout = false
4717
4718# Local path to the location of the Driverless AI Python Client. If empty, will download from s3
4719#python_client_path = ""
4720
4721# If disabled, server won't verify if WHL package specified in `python_client_path` is valid DAI python client. Default True
4722#python_client_verify_integrity = true
4723
4724# When enabled, new experiment requires to specify expert name
4725#gui_require_experiment_name = false
4726
4727# When disabled, Deploy option will be disabled on finished experiment page
4728#gui_enable_deploy_button = true
4729
4730# Display experiment tour
4731#enable_gui_product_tour = true
4732
4733# Whether user can download dataset as csv file
4734#enable_dataset_downloading = true
4735
4736# If enabled, user can export experiment as a Zip file
4737#enable_experiment_export = true
4738
4739# If enabled, user can import experiments, exported as Zip files from DriverlessAI
4740#enable_experiment_import = true
4741
4742# (EXPERIMENTAL) If enabled, user can launch experiment via new `Predict Wizard` options, which navigates to the new Nitro wizard.
4743#enable_experiment_wizard = true
4744
4745# (EXPERIMENTAL) If enabled, user can do joins via new `Join Wizard` options, which navigates to the new Nitro wizard.
4746#enable_join_wizard = true
4747
4748# URL address of the H2O AI link
4749#hac_link_url = "https://www.h2o.ai/freetrial/?utm_source=dai&ref=dai"
4750
4751#show_all_filesystems = false
4752
4753# Switches Driverless AI to use H2O.ai License Management Server to manage licenses/permission to use software
4754#enable_license_manager = false
4755
4756# Address at which to communicate with H2O.ai License Management Server.
4757# Requires above value, `enable_license_manager` set to True.
4758# Format: {http/https}://{ip address}:{port number}
4759# 
4760#license_manager_address = "http://127.0.0.1:9999"
4761
4762# Name of license manager project that Driverless AI will attempt to retrieve leases from.
4763# NOTE: requires an active license within the License Manager Server to function properly
4764# 
4765#license_manager_project_name = "default"
4766
4767# Number of milliseconds a lease for users will be expected to last,
4768# if using the H2O.ai License Manager server, before the lease REQUIRES renewal.
4769# Default: 3600000 (1 hour) = 1 hour * 60 min / hour * 60 sec / min * 1000 milliseconds / sec
4770# 
4771#license_manager_lease_duration = 3600000
4772
4773# Number of milliseconds a lease for Driverless AI worker nodes will be expected to last,
4774# if using the H2O.ai License Manager server, before the lease REQUIRES renewal.
4775# Default: 21600000 (6 hour) = 6 hour * 60 min / hour * 60 sec / min * 1000 milliseconds / sec
4776# 
4777#license_manager_worker_lease_duration = 21600000
4778
4779# To be used only if License Manager server is started with HTTPS
4780# Accepts a boolean: true/false, or a path to a file/directory. Denotates whether or not to attempt
4781# SSL Certificate verification when making a request to the License Manager server.
4782# True: attempt ssl certificate verification, will fail if certificates are self signed
4783# False: skip ssl certificate verification.
4784# /path/to/cert/directory: load certificates <cert.pem> in directory and use those for certificate verification
4785# Behaves in the same manner as python requests package:
4786# https://requests.readthedocs.io/en/latest/user/advanced/#ssl-cert-verification
4787# 
4788#license_manager_ssl_certs = "true"
4789
4790# Amount of time that Driverless AI workers will keep retrying to startup and obtain a lease from
4791# the license manager before timing out. Time out will cause worker startup to fail.
4792# 
4793#license_manager_worker_startup_timeout = 3600000
4794
4795# Emergency setting that will allow Driverless AI to run even if there is issues communicating with
4796# or obtaining leases from, the License Manager server.
4797# This is an encoded string that can be obtained from either the license manager ui or the logs of the license
4798# manager server.
4799# 
4800#license_manager_dry_run_token = ""
4801
4802# Number of days before license expiry when the UI warning notification should appear.
4803# When the remaining days are less than or equal to this value, a notification bar
4804# will be displayed in the interface.
4805# 
4806#license_expiry_warning_days = 7
4807
4808# Choose LIME method to be used for creation of surrogate models.
4809#mli_lime_method = "k-LIME"
4810
4811# Choose whether surrogate models should be built for original or transformed features.
4812#mli_use_raw_features = true
4813
4814# Choose whether time series based surrogate models should be built for original features.
4815#mli_ts_use_raw_features = false
4816
4817# Choose whether to run all explainers on the sampled dataset.
4818#mli_sample = true
4819
4820# Set maximum number of features for which to build Surrogate Partial Dependence Plot. Use -1 to calculate Surrogate Partial Dependence Plot for all features.
4821#mli_vars_to_pdp = 10
4822
4823# Set the number of cross-validation folds for surrogate models.
4824#mli_nfolds = 3
4825
4826# Set the number of columns to bin in case of quantile binning.
4827#mli_qbin_count = 0
4828
4829# Number of threads for H2O instance for use by MLI.
4830#h2o_mli_nthreads = 8
4831
4832# Use this option to disable MOJO scoring pipeline. Scoring pipeline is chosen automatically (from MOJO and Python pipelines) by default. In case of certain models MOJO vs. Python choice can impact pipeline performance and robustness.
4833#mli_enable_mojo_scorer = true
4834
4835# When number of rows are above this limit sample for MLI for scoring UI data.
4836#mli_sample_above_for_scoring = 1000000
4837
4838# When number of rows are above this limit sample for MLI for training surrogate models.
4839#mli_sample_above_for_training = 100000
4840
4841# The sample size, number of rows, used for MLI surrogate models.
4842#mli_sample_size = 100000
4843
4844# Number of bins for quantile binning.
4845#mli_num_quantiles = 10
4846
4847# Number of trees for Random Forest surrogate model.
4848#mli_drf_num_trees = 100
4849
4850# Speed up predictions with a fast approximation (can reduce the number of trees or cross-validation folds).
4851#mli_fast_approx = true
4852
4853# Maximum number of interpreters status cache entries.
4854#mli_interpreter_status_cache_size = 1000
4855
4856# Max depth for Random Forest surrogate model.
4857#mli_drf_max_depth = 20
4858
4859# not only sample training, but also sample scoring.
4860#mli_sample_training = true
4861
4862# Regularization strength for k-LIME GLM's.
4863#klime_lambda = "[1e-06, 1e-08]"
4864
4865# Regularization distribution between L1 and L2 for k-LIME GLM's.
4866#klime_alpha = 0.0
4867
4868# Max cardinality for numeric variables in surrogate models to be considered categorical.
4869#mli_max_numeric_enum_cardinality = 25
4870
4871# Maximum number of features allowed for k-LIME k-means clustering.
4872#mli_max_number_cluster_vars = 6
4873
4874# Use all columns for k-LIME k-means clustering (this will override `mli_max_number_cluster_vars` if set to `True`).
4875#use_all_columns_klime_kmeans = false
4876
4877# Strict version check for MLI
4878#mli_strict_version_check = true
4879
4880# MLI cloud name
4881#mli_cloud_name = ""
4882
4883# Compute original model ICE using per feature's bin predictions (true) or use "one frame" strategy (false).
4884#mli_ice_per_bin_strategy = false
4885
4886# By default DIA will run for categorical columns with cardinality <= mli_dia_default_max_cardinality.
4887#mli_dia_default_max_cardinality = 10
4888
4889# By default DIA will run for categorical columns with cardinality >= mli_dia_default_min_cardinality.
4890#mli_dia_default_min_cardinality = 2
4891
4892# When number of rows are above this limit, then sample for MLI transformed Shapley calculation.
4893#mli_shapley_sample_size = 100000
4894
4895# Enable MLI keeper which ensures efficient use of filesystem/memory/DB by MLI.
4896#enable_mli_keeper = true
4897
4898# Enable MLI Sensitivity Analysis
4899#enable_mli_sa = true
4900
4901# Enable priority queues based explainers execution. Priority queues restrict available system resources and prevent system over-utilization. Interpretation execution time might be (significantly) slower.
4902#enable_mli_priority_queues = true
4903
4904# Explainers are run sequentially by default. This option can be used to run all explainers in parallel which can - depending on hardware strength and the number of explainers - decrease interpretation duration. Consider explainer dependencies, random explainers order and hardware over utilization.
4905#mli_sequential_task_execution = true
4906
4907# When number of rows are above this limit, then sample for Disparate Impact Analysis.
4908#mli_dia_sample_size = 100000
4909
4910# When number of rows are above this limit, then sample for Partial Dependence Plot.
4911#mli_pd_sample_size = 25000
4912
4913# Use dynamic switching between Partial Dependence Plot numeric and categorical binning and UI chart selection in case of features which were used both as numeric and categorical by experiment.
4914#mli_pd_numcat_num_chart = true
4915
4916# If 'mli_pd_numcat_num_chart' is enabled, then use numeric binning and chart if feature unique values count is bigger than threshold, else use categorical binning and chart.
4917#mli_pd_numcat_threshold = 11
4918
4919# In New Interpretation screen show only datasets which can be used to explain a selected model. This can slow down the server significantly.
4920#new_mli_list_only_explainable_datasets = false
4921
4922# Enable async/await-based non-blocking MLI API
4923#enable_mli_async_api = true
4924
4925# Enable main chart aggregator in Sensitivity Analysis
4926#enable_mli_sa_main_chart_aggregator = true
4927
4928# When to sample for Sensitivity Analysis (number of rows after sampling).
4929#mli_sa_sampling_limit = 500000
4930
4931# Run main chart aggregator in Sensitivity Analysis when the number of dataset instances is bigger than given limit.
4932#mli_sa_main_chart_aggregator_limit = 1000
4933
4934# Use predict_safe() (true) or predict_base() (false) in MLI (PD, ICE, SA, ...).
4935#mli_predict_safe = false
4936
4937# Number of max retries should the surrogate model fail to build.
4938#mli_max_surrogate_retries = 5
4939
4940# Allow use of symlinks (instead of file copy) by MLI explainer procedures.
4941#enable_mli_symlinks = true
4942
4943# Fraction of memory to allocate for h2o MLI jar
4944#h2o_mli_fraction_memory = 0.45
4945
4946# Add TOML string to Driverless AI server config.toml configuration file.
4947#mli_custom = ""
4948
4949# To exclude e.g. Sensitivity Analysis explainer use: excluded_mli_explainers=['h2oaicore.mli.byor.recipes.sa_explainer.SaExplainer'].
4950#excluded_mli_explainers = "[]"
4951
4952# Enable RPC API performance monitor.
4953#enable_ws_perfmon = false
4954
4955# Number of parallel workers when scoring using MOJO in Kernel Explainer.
4956#mli_kernel_explainer_workers = 4
4957
4958# Use Kernel Explainer to obtain Shapley values for original features.
4959#mli_run_kernel_explainer = false
4960
4961# Sample input dataset for Kernel Explainer.
4962#mli_kernel_explainer_sample = true
4963
4964# Sample size for input dataset passed to Kernel Explainer.
4965#mli_kernel_explainer_sample_size = 1000
4966
4967# 'auto' or int. Number of times to re-evaluate the model when explaining each prediction. More samples lead to lower variance estimates of the SHAP values. The 'auto' setting uses nsamples = 2 * X.shape[1] + 2048. This setting is disabled by default and DAI determines the right number internally.
4968#mli_kernel_explainer_nsamples = "auto"
4969
4970# 'num_features(int)', 'auto' (default for now, but deprecated), 'aic', 'bic', or float. The l1 regularization to use for feature selection (the estimation procedure is based on a debiased lasso). The 'auto' option currently uses aic when less that 20% of the possible sample space is enumerated, otherwise it uses no regularization. THE BEHAVIOR OF 'auto' WILL CHANGE in a future version to be based on 'num_features' instead of AIC. The aic and bic options use the AIC and BIC rules for regularization. Using 'num_features(int)' selects a fix number of top features. Passing a float directly sets the alpha parameter of the sklearn.linear_model.Lasso model used for feature selection.
4971#mli_kernel_explainer_l1_reg = "aic"
4972
4973# Max runtime for Kernel Explainer in seconds. Default is 900, which equates to 15 minutes. Setting this parameter to -1 means to honor the Kernel Shapley sample size provided regardless of max runtime.
4974#mli_kernel_explainer_max_runtime = 900
4975
4976# Tokenizer used to extract tokens from text columns for MLI.
4977#mli_nlp_tokenizer = "tfidf"
4978
4979# Number of tokens used for MLI NLP explanations. -1 means all.
4980#mli_nlp_top_n = 20
4981
4982# Maximum number of records used by MLI NLP explainers.
4983#mli_nlp_sample_limit = 10000
4984
4985# Minimum number of documents in which token has to appear. Integer mean absolute count, float means percentage.
4986#mli_nlp_min_df = 3
4987
4988# Maximum number of documents in which token has to appear. Integer mean absolute count, float means percentage.
4989#mli_nlp_max_df = 0.9
4990
4991# The minimum value in the ngram range. The tokenizer will generate all possible tokens in the (mli_nlp_min_ngram, mli_nlp_max_ngram) range.
4992#mli_nlp_min_ngram = 1
4993
4994# The maximum value in the ngram range. The tokenizer will generate all possible tokens in the (mli_nlp_min_ngram, mli_nlp_max_ngram) range.
4995#mli_nlp_max_ngram = 1
4996
4997# Mode used to choose N tokens for MLI NLP.
4998# "top" chooses N top tokens.
4999# "bottom" chooses N bottom tokens.
5000# "top-bottom" chooses math.floor(N/2) top and math.ceil(N/2) bottom tokens.
5001# "linspace" chooses N evenly spaced out tokens.
5002#mli_nlp_min_token_mode = "top"
5003
5004# The number of top tokens to be used as features when building token based feature importance.
5005#mli_nlp_tokenizer_max_features = -1
5006
5007# The number of top tokens to be used as features when computing text LOCO.
5008#mli_nlp_loco_max_features = -1
5009
5010# The tokenizer method to use when tokenizing a dataset for surrogate models. Can either choose 'TF-IDF' or 'Linear Model + TF-IDF', which first runs TF-IDF to get tokens and then fits a linear model between the tokens and the target to get importances of tokens, which are based on coefficients of the linear model. Default is 'Linear Model + TF-IDF'. Only applies to NLP models.
5011#mli_nlp_surrogate_tokenizer = "Linear Model + TF-IDF"
5012
5013# The number of top tokens to be used as features when building surrogate models. Only applies to NLP models.
5014#mli_nlp_surrogate_tokens = 100
5015
5016# Ignore stop words for MLI NLP.
5017#mli_nlp_use_stop_words = true
5018
5019# List of words to filter out before generation of text tokens, which are passed to MLI NLP LOCO and surrogate models (if enabled). Default is 'english'. Pass in custom stop-words as a list, e.g., ['great', 'good'].
5020#mli_nlp_stop_words = "english"
5021
5022# Append passed in list of custom stop words to default 'english' stop words.
5023#mli_nlp_append_to_english_stop_words = false
5024
5025# Enable MLI for image experiments.
5026#mli_image_enable = true
5027
5028# The maximum number of rows allowed to get the local explanation result, increase the value may jeopardize overall performance, change the value only if necessary.
5029#mli_max_explain_rows = 500
5030
5031# The maximum number of rows allowed to get the NLP token importance result, increasing the value may consume too much memory and negatively impact the performance, change the value only if necessary.
5032#mli_nlp_max_tokens_rows = 50
5033
5034# The minimum number of rows to enable parallel execution for NLP local explanations calculation.
5035#mli_nlp_min_parallel_rows = 10
5036
5037# Run legacy defaults in addition to current default explainers in MLI.
5038#mli_run_legacy_defaults = false
5039
5040# Run explainers sequentially for one given MLI job.
5041#mli_run_explainers_sequentially = false
5042
5043# Whether to enable jupyter server
5044#enable_jupyter_server = false
5045
5046# Port for jupyter server
5047#jupyter_server_port = 8889
5048
5049# Whether to enable jupyter server browser
5050#enable_jupyter_server_browser = false
5051
5052# Whether to root access to jupyter server browser
5053#enable_jupyter_server_browser_root = false
5054
5055# Hostname (or IP address) of remote Triton inference service (outside of DAI), to be used when auto_deploy_triton_scoring_pipeline
5056# and make_triton_scoring_pipeline are not disabled. If set, check triton_model_repository_dir_remote and triton_server_params_remote as well.
5057# 
5058#triton_host_remote = ""
5059
5060# Path to model repository directory for remote Triton inference server outside of Driverless AI. All Triton deployments for all users are stored in this directory. Requires write access to this directory from Driverless AI (shared file system). This setting is optional. If not provided, will upload each model deployment over gRPC protocol.
5061#triton_model_repository_dir_remote = ""
5062
5063# Parameters to connect to remote Triton server, only used if triton_host_remote and
5064# triton_model_repository_dir_remote are set.
5065# Note: 'model-control-mode' need to be set to 'explicit' in order to allow DAI upload model to remote
5066# triton server.
5067# .
5068#triton_server_params_remote = "{'http-port': 8000, 'grpc-port': 8001, 'metrics-port': 8002, 'model-control-mode': 'explicit'}"
5069
5070#triton_log_level = 0
5071
5072#triton_model_reload_on_startup_count = 0
5073
5074#triton_clean_up_temp_python_env_on_startup = true
5075
5076# When set to true, CPU executors will strictly run just CPU tasks.
5077#multinode_enable_strict_queue_policy = false
5078
5079# Controls whether CPU tasks can run on GPU machines.
5080#multinode_enable_cpu_tasks_on_gpu_machines = true
5081
5082# Storage medium to be used to exchange data between main server and remote worker nodes.
5083# filesystem: a directory shared by all nodes (NFS or similar). The default.
5084# s3:         an S3 bucket, see the main_server_s3_* settings.
5085# minio:      a MinIO server. Driverless AI no longer ships the MinIO server binary;
5086# provide one on the host and point main_server_minio_binary_path at it
5087# (or put it on PATH). See main_server_minio_binary_path.
5088# 
5089#multinode_storage_medium = "filesystem"
5090
5091# How the long running tasks are scheduled.
5092# multiprocessing: forks the current process immediately.
5093# singlenode:      shares the task through redis and needs a worker running.
5094# multinode:       same as singlenode and also shares the data through the
5095# multinode_storage_medium and allows worker to run on the
5096# different machine.
5097# 
5098#worker_mode = "singlenode"
5099
5100# Redis settings
5101#redis_ip = "127.0.0.1"
5102
5103# Redis settings
5104#redis_port = 6379
5105
5106# Redis database. Each DAI instance running on the redis server should have unique integer.
5107#redis_db = 0
5108
5109# Redis password. Will be randomly generated main server startup, and by default it will show up in config file uncommented.If you are running more than one DriverlessAI instance per system, make sure each and every instance is connected to its own redis queue.
5110#main_server_redis_password = "PlWUjvEJSiWu9j0aopOyL5KwqnrKtyWVoZHunqxr"
5111
5112# If set to true, the config will get encrypted before it gets saved into the Redis database.
5113#redis_encrypt_config = false
5114
5115# The port that Minio will listen on, this only takes effect if the current system is a multinode main server.
5116#local_minio_port = 9001
5117
5118# Location of main server's minio server.
5119#main_server_minio_address = "127.0.0.1:9001"
5120
5121# Full path to the MinIO server binary used by the multinode main server when multinode_storage_medium='minio'. Driverless AI does not ship the MinIO server; mount or install a binary matching the host architecture and point this setting at it. If left empty, 'minio' is looked up on PATH, then in the Driverless AI installation directory. Startup fails with an error if no binary is found.
5122#main_server_minio_binary_path = ""
5123
5124# Access key of main server's minio server.
5125#main_server_minio_access_key_id = "GMCSE2K2T3RV6YEHJUYW"
5126
5127# Secret access key of main server's minio server.
5128#main_server_minio_secret_access_key = "JFxmXvE/W1AaqwgyPxAUFsJZRnDWUaeQciZJUe9H"
5129
5130# Name of minio bucket used for file synchronization.
5131#main_server_minio_bucket = "h2oai"
5132
5133# S3 global access key.
5134#main_server_s3_access_key_id = "access_key"
5135
5136# S3 global secret access key
5137#main_server_s3_secret_access_key = "secret_access_key"
5138
5139# S3 bucket.
5140#main_server_s3_bucket = "h2oai-multinode-tests"
5141
5142# Maximum number of local tasks processed at once, limited to no more than total number of physical (not virtual) cores divided by two (minimum of 1).
5143#worker_local_processors = 32
5144
5145# A concurrency limit for the 3 priority queues, only enabled when worker_remote_processors is greater than 0.
5146#worker_priority_queues_processors = 4
5147
5148# A timeout before which a scheduled task is bumped up in priority
5149#worker_priority_queues_time_check = 30
5150
5151# Maximum number of remote tasks processed at once, if value is set to -1 the system will automatically pick a reasonable limit depending on the number of available virtual CPU cores.
5152#worker_remote_processors = -1
5153
5154# If worker_remote_processors >= 3, factor by which each task reduces threads, used by various packages like datatable, lightgbm, xgboost, etc.
5155#worker_remote_processors_max_threads_reduction_factor = 0.7
5156
5157# Temporary file system location for multinode data transfer. This has to be an absolute path with equivalent configuration on both the main server and remote workers.
5158#multinode_tmpfs = ""
5159
5160# When set to true, will use the 'multinode_tmpfs' as datasets store.
5161#multinode_store_datasets_in_tmpfs = false
5162
5163# How often the server should extract results from redis queue in milliseconds.
5164#redis_result_queue_polling_interval = 100
5165
5166# Sleep time for worker loop.
5167#worker_sleep = 0.1
5168
5169# For how many seconds worker should wait for main server minio bucket before it fails
5170#main_server_minio_bucket_ping_timeout = 180
5171
5172# A JSON list of up to two objects, where each object defines a worker node profile with name, num_cpus, num_gpus, memory_gb, gpu_is_mig. Currently, the profiles must be named CPU and GPU. The GPU profile must have num_gpus greater than 0. An example worker_spec: [{"name": "CPU", "num_cpus": 8, "num_gpus": 2, "memory_gb": 32, "gpu_is_mig": true}].
5173#worker_node_spec = ""
5174
5175# How long the worker should wait on redis db initialization in seconds.
5176#worker_start_timeout = 30
5177
5178#worker_no_main_server_wait_time = 1800
5179
5180#worker_no_main_server_wait_time_with_hard_assert = 30
5181
5182# For how many seconds the worker shouldn't respond to be marked unhealthy.
5183#worker_healthy_response_period = 300
5184
5185# Whether to enable priority queue for worker nodes to schedule experiments.
5186# 
5187#enable_experiments_priority_queue = false
5188
5189# Exposes the DriverlessAI base version when enabled.
5190#expose_server_version = true
5191
5192# https settings
5193# You can make a self-signed certificate for testing with the following commands:
5194# sudo openssl req -x509 -newkey rsa:4096 -keyout private_key.pem -out cert.pem -days 3650 -nodes -subj '/O=Driverless AI'
5195# sudo chown dai:dai cert.pem private_key.pem
5196# sudo chmod 600 cert.pem private_key.pem
5197# sudo mv cert.pem private_key.pem /etc/dai
5198#enable_https = false
5199
5200# https settings
5201# You can make a self-signed certificate for testing with the following commands:
5202# sudo openssl req -x509 -newkey rsa:4096 -keyout private_key.pem -out cert.pem -days 3650 -nodes -subj '/O=Driverless AI'
5203# sudo chown dai:dai cert.pem private_key.pem
5204# sudo chmod 600 cert.pem private_key.pem
5205# sudo mv cert.pem private_key.pem /etc/dai
5206#ssl_key_file = "/etc/dai/private_key.pem"
5207
5208# https settings
5209# You can make a self-signed certificate for testing with the following commands:
5210# sudo openssl req -x509 -newkey rsa:4096 -keyout private_key.pem -out cert.pem -days 3650 -nodes -subj '/O=Driverless AI'
5211# sudo chown dai:dai cert.pem private_key.pem
5212# sudo chmod 600 cert.pem private_key.pem
5213# sudo mv cert.pem private_key.pem /etc/dai
5214#ssl_crt_file = "/etc/dai/cert.pem"
5215
5216# https settings
5217# Passphrase for the ssl_key_file,
5218# either use this setting or ssl_key_passphrase_file,
5219# or neither if no passphrase is used.
5220#ssl_key_passphrase = ""
5221
5222# https settings
5223# Passphrase file  for the ssl_key_file,
5224# either use this setting or ssl_key_passphrase,
5225# or neither if no passphrase is used.
5226#ssl_key_passphrase_file = ""
5227
5228# SSL TLS
5229#ssl_no_sslv2 = true
5230
5231# SSL TLS
5232#ssl_no_sslv3 = true
5233
5234# SSL TLS
5235#ssl_no_tlsv1 = true
5236
5237# SSL TLS
5238#ssl_no_tlsv1_1 = true
5239
5240# SSL TLS
5241#ssl_no_tlsv1_2 = false
5242
5243# SSL TLS
5244#ssl_no_tlsv1_3 = false
5245
5246# https settings
5247# Sets the client verification mode.
5248# CERT_NONE: Client does not need to provide the certificate and if it does any
5249# verification errors are ignored.
5250# CERT_OPTIONAL: Client does not need to provide the certificate and if it does
5251# certificate is verified against set up CA chains.
5252# CERT_REQUIRED: Client needs to provide a certificate and certificate is
5253# verified.
5254# You'll need to set 'ssl_client_key_file' and 'ssl_client_crt_file'
5255# When this mode is selected for Driverless to be able to verify
5256# it's own callback requests.
5257# 
5258#ssl_client_verify_mode = "CERT_NONE"
5259
5260# https settings
5261# Path to the Certification Authority certificate file. This certificate will be
5262# used when to verify client certificate when client authentication is turned on.
5263# If this is not set, clients are verified using default system certificates.
5264# 
5265#ssl_ca_file = ""
5266
5267# https settings
5268# path to the private key that Driverless will use to authenticate itself when
5269# CERT_REQUIRED mode is set.
5270# 
5271#ssl_client_key_file = ""
5272
5273# https settings
5274# path to the client certificate that Driverless will use to authenticate itself
5275# when CERT_REQUIRED mode is set.
5276# 
5277#ssl_client_crt_file = ""
5278
5279# If enabled, webserver will serve xsrf cookies and verify their validity upon every POST request
5280#enable_xsrf_protection = true
5281
5282# Sets the `SameSite` attribute for the `_xsrf` cookie; options are "Lax", "Strict", or "".
5283#xsrf_cookie_samesite = ""
5284
5285#enable_secure_cookies = false
5286
5287# When enabled each authenticated access will be verified comparing IP address of initiator of session and current request IP
5288#verify_session_ip = false
5289
5290# Enables automatic detection for forbidden/dangerous constructs in custom recipe
5291#custom_recipe_security_analysis_enabled = false
5292
5293# List of modules that can be imported in custom recipes. Default empty list means all modules are allowed except for banlisted ones
5294#custom_recipe_import_allowlist = "[]"
5295
5296# List of modules that cannot be imported in custom recipes
5297#custom_recipe_import_banlist = "['shlex', 'plumbum', 'pexpect', 'envoy', 'commands', 'fabric', 'subprocess', 'os.system', 'system']"
5298
5299# Regex pattern list of calls which are allowed in custom recipes.
5300# Empty list means everything (except for banlist) is allowed.
5301# E.g. if only `os.path.*` is in allowlist, custom recipe can only call methods
5302# from `os.path` module and the built in ones
5303# 
5304#custom_recipe_method_call_allowlist = "[]"
5305
5306# Regex pattern list of calls which need to be rejected in custom recipes.
5307# E.g. if `os.system` in banlist, custom recipe cannot call `os.system()`.
5308# If `socket.*` in banlist, recipe cannot call any method of socket module such as
5309# `socket.socket()` or any `socket.a.b.c()`
5310# 
5311#custom_recipe_method_call_banlist = "['os\\.system', 'socket\\..*', 'subprocess.*', 'os.spawn.*']"
5312
5313# List of regex patterns representing dangerous sequences/constructs
5314# which could be harmful to whole system and should be banned from code
5315# 
5316#custom_recipe_dangerous_patterns = "['rm -rf', 'rm -fr']"
5317
5318# If enabled, user can log in from 2 browsers (scripts) at the same time
5319#allow_concurrent_sessions = true
5320
5321# Extra HTTP headers.
5322#extra_http_headers = "{}"
5323
5324# If enabled, the webserver will add a Content-Security-Policy header to all responses. This header helps to prevent cross-site scripting (XSS) attacks by specifying which sources of content are allowed to be loaded by the browser.
5325#add_csp_header = true
5326
5327# By default DriverlessAI issues cookies with HTTPOnly and Secure attributes (morsels) enabled. In addition to that, SameSite attribute is set to 'Lax', as it's a default in modern browsers. The config overrides the default key/value (morsels).
5328#http_cookie_attributes = "{'samesite': 'Lax'}"
5329
5330# Enable column imputation
5331#enable_imputation = false
5332
5333# Adds advanced settings panel to experiment setup, which allows creating
5334# custom features and more.
5335# 
5336#enable_advanced_features_experiment = false
5337
5338# Specifies whether DriverlessAI uses H2O Storage or H2O Entity Server for
5339# a shared entities backend.
5340# h2o-storage: Uses legacy H2O Storage.
5341# entity-server: Uses the new HAIC Entity Server.
5342# 
5343#h2o_storage_mode = "h2o-storage"
5344
5345# Address of the H2O Storage endpoint. Keep empty to use the local storage only.
5346#h2o_storage_address = ""
5347
5348# Whether to enable multi-project support in H2O Storage.
5349#enable_multi_projects = false
5350
5351# Whether to use remote projects stored in H2O Storage instead of local projects.
5352#h2o_storage_projects_enabled = false
5353
5354# DEPRECATED: temporary back-compat shim that will be removed in a future release. Enables legacy MLOps project support for HAIC deployments still on older MLOps / workspaces services. Only takes effect when h2o_storage_projects_enabled=True; otherwise DAI uses local projects and this flag is ignored.
5355#use_legacy_mlops_projects = false
5356
5357# Whether the channel to the storage should be encrypted.
5358#h2o_storage_tls_enabled = true
5359
5360# Path to the certification authority certificate that H2O Storage server identity will be checked against.
5361#h2o_storage_tls_ca_path = ""
5362
5363# Path to the client certificate to authenticate with H2O Storage server
5364#h2o_storage_tls_cert_path = ""
5365
5366# Path to the client key to authenticate with H2O Storage server
5367#h2o_storage_tls_key_path = ""
5368
5369# UUID of a Storage project to use instead of the remote HOME folder.
5370#h2o_storage_internal_default_project_id = ""
5371
5372# Deadline for RPC calls with H2O Storage in seconds. Sets maximum number of seconds that Driverless waits for RPC call to complete before it cancels it.
5373#h2o_storage_rpc_deadline_seconds = 60
5374
5375# Deadline for RPC bytestrteam calls with H2O Storage in seconds. Sets maximum number of seconds that Driverless waits for RPC call to complete before it cancels it. This value is used for uploading and downloading artifacts.
5376#h2o_storage_rpc_bytestream_deadline_seconds = 7200
5377
5378# Storage client manages it's own access tokens derived from  the refresh token received on the user login. When this option is set access token with the scopes defined here is requested. (space separated list)
5379#h2o_storage_oauth2_scopes = ""
5380
5381# Maximum size of message size of RPC request in bytes. Requests larger than this limit will fail.
5382#h2o_storage_message_size_limit = 1048576000
5383
5384# Maximum size of message size of RPC request in bytes. Requests larger than this limit will fail.
5385#h2o_authz_message_size_limit = 1048576000
5386
5387# If the `h2o_mlops_ui_url` is provided alongside the `enable_storage`, DAI is able to redirect user to the MLOps app upon clicking the Deploy button.
5388#h2o_mlops_ui_url = ""
5389
5390# If the `feature_store_ui_url` is provided alongside the `enable_file_systems`, DAI is able to redirect user to the Feature Store app upon clicking the Feature Store button.
5391#feature_store_ui_url = ""
5392
5393# H2O Secure Store server endpoint URL
5394#h2o_secure_store_endpoint_url = ""
5395
5396# Enable TLS communication between DAI and the H2O Secure Store server
5397#h2o_secure_store_enable_tls = true
5398
5399# Path to the client certificate to authenticate with the H2O Secure Store server. This is only effective when h2o_secure_store_enable_tls=True.
5400#h2o_secure_store_tls_cert_path = ""
5401
5402# Whether to enable or disable linking datasets into projects.
5403#h2o_storage_dataset_linking_enabled = true
5404
5405# Whether to enable or disable linking experiments into projects.
5406#h2o_storage_experiment_linking_enabled = true
5407
5408# Keystore file that contains secure config.toml items like passwords, secret keys etc. Keystore is managed by h2oai.keystore tool.
5409#keystore_file = ""
5410
5411# Verbosity of logging
5412# 0: quiet   (CRITICAL, ERROR, WARNING)
5413# 1: default (CRITICAL, ERROR, WARNING, INFO, DATA)
5414# 2: verbose (CRITICAL, ERROR, WARNING, INFO, DATA, DEBUG)
5415# Affects server and all experiments
5416#log_level = 1
5417
5418# Whether to collect relevant server logs (h2oai_server.log, dai.log from systemctl or docker, and h2o log)
5419# Useful for when sending logs to H2O.ai
5420#collect_server_logs_in_experiment_logs = false
5421
5422# When set, will migrate all user entities to the defined user upon startup, this is mostly useful during
5423# instance migration via H2O's AIEM/Steam.
5424#migrate_all_entities_to_user = ""
5425
5426# Whether to have all user content isolated into a directory for each user.
5427# If set to False, all users content is common to single directory,
5428# recipes are shared, and brain folder for restart/refit is shared.
5429# If set to True, each user has separate folder for all user tasks,
5430# recipes are isolated to each user, and brain folder for restart/refit is
5431# only for the specific user.
5432# Migration from False to True or back to False is allowed for
5433# all experiment content accessible by GUI or python client,
5434# all recipes, and starting experiment with same settings, restart, or refit.
5435# However, if switch to per-user mode, the common brain folder is no longer used.
5436# 
5437#per_user_directories = true
5438
5439# List of file names to ignore during dataset import. Any files with names listed above will be skipped when
5440# DAI creates a dataset. Example, directory contains 3 files: [data_1.csv, data_2.csv, _SUCCESS]
5441# DAI will only attempt to create a dataset using files data_1.csv and data_2.csv, and _SUCCESS file will be ignored.
5442# Default is to ignore _SUCCESS files which are commonly created in exporting data from Hadoop
5443# 
5444#data_import_ignore_file_names = "['_SUCCESS']"
5445
5446# For data import from a directory (multiple files), allow column types to differ and perform upcast during import.
5447#data_import_upcast_multi_file = false
5448
5449# If set to true, will explode columns with list data type when importing parquet files.
5450#data_import_explode_list_type_columns_in_parquet = false
5451
5452# If true, enables automatic detection of non-UTF-8 file encodings (e.g. CP932/Shift-JIS) during CSV/TSV/TXT import. Automatically active when app_language is non-English. Set to true if using an English UI but uploading datasets with Japanese(JA) content.
5453#data_import_enable_encoding_detection = false
5454
5455# List of file types that Driverless AI should attempt to import data as IF no file extension exists in the file name
5456# If no file extension is provided, Driverless AI will attempt to import the data starting with first type
5457# in the defined list. Default ["parquet", "orc"]
5458# Example: 'test.csv' (file extension exists) vs 'test' (file extension DOES NOT exist)
5459# NOTE: see supported_file_types configuration option for more details on supported file types
5460# 
5461#files_without_extensions_expected_types = "['parquet', 'orc']"
5462
5463# do_not_log_list : add configurations that you do not wish to be recorded in logs here.They will still be stored in experiment information so child experiments can behave consistently.
5464#do_not_log_list = "['cols_to_drop', 'cols_to_drop_sanitized', 'cols_to_group_by', 'cols_to_group_by_sanitized', 'cols_to_force_in', 'cols_to_force_in_sanitized', 'do_not_log_list', 'do_not_store_list', 'pytorch_nlp_pretrained_s3_access_key_id', 'pytorch_nlp_pretrained_s3_secret_access_key', 'auth_openid_end_session_endpoint_url', 'autodoc_s3_secret_key', 'autodoc_s3_session_token']"
5465
5466# do_not_store_list : add configurations that you do not wish to be stored at all here.Will not be remembered across experiments, so not applicable to data science related itemsthat could be controlled by a user.  These items are automatically not logged.
5467#do_not_store_list = "['h2o_authz_action_prefix', 'h2o_authz_user_prefix', 'h2o_authz_result_cache_ttl_sec', 'h2o_authz_workspace_cache_ttl_sec', 'pip_install_options', 'local_default_project_key']"
5468
5469# Memory limit in bytes for datatable to use during parsing of CSV files. -1 for unlimited. 0 for automatic. >0 for constraint.
5470#datatable_parse_max_memory_bytes = -1
5471
5472# Delimiter/Separator to use when parsing tabular text files like CSV. Automatic if empty. Must be provided at system start.
5473#datatable_separator = ""
5474
5475# Whether to enable ping of system status during DAI data ingestion.
5476#ping_load_data_file = false
5477
5478# Period between checking DAI status.  Should be small enough to avoid slowing parent who stops ping process.
5479#ping_sleep_period = 0.5
5480
5481# Precision of how data is stored
5482# 'datatable' keeps original datatable storage types (i.e. bool, int, float32, float64) (experimental)
5483# 'float32' best for speed, 'float64' best for accuracy or very large input values, "datatable" best for memory
5484# 'float32' allows numbers up to about +-3E38 with relative error of about 1E-7
5485# 'float64' allows numbers up to about +-1E308 with relative error of about 1E-16
5486# Some calculations, like the GLM standardization, can only handle up to sqrt() of these maximums for data values,
5487# So GLM with 32-bit precision can only handle up to about a value of 1E19 before standardization generates inf values.
5488# If you see "Best individual has invalid score" you may require higher precision.
5489#data_precision = "float32"
5490
5491# Precision of most data transformers (same options and notes as data_precision).
5492# Useful for higher precision in transformers with numerous operations that can accumulate error.
5493# Also useful if want faster performance for transformers but otherwise want data stored in high precision.
5494#transformer_precision = "float32"
5495
5496# Whether to change ulimit soft limits up to hard limits (for DAI server app, which is not a generic user app).
5497# Prevents resource limit problems in some cases.
5498# Restricted to no more than limit_nofile and limit_nproc for those resources.
5499#ulimit_up_to_hard_limit = true
5500
5501#disable_core_files = false
5502
5503# number of file limit
5504# Below should be consistent with start-dai.sh
5505#limit_nofile = 131071
5506
5507# number of threads limit
5508# Below should be consistent with start-dai.sh
5509#limit_nproc = 16384
5510
5511# '
5512# Whether to compute training, validation, and test correlation matrix (table and heatmap pdf) and save to disk
5513# alpha: WARNING: currently single threaded and quadratically slow for many columns
5514#compute_correlation = false
5515
5516# Whether to dump to disk a correlation heatmap
5517#produce_correlation_heatmap = false
5518
5519# Value to report high correlation between original features
5520#high_correlation_value_to_report = 0.95
5521
5522# If True, experiments aborted by server restart will automatically restart and continue upon user login
5523#restart_experiments_after_shutdown = false
5524
5525# When environment variable is set to toml value, consider that an override of any toml value.  Experiment's remember toml values for scoring, and this treats any environment set as equivalent to putting OVERRIDE_ in front of the environment key.
5526#any_env_overrides = false
5527
5528# Include byte order mark (BOM) when writing CSV files. Required to support UTF-8 encoding in Excel.
5529#datatable_bom_csv = false
5530
5531# Whether to enable debug prints (to console/stdout/stderr), e.g. showing up in dai*.log or dai*.txt type files.
5532#debug_print = false
5533
5534# Level (0-4) for debug prints (to console/stdout/stderr), e.g. showing up in dai*.log or dai*.txt type files.  1-2 is normal, 4 would lead to highly excessive debug and is not recommended in production.
5535#debug_print_level = 0
5536
5537#glm_best_iterations_relaxed_rtol = false
5538
5539#return_quickly_autodl_testing = false
5540
5541#return_quickly_autodl_testing2 = false
5542
5543#return_before_final_model = false
5544
5545# Whether to check if config.toml keys are valid and fail if not valid
5546#check_invalid_config_toml_keys = true
5547
5548#predict_safe_trials = 2
5549
5550#fit_safe_trials = 2
5551
5552#allow_no_pid_host = true
5553
5554#enable_autodl_system_insights = true
5555
5556#enable_deleting_autodl_system_insights_finished_experiments = true
5557
5558#main_logger_with_experiment_ids = true
5559
5560# Reduce memory usage during final ensemble feature engineering (1 uses most memory, larger values use less memory)
5561#final_munging_memory_reduction_factor = 2
5562
5563# How much more memory a typical transformer needs than the input data.
5564# Can be increased if, e.g., final model munging uses too much memory due to parallel operations.
5565#munging_memory_overhead_factor = 5
5566
5567#per_transformer_segfault_protection_ga = false
5568
5569#per_transformer_segfault_protection_final = false
5570
5571# How often to check resources (disk, memory, cpu) to see if need to stall submission.
5572#submit_resource_wait_period = 10
5573
5574# Stall submission of subprocesses if system CPU usage is higher than this threshold in percent (set to 100 to disable). A reasonable number is 90.0 if activated
5575#stall_subprocess_submission_cpu_threshold_pct = 100
5576
5577# Restrict/Stall submission of subprocesses if DAI fork count (across all experiments) per unit ulimit nproc soft limit is higher than this threshold in percent (set to -1 to disable, 0 for minimal forking. A reasonable number is 90.0 if activated
5578#stall_subprocess_submission_dai_fork_threshold_pct = -1.0
5579
5580# Restrict/Stall submission of subprocesses if experiment fork count (across all experiments) per unit ulimit nproc soft limit is higher than this threshold in percent (set to -1 to disable, 0 for minimal forking). A reasonable number is 90.0 if activated. For small data leads to overhead of about 0.1s per task submitted due to checks, so for scoring can slow things down for tests.
5581#stall_subprocess_submission_experiment_fork_threshold_pct = -1.0
5582
5583# Whether to restrict pool workers even if not used, by reducing number of pool workers available. Good if really huge number of experiments, but otherwise, best to have all pool workers ready and only stall submission of tasks so can be dynamic to multi-experiment environment
5584#restrict_initpool_by_memory = true
5585
5586# Whether to terminate experiments if the system memory available falls below memory_limit_gb_terminate
5587#terminate_experiment_if_memory_low = false
5588
5589# Memory in GB beyond which will terminate experiment if terminate_experiment_if_memory_low=true.
5590#memory_limit_gb_terminate = 5
5591
5592# A fraction that with valid values between 0.1 and 1.0 that determines the disk usage quota for a user, this quota will be checked during datasets import or experiment runs.
5593#users_disk_usage_quota = 1.0
5594
5595# Path to use for scoring directory path relative to run path
5596#scoring_data_directory = "tmp"
5597
5598#num_models_for_resume_graph = 1000
5599
5600# Internal helper to allow memory of if changed exclusive mode
5601#last_exclusive_mode = ""
5602
5603#mojo_acceptance_test_errors_fatal = true
5604
5605#mojo_acceptance_test_errors_shap_fatal = true
5606
5607#mojo_acceptance_test_orig_shap = true
5608
5609# Which MOJO runtimes should be tested as part of the mini acceptance tests
5610#mojo_acceptance_test_mojo_types = "['C++', 'Java']"
5611
5612# Create MOJO for feature engineering pipeline only (no predictions)
5613#make_mojo_scoring_pipeline_for_features_only = false
5614
5615# Replaces target encoding features by their input columns. Instead of CVTE_Age:Income:Zip, this will create Age:Income:Zip. Only when make_mojo_scoring_pipeline_for_features_only is enabled.
5616#mojo_replace_target_encoding_with_grouped_input_cols = false
5617
5618# Use pipeline to generate transformed features, when making predictions, bypassing the model that usually converts transformed features into predictions.
5619#predictions_as_transform_only = false
5620
5621# If set to true, will make sure only current instance can access its database
5622#enable_single_instance_db_access = true
5623
5624# DCGM daemon address, DCGM has to be in standalone mode in remote/local host.
5625#dcgm_daemon_address = "127.0.0.1"
5626
5627# Deprecated - maps to enable_pytorch_nlp_transformer and enable_pytorch_nlp_model in 1.10.2+
5628#enable_pytorch_nlp = "auto"
5629
5630# How long to wait per GPU for tensorflow/torch to run during system checks.
5631#check_timeout_per_gpu = 20
5632
5633# Whether to fail start-up if cannot successfully run GPU checks
5634#gpu_exit_if_fails = true
5635
5636# Cache TTL in seconds for authorization checks in the GUI. Cached permission results are reused within this time period to reduce backend load. Default is 300 seconds (5 minutes).
5637#h2o_ui_authz_result_cache_ttl_sec = 300
5638
5639#how_started = ""
5640
5641#wizard_state = ""
5642
5643# Whether to enable pushing telemetry events to a configured telemetry receiver in 'telemetry_plugins_dir'.
5644#enable_telemetry = false
5645
5646# Directory to scan for telemetry recipes.
5647#telemetry_plugins_dir = "./telemetry_plugins"
5648
5649# Whether to enable TLS to communicate to H2O.ai Telemetry Service.
5650#h2o_telemetry_tls_enabled = false
5651
5652# Timeout value when communicating to H2O.ai Telemetry Service.
5653#h2o_telemetry_rpc_deadline_seconds = 60
5654
5655# H2O.ai Telemetry Service address in H2O.ai Cloud.
5656#h2o_telemetry_address = ""
5657
5658# H2O.ai Telemetry Service access token file location.
5659#h2o_telemetry_service_token_location = ""
5660
5661# TLS CA path when communicating to H2O.ai Telemetry Service.
5662#h2o_telemetry_tls_ca_path = ""
5663
5664# TLS certificate path when communicating to H2O.ai Telemetry Service.
5665#h2o_telemetry_tls_cert_path = ""
5666
5667# TLS key path when communicating to H2O.ai Telemetry Service.
5668#h2o_telemetry_tls_key_path = ""
5669
5670# Whether to enable pushing audit events to a configured Audit Trail receiver in 'audit_trail_plugins_dir'.
5671#enable_audit_trail = false
5672
5673# Whether to return all stack trace error log to audit trail API
5674#enable_debug_error_audit_trail = false
5675
5676# Timeout value when communicating to H2O.ai Audit Trail Service.
5677#h2o_audit_trail_rpc_deadline_seconds = 60
5678
5679# H2O.ai Audit Trail Service address in H2O.ai Cloud.
5680#h2o_audit_trail_address = ""
5681
5682# Path to the Kubernetes service account token for Audit Trail and AuthZ.
5683#h2o_k8s_service_token_location = "/var/run/secrets/kubernetes.io/serviceaccount/token"
5684
5685# [DEPRECATED] H2O.ai AuthZ. Use 'enable_dai_authz' instead.
5686#enable_h2o_authz = false
5687
5688# Enable H2O.ai AuthZ
5689#enable_dai_authz = false
5690
5691# The endpoint (host:port) of the H2O.ai AuthZ Policy Server in H2O.ai Cloud.
5692#h2o_authz_policy_server_endpoint = ""
5693
5694# JSON override for workspace/mlops action requirements per operation. When set, replaces the built-in defaults. Format: {"operation_name": ["action1", "action2"], ...}. Operations: create_project, link_experiment, link_dataset, unlink_experiment, unlink_dataset, rename_project, update_project_description, get_project, list_project_experiments, get_datasets_for_project, tag_experiment, untag_experiment.
5695#h2o_authz_workspace_actions = ""
5696
5697# The endpoint (host:port) of the H2O.ai Workspace server in H2O.ai Cloud.
5698#h2o_workspace_server_endpoint = ""
5699
5700# H2O.ai HAIC engine name for driverless instance that contains the
5701# workspace ID. Example:
5702# //engine-manager/workspaces/<workspace name>/daiEngines/<engine name>
5703# 
5704#haic_engine_name = ""
5705
5706# Whether to disable downloading logs via both API and UI. Note: this settings does not apply to admin user.
5707#disable_download_logs = false
5708
5709# Enable time series lag-based recipe with lag transformers. If disabled, the same train-test gap and periods are used, but no lag transformers are enabled. If disabled, the set of feature transformations is quite limited without lag transformers, so consider setting enable_time_unaware_transformers to true in order to treat the problem as more like an IID type problem.
5710#time_series_recipe = true
5711
5712# Whether causal splits are used when time_series_recipe is false orwhether to use same train-gap-test splits when lag transformers are disabled (default behavior).For train-test gap, period, etc. to be used when lag-based recipe is disabled, this must be false.
5713#time_series_causal_split_recipe = false
5714
5715# Whether to use lag transformers when using causal-split for validation
5716# (as occurs when not using time-based lag recipe).
5717# If no time groups columns, lag transformers will still use time-column as sole time group column.
5718# 
5719#use_lags_if_causal_recipe = false
5720
5721# 'diverse': explore a diverse set of models built using various expert settings. Note that it's possible to rerun another such diverse leaderboard on top of the best-performing model(s), which will effectively help you compose these expert settings.
5722# 'sliding_window': If the forecast horizon is N periods, create a separate model for each of the (gap, horizon) pairs of (0,n), (n,n), (2*n,n), ..., (2*N-1, n) in units of time periods.
5723# The number of periods to predict per model n is controlled by the expert setting 'time_series_leaderboard_periods_per_model', which defaults to 1.
5724#time_series_leaderboard_mode = "diverse"
5725
5726# Fine-control to limit the number of models built in the 'sliding_window' mode. Larger values lead to fewer models.
5727#time_series_leaderboard_periods_per_model = 1
5728
5729# Whether to create larger validation splits that are not bound to the length of the forecast horizon.
5730#time_series_merge_splits = true
5731
5732# Maximum ratio of training data samples used for validation across splits when larger validation splits are created.
5733#merge_splits_max_valid_ratio = -1.0
5734
5735# Whether to keep a fixed-size train timespan across time-based splits.
5736# That leads to roughly the same amount of train samples in every split.
5737# 
5738#fixed_size_train_timespan = false
5739
5740# Provide date or datetime timestamps (in same format as the time column) for custom training and validation splits like this: "tr_start1, tr_end1, va_start1, va_end1, ..., tr_startN, tr_endN, va_startN, va_endN"
5741#time_series_validation_fold_split_datetime_boundaries = ""
5742
5743# Set fixed number of time-based splits for internal model validation (actual number of splits allowed can be less and is determined at experiment run-time).
5744#time_series_validation_splits = -1
5745
5746# Maximum overlap between two time-based splits. Higher values increase the amount of possible splits.
5747#time_series_splits_max_overlap = 0.5
5748
5749# Earliest allowed datetime (in %Y%m%d format) for which to allow automatic conversion of integers to a time column during parsing. For example, 2010 or 201004 or 20100402 or 201004022312 can be converted to a valid date/datetime, but 1000 or 100004 or 10000402 or 10004022313 can not, and neither can 201000 or 20100500 etc.
5750#min_ymd_timestamp = 19000101
5751
5752# Latest allowed datetime (in %Y%m%d format) for which to allow automatic conversion of integers to a time column during parsing. For example, 2010 or 201004 or 20100402 can be converted to a valid date/datetime, but 3000 or 300004 or 30000402 or 30004022313 can not, and neither can 201000 or 20100500 etc.
5753#max_ymd_timestamp = 21000101
5754
5755# maximum number of data samples (randomly selected rows) for date/datetime format detection
5756#max_rows_datetime_format_detection = 100000
5757
5758# Manually disables certain datetime formats during data ingest and experiments.
5759# For example, ['%y'] will avoid parsing columns that contain '00', '01', '02' string values as a date column.
5760# 
5761#disallowed_datetime_formats = "['%y']"
5762
5763# Whether to use datetime cache
5764#use_datetime_cache = true
5765
5766# Minimum amount of rows required to utilize datetime cache
5767#datetime_cache_min_rows = 10000
5768
5769# Automatically generate is-holiday features from date columns
5770#holiday_features = true
5771
5772#holiday_country = ""
5773
5774# List of countries for which to look up holiday calendar and to generate is-Holiday features for
5775#holiday_countries = "['UnitedStates', 'UnitedKingdom', 'EuropeanCentralBank', 'Germany', 'Mexico', 'Japan']"
5776
5777# Max. sample size for automatic determination of time series train/valid split properties, only if time column is selected
5778#max_time_series_properties_sample_size = 250000
5779
5780# Maximum number of lag sizes to use for lags-based time-series experiments. are sampled from if sample_lag_sizes==True, else all are taken (-1 == automatic)
5781#max_lag_sizes = 30
5782
5783# Minimum required autocorrelation threshold for a lag to be considered for feature engineering
5784#min_lag_autocorrelation = 0.1
5785
5786# How many samples of lag sizes to use for a single time group (single time series signal)
5787#max_signal_lag_sizes = 100
5788
5789# If enabled, sample from a set of possible lag sizes (e.g., lags=[1, 4, 8]) for each lag-based transformer, to no more than max_sampled_lag_sizes lags. Can help reduce overall model complexity and size, esp. when many unavailable columns for prediction.
5790#sample_lag_sizes = false
5791
5792# If sample_lag_sizes is enabled, sample from a set of possible lag sizes (e.g., lags=[1, 4, 8]) for each lag-based transformer, to no more than max_sampled_lag_sizes lags. Can help reduce overall model complexity and size. Defaults to -1 (auto), in which case it's the same as the feature interaction depth controlled by max_feature_interaction_depth.
5793#max_sampled_lag_sizes = -1
5794
5795# Override lags to be used
5796# e.g. [7, 14, 21] # this exact list
5797# e.g. 21 # produce from 1 to 21
5798# e.g. 21:3 produce from 1 to 21 in step of 3
5799# e.g. 5-21 produce from 5 to 21
5800# e.g. 5-21:3 produce from 5 to 21 in step of 3
5801# 
5802#override_lag_sizes = "[]"
5803
5804# Override lags to be used for features that are not known ahead of time
5805# e.g. [7, 14, 21] # this exact list
5806# e.g. 21 # produce from 1 to 21
5807# e.g. 21:3 produce from 1 to 21 in step of 3
5808# e.g. 5-21 produce from 5 to 21
5809# e.g. 5-21:3 produce from 5 to 21 in step of 3
5810# 
5811#override_ufapt_lag_sizes = "[]"
5812
5813# Override lags to be used for features that are known ahead of time
5814# e.g. [7, 14, 21] # this exact list
5815# e.g. 21 # produce from 1 to 21
5816# e.g. 21:3 produce from 1 to 21 in step of 3
5817# e.g. 5-21 produce from 5 to 21
5818# e.g. 5-21:3 produce from 5 to 21 in step of 3
5819# 
5820#override_non_ufapt_lag_sizes = "[]"
5821
5822# Smallest considered lag size
5823#min_lag_size = -1
5824
5825# Whether to enable feature engineering based on selected time column, e.g. Date~weekday.
5826#allow_time_column_as_feature = true
5827
5828# Whether to enable integer time column to be used as a numeric feature.
5829# If using time series recipe, using time column (numeric time stamps) as input features can lead to model that
5830# memorizes the actual time stamps instead of features that generalize to the future.
5831# 
5832#allow_time_column_as_numeric_feature = false
5833
5834# Allowed date or date-time transformations.
5835# Date transformers include: year, quarter, month, week, weekday, day, dayofyear, num.
5836# Date transformers also include: hour, minute, second.
5837# Features in DAI will show up as get_ + transformation name.
5838# E.g. num is a direct numeric value representing the floating point value of time,
5839# which can lead to over-fitting if used on IID problems.  So this is turned off by default.
5840#datetime_funcs = "['year', 'quarter', 'month', 'week', 'weekday', 'day', 'dayofyear', 'hour', 'minute', 'second']"
5841
5842# Whether to filter out date and date-time transformations that lead to unseen values in the future.
5843# 
5844#filter_datetime_funcs = true
5845
5846# Whether to consider time groups columns (tgc) as standalone features.
5847# Note that 'time_column' is treated separately via 'Allow to engineer features from time column'.
5848# Note that tgc_allow_target_encoding independently controls if time column groups are target encoded.
5849# Use allowed_coltypes_for_tgc_as_features for control per feature type.
5850# 
5851#allow_tgc_as_features = true
5852
5853# Which time groups columns (tgc) feature types to consider as standalone features,
5854# if the corresponding flag "Consider time groups columns as standalone features" is set to true.
5855# E.g. all column types would be ["numeric", "categorical", "ohe_categorical", "datetime", "date", "text"]
5856# Note that 'time_column' is treated separately via 'Allow to engineer features from time column'.
5857# Note that if lag-based time series recipe is disabled, then all tgc are allowed features.
5858# 
5859#allowed_coltypes_for_tgc_as_features = "['numeric', 'categorical', 'ohe_categorical', 'datetime', 'date', 'text']"
5860
5861# Whether various transformers (clustering, truncated SVD) are enabled,
5862# that otherwise would be disabled for time series due to
5863# potential to overfit by leaking across time within the fit of each fold.
5864# 
5865#enable_time_unaware_transformers = "auto"
5866
5867# Whether to group by all time groups columns for creating lag features, instead of sampling from them
5868#tgc_only_use_all_groups = true
5869
5870# Whether to allow target encoding of time groups. This can be useful if there are many groups.
5871# Note that allow_tgc_as_features independently controls if tgc are treated as normal features.
5872# 'auto': Choose CV by default.
5873# 'CV': Enable out-of-fold and CV-in-CV (if enabled) encoding
5874# 'simple': Simple memorized targets per group.
5875# 'off': Disable.
5876# Only relevant for time series experiments that have at least one time column group apart from the time column.
5877#tgc_allow_target_encoding = "auto"
5878
5879# if allow_tgc_as_features is true or tgc_allow_target_encoding is true, whether to try both possibilities to see which does better during tuning.  Safer than forcing one way or the other.
5880#tgc_allow_features_and_target_encoding_auto_tune = true
5881
5882# Enable creation of holdout predictions on training data
5883# using moving windows (useful for MLI, but can be slow)
5884#time_series_holdout_preds = true
5885
5886# Max number of splits used for creating final time-series model's holdout/backtesting predictions. With the default value '-1' the same amount of splits as during model validation will be used. Use 'time_series_validation_splits' to control amount of time-based splits used for model validation.
5887#time_series_max_holdout_splits = -1
5888
5889#single_model_vs_cv_score_reldiff = 0.05
5890
5891#single_model_vs_cv_score_reldiff2 = 0.0
5892
5893# Whether to blend ensembles in link space, so that can apply inverse link function to get predictions after blending. This allows to get Shapley values to sum up to final predictions, after applying inverse link function: preds = inverse_link(   (blend(base learner predictions in link space   )))      = inverse_link(sum(blend(base learner shapley values in link space)))      = inverse_link(sum(      ensemble shapley values in link space     ))For binary classification, this is only supported if inverse_link = logistic = 1/(1+exp(-x))For multiclass classification, this is only supported if inverse_link = softmax = exp(x)/sum(exp(x))For regression, this behavior happens naturally if all base learners use the identity link function, otherwise not possible
5894#blend_in_link_space = true
5895
5896# Whether to speed up time-series holdout predictions for back-testing on training data (used for MLI and metrics calculation). Can be slightly less accurate.
5897#mli_ts_fast_approx = false
5898
5899# Whether to speed up Shapley values for time-series holdout predictions for back-testing on training data (used for MLI). Can be slightly less accurate.
5900#mli_ts_fast_approx_contribs = true
5901
5902# Enable creation of Shapley values for holdout predictions on training data
5903# using moving windows (useful for MLI, but can be slow), at the time of the experiment. If disabled, MLI will
5904# generate Shapley values on demand.
5905#mli_ts_holdout_contribs = true
5906
5907# Values of 5 or more can improve generalization by more aggressive dropping of least important features. Set to 1 to disable.
5908#time_series_min_interpretability = 5
5909
5910# Dropout mode for lag features in order to achieve an equal n.a.-ratio between train and validation/test. The independent mode performs a simple feature-wise dropout, whereas the dependent one takes lag-size dependencies per sample/row into account.
5911#lags_dropout = "dependent"
5912
5913# Normalized probability of choosing to lag non-targets relative to targets (-1.0 = auto)
5914#prob_lag_non_targets = -1.0
5915
5916# Method to create rolling test set predictions, if the forecast horizon is shorter than the time span of the test set. One can choose between test time augmentation (TTA), batch TTA or a successive refitting of the final pipeline. Batch TTA operates in by_column mode only: each unique value of 'batch_tta_run_id_column' defines one forecast run, and predictions from earlier runs are memo-backfilled as context for later runs. 'batch_tta_run_id_column' must be a valid column in the test file when 'batch_tta' is chosen, otherwise falls back to 'tta'.
5917#rolling_test_method = "tta"
5918
5919#rolling_test_method_max_splits = 1000
5920
5921# Apply TTA in one pass instead of using rolling windows for internal validation split predictions. Note: Setting this to 'False' leads to significantly longer runtimes.
5922#fast_tta_internal = true
5923
5924# Apply TTA in one pass instead of using rolling windows for test set predictions. This only applies if the forecast horizon is shorter than the time span of the test set. Note: Setting this to 'False' leads to significantly longer runtimes.
5925#fast_tta_test = true
5926
5927# Probability for new Lags/EWMA gene to use default lags (determined by frequency/gap/horizon, independent of data) (-1.0 = auto)
5928#prob_default_lags = -1.0
5929
5930# Unnormalized probability of choosing other lag time-series transformers based on interactions (-1.0 = auto)
5931#prob_lagsinteraction = -1.0
5932
5933# Unnormalized probability of choosing other lag time-series transformers based on aggregations (-1.0 = auto)
5934#prob_lagsaggregates = -1.0
5935
5936# Time series centering or detrending transformation. The free parameter(s) of the trend model are fitted and the trend is removed from the target signal, and the pipeline is fitted on the residuals. Predictions are made by adding back the trend. Note: Can be cascaded with 'Time series lag-based target transformation', but is mutually exclusive with regular target transformations. The robust centering or linear detrending variants use RANSAC to achieve a higher tolerance w.r.t. outliers. The Epidemic target transformer uses the SEIR model: https://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model
5937#ts_target_trafo = "none"
5938
5939# Dictionary to control Epidemic SEIRD model for de-trending of target per time series group.
5940# Note: The target column must correspond to I(t), the infected cases as a function of time.
5941# For each training split and time series group, the SEIRD model is fitted to the target signal (by optimizing
5942# the free parameters shown below for each time series group).
5943# Then, the SEIRD model's value is subtracted from the training response, and the residuals are passed to
5944# the feature engineering and modeling pipeline. For predictions, the SEIRD model's value is added to the residual
5945# predictions from the pipeline, for each time series group.
5946# Note: Careful selection of the bounds for the free parameters N, beta, gamma, delta, alpha, rho, lockdown,
5947# beta_decay, beta_decay_rate is extremely important for good results.
5948# - S(t) : susceptible/healthy/not immune
5949# - E(t) : exposed/not yet infectious
5950# - I(t) : infectious/active <= target column
5951# - R(t) : recovered/immune
5952# - D(t) : deceased
5953# ### Free parameters:
5954# - N : total population, N=S+E+I+R+D
5955# - beta : rate of exposure (S -> E)
5956# - gamma : rate of recovering (I -> R)
5957# - delta : incubation period
5958# - alpha : fatality rate
5959# - rho : rate at which people die
5960# - lockdown : day of lockdown (-1 => no lockdown)
5961# - beta_decay : beta decay due to lockdown
5962# - beta_decay_rate : speed of beta decay
5963# ### Dynamics:
5964# if lockdown >= 0:
5965# beta_min = beta * (1 - beta_decay)
5966# beta = (beta - beta_min) / (1 + np.exp(-beta_decay_rate * (-t + lockdown))) + beta_min
5967# dSdt = -beta * S * I / N
5968# dEdt = beta * S * I / N - delta * E
5969# dIdt = delta * E - (1 - alpha) * gamma * I - alpha * rho * I
5970# dRdt = (1 - alpha) * gamma * I
5971# dDdt = alpha * rho * I
5972# Provide lower/upper bounds for each parameter you want to control the bounds for. Valid parameters are:
5973# N_min, N_max, beta_min, beta_max, gamma_min, gamma_max, delta_min, delta_max, alpha_min, alpha_max,
5974# rho_min, rho_max, lockdown_min, lockdown_max, beta_decay_min, beta_decay_max,
5975# beta_decay_rate_min, beta_decay_rate_max. You can change any subset of parameters, e.g.,
5976# ts_target_trafo_epidemic_params_dict="{'N_min': 1000, 'beta_max': 0.2}"
5977# To get SEIR model (in cases where death rates are very low, can speed up calculations significantly):
5978# set alpha_min=alpha_max=rho_min=rho_max=beta_decay_rate_min=beta_decay_rate_max=0, lockdown_min=lockdown_max=-1.
5979# 
5980#ts_target_trafo_epidemic_params_dict = "{}"
5981
5982#ts_target_trafo_epidemic_target = "I"
5983
5984# Time series lag-based target transformation. One can choose between difference and ratio of the current and a lagged target. The corresponding lag size can be set via 'Target transformation lag size'. Note: Can be cascaded with 'Time series target transformation', but is mutually exclusive with regular target transformations.
5985#ts_lag_target_trafo = "none"
5986
5987# Lag size used for time series target transformation. See setting 'Time series lag-based target transformation'. -1 => smallest valid value = prediction periods + gap (automatically adjusted by DAI if too small).
5988#ts_target_trafo_lag_size = -1
5989
5990# Maximum amount of columns send from UI to backend in order to auto-detect TGC
5991#tgc_via_ui_max_ncols = 10
5992
5993# Maximum frequency of duplicated timestamps for TGC detection
5994#tgc_dup_tolerance = 0.01
5995
5996# Timeout in seconds for time-series properties detection in UI.
5997#timeseries_split_suggestion_timeout = 30.0
5998
5999# Weight TS models scores as split number to this power.
6000# E.g. Use 1.0 to weight split closest to horizon by a factor
6001# that is number of splits larger than oldest split.
6002# Applies to tuning models and final back-testing models.
6003# If 0.0 (default) is used, median function is used, else mean is used.
6004# 
6005#timeseries_recency_weight_power = 0.0
6006
6007# Whether to force date column format conversion during prediction. Date format
6008# is inferred during training and assumes prediction data has the same format.
6009# Enable this setting would force DAI to do the format conversion silently.
6010# For instance, if expected format is '%m/%d/%Y' but prediction comes with '2000-01-01', then
6011# conversion will be done by converting the date representation into 'yyyy-mm-dd' on ad hoc fashion.
6012# Note: Even force conversion, this normally wont affect embedding information of the date column.
6013# 
6014#force_on_convert_incorrect_date_format = false
6015
6016# How to aggregate overlapping predictions when memo-backfilling target history
6017# across batch TTA runs. When multiple earlier runs have produced predictions for the
6018# same (timestamp, group) key, this function reduces them to a single value before
6019# injecting into the memo for subsequent runs' lag feature computation.
6020# Applies to both test holdout evaluation (via 'rolling_test_method=batch_tta') and
6021# standalone inference (via 'make_tta_prediction') as default aggregation mode.
6022# 
6023#batch_tta_aggregation_mode = "mean"
6024
6025# When enabled, removes trend and seasonal patterns from the target before ACF-based lag ranking. Stationarity test gates trend removal; seasonal detection runs independently. Detected seasonal periods are force-injected into the lag set. Produces a higher-quality initial lag set for the GA, improving convergence especially at lower accuracy settings.
6026#detrend_before_lag = false
6027
6028# Used when 'detrend_before_lag' is enabled. After BIC selects the polynomial degree, this F-test validates the fit is meaningful. If p >= threshold, the polynomial is discarded. Lower = more conservative. Default 0.01.
6029#max_f_test_fitness_p_value = 0.01
6030
6031# Used when 'detrend_before_lag' is enabled. 'c' = constant, 'ct' = constant + trend (default), 'ctt' = constant + trend + quadratic, 'n' = none.
6032#adf_test_regression_mode = "ct"
6033
6034# Used when 'detrend_before_lag' is enabled. ADF p < threshold suggests stationarity (no unit root). Both ADF and KPSS must agree to skip trend removal. Lower = more conservative. Default 0.01.
6035#max_adf_test_p_value = 0.01
6036
6037# Used when 'detrend_before_lag' is enabled. 'c' = stationarity around constant mean (default), 'ct' = stationarity around linear trend. Default 'c' ensures deterministic trends are not absorbed by the test.
6038#kpss_test_regression_mode = "c"
6039
6040# Used when 'detrend_before_lag' is enabled. KPSS p > threshold suggests stationarity. Both ADF and KPSS must agree to skip trend removal. Higher = more conservative. Default 0.05.
6041#min_kpss_test_p_value = 0.05
6042
6043# Used when 'detrend_before_lag' is enabled. 'stl': robust to outliers, additive mode only. 'classical': supports additive and multiplicative, less robust.
6044#seasonal_decomposition_method = "stl"
6045
6046# Used when 'detrend_before_lag' is enabled. 'additive': constant seasonal amplitude (default, suits most series). 'multiplicative': seasonal amplitude scales with level (requires values > 0, only with 'classical' method).
6047#seasonal_decompose_mode = "additive"
6048
6049# Used when 'detrend_before_lag' is enabled. Minimum number of complete cycles required for seasonal detection. Higher values require more evidence. Default 3.
6050#seasonal_min_cycles = 3
6051
6052# Used when 'detrend_before_lag' is enabled. Shortest seasonal period (in time steps) considered valid. Periods below this are treated as noise. Default 3.
6053#seasonal_min_periods = 3
6054
6055# Used when 'detrend_before_lag' is enabled. Longest seasonal period (in time steps) considered valid. -1 = automatic (derived from series length and min_seasonal_cycles). Set a positive value to cap detection (e.g., 365 for daily data).
6056#seasonal_max_periods = -1
6057
6058# Used when 'detrend_before_lag' is enabled. Number of robust standard deviations above the noise floor for a frequency peak to be considered seasonal. Higher = more conservative. Must be > 'seasonal_fft_cluster_sigma' (detection is stricter than cluster membership). Violating this constraint will not break training but may produce inaccurate seasonal period estimates, leading to suboptimal lag selection. Default 5.0.
6059#seasonal_fft_detection_sigma = 5.0
6060
6061# Used when 'detrend_before_lag' is enabled. Threshold for grouping neighboring frequency bins around the detected peak to refine the period estimate. Must be < fft_detection_sigma. Default 3.0.
6062#seasonal_fft_cluster_sigma = 3.0
6063
6064# Used when 'detrend_before_lag' is enabled. Maximum ratio of seasonal ACF strength after vs before decomposition. If the ratio >= this threshold, the decomposition is considered insufficient and discarded. Lower = stricter. Default 0.9 (require >= 10% reduction).
6065#seasonal_max_acf_retention_ratio = 0.9
6066
6067# Used when 'detrend_before_lag' is enabled. Number of harmonic multiples of the detected period used to validate seasonal decomposition quality. Default 3.
6068#seasonal_max_acf_validation_harmonics = 3
6069
6070# Used when 'detrend_before_lag' is enabled. Cap on ACF lags for decomposition validation. -1 = automatic (derived from period and harmonics). Set a positive value to limit computation on long series.
6071#seasonal_max_acf_validation_lags = -1
6072
6073# Minimum observation count ratio (relative to the longest series) required for a time group to be included in ACF-based lag ranking. 0.0 = automatic (adjusted by accuracy knob: high accuracy relaxes the filter to include more groups, low accuracy keeps only exact-match groups). Values in (0.0, 1.0) set the threshold directly: e.g. 0.8 means groups with fewer than 80%% of the maximum observation count are excluded. 1.0 = only groups with maximum observation count (previous default behavior). Warning: Do not manually set small positive values (e.g., 0.05) as they may include very short series that degrade ACF quality. Use 0.0 for automatic adjustment instead.
6074#min_tgc_series_length_ratio = 0.0
6075
6076# Maximum number of time-group-column series sampled for ACF-based lag ranking. Only groups passing the minimum observation ratio filter (min_tgc_series_length_ratio) are eligible. Larger values improve lag diversity for multi-group datasets at the cost of computation time. -1 = automatic (adaptive based on number of groups and series length).
6077#max_tgc_series = -1
6078
6079# Lower bound of the random dropout fraction applied to lag candidates per gene when detrend_before_lag is enabled and sample_lag_sizes is disabled. Each gene randomly drops between [lower, upper) fraction of its lag candidates to create combinatorial diversity across the population. Set lower == upper to disable dropout entirely.
6080#lag_diversity_dropout_lower = 0.1
6081
6082# Upper bound of the random dropout fraction applied to lag candidates per gene when detrend_before_lag is enabled and sample_lag_sizes is disabled. Each gene randomly drops between [lower, upper) fraction of its lag candidates to create combinatorial diversity across the population. Set upper == lower to disable dropout entirely.
6083#lag_diversity_dropout_upper = 0.3
6084
6085# When enabled, selects time group series for lag ranking using variance-stratified sampling, ensuring both high-variance (trending/seasonal) and low-variance (stationary) groups contribute to the ACF-based ranking. When disabled, selects the longest series (previous default behavior).
6086#enable_stratified_tgc_sampling = true
6087
6088# Every *.toml file is read from this directory and process the same way as main config file.
6089#user_config_directory = ""
6090
6091# IP address for the procsy process.
6092#procsy_ip = "127.0.0.1"
6093
6094# Port for the procsy process.
6095#procsy_port = 12347
6096
6097# Request timeout (in seconds) for the procsy process.
6098#procsy_timeout = 3600
6099
6100# IP address for use by MLI.
6101#h2o_ip = "127.0.0.1"
6102
6103# Port of H2O instance for use by MLI. Each H2O node has an internal port (web port+1, so by default port 12349) for internal node-to-node communication
6104#h2o_port = 12348
6105
6106# IP address and port for Driverless AI HTTP server.
6107#ip = "127.0.0.1"
6108
6109# IP address and port for Driverless AI HTTP server.
6110#port = 12345
6111
6112# A list of two integers indicating the port range to search over, and dynamically find an open port to bind to (e.g., [11111,20000]).
6113#port_range = "[]"
6114
6115# Strict version check for DAI
6116#strict_version_check = true
6117
6118# File upload limit (default 100GB)
6119#max_file_upload_size = 104857600000
6120
6121# Data directory. All application data and files related datasets and
6122# experiments are stored in this directory.
6123#data_directory = "./tmp"
6124
6125# Sets a custom path for the master.db. Use this to store the database outside the data directory,
6126# which can improve performance if the data directory is on a slow drive.
6127#db_path = ""
6128
6129# Datasets directory. If set, it will denote the location from which all
6130# datasets will be read from and written into, typically this location shall be configured to be
6131# on an external file system to allow for a more granular control to just the datasets volume.
6132# If empty then will default to data_directory.
6133#datasets_directory = ""
6134
6135# Path to the directory where the logs of HDFS, Hive, JDBC, and KDB+ data connectors will be saved.
6136#data_connectors_logs_directory = "./tmp"
6137
6138# Subdirectory within data_directory to store server logs.
6139#server_logs_sub_directory = "server_logs"
6140
6141# Subdirectory within data_directory to store pid files for controlling kill/stop of DAI servers.
6142#pid_sub_directory = "pids"
6143
6144# Path to the directory which will be use to save MapR tickets when MapR multi-user mode is enabled.
6145# This is applicable only when enable_mapr_multi_user_mode is set to true.
6146# 
6147#mapr_tickets_directory = "./tmp/mapr-tickets"
6148
6149# MapR tickets duration in minutes, if set to -1, it will use the default value
6150# (not specified in maprlogin command), otherwise will be the specified configuration
6151# value but no less than one day.
6152# 
6153#mapr_tickets_duration_minutes = -1
6154
6155# Whether at server start to delete all temporary uploaded files, left over from failed uploads.
6156# 
6157#remove_uploads_temp_files_server_start = true
6158
6159# Whether to run through entire data directory and remove all temporary files.
6160# Can lead to slow start-up time if have large number (much greater than 100) of experiments.
6161# 
6162#remove_temp_files_server_start = false
6163
6164# Whether to delete temporary files after experiment is aborted/cancelled.
6165# 
6166#remove_temp_files_aborted_experiments = true
6167
6168# Whether to opt in to usage statistics and bug reporting
6169#usage_stats_opt_in = true
6170
6171# Configurations for a HDFS data source
6172# Path of hdfs coresite.xml
6173# core_site_xml_path is deprecated, please use hdfs_config_path
6174#core_site_xml_path = ""
6175
6176# (Required) HDFS config folder path. Can contain multiple config files.
6177#hdfs_config_path = ""
6178
6179# Path of the principal key tab file. Required when hdfs_auth_type='principal'.
6180# key_tab_path is deprecated, please use hdfs_keytab_path
6181# 
6182#key_tab_path = ""
6183
6184# Path of the principal key tab file. Required when hdfs_auth_type='principal'.
6185# 
6186#hdfs_keytab_path = ""
6187
6188# Whether to delete preview cache on server exit
6189#preview_cache_upon_server_exit = true
6190
6191# When this setting is enabled, any user can see all tasks running in the system, including their owner and an identification key. If this setting is turned off, user can see only their own tasks.
6192#all_tasks_visible_to_users = true
6193
6194# When enabled, server exposes Health API at /apis/health/v1, which provides system overview and utilization statistics
6195#enable_health_api = true
6196
6197#notification_url = "https://ai-h2o-notifications.cdn.h2o.ai/dai_notifications_prod.json"
6198
6199# When enabled, the notification scripts will inherit
6200# the parent's process (DriverlessAI) environment variables.
6201# 
6202#listeners_inherit_env_variables = false
6203
6204# Notification scripts
6205# - the variable points to a location of script which is executed at given event in experiment lifecycle
6206# - the script should have executable flag enabled
6207# - use of absolute path is suggested
6208# The on experiment start notification script location
6209#listeners_experiment_start = ""
6210
6211# The on experiment finished notification script location
6212#listeners_experiment_done = ""
6213
6214# The on experiment import notification script location
6215#listeners_experiment_import_done = ""
6216
6217# Notification script triggered when building of MOJO pipeline for experiment is
6218# finished. The value should be an absolute path to executable script.
6219# 
6220#listeners_mojo_done = ""
6221
6222# Notification script triggered when rendering of AutoDoc for experiment is
6223# finished. The value should be an absolute path to executable script.
6224# 
6225#listeners_autodoc_done = ""
6226
6227# Notification script triggered when building of python scoring pipeline
6228# for experiment is finished.
6229# The value should be an absolute path to executable script.
6230# 
6231#listeners_scoring_pipeline_done = ""
6232
6233# Notification script triggered when experiment and all its artifacts selected
6234# at the beginning of experiment are finished building.
6235# The value should be an absolute path to executable script.
6236# 
6237#listeners_experiment_artifacts_done = ""
6238
6239# Whether to run quick performance benchmark at start of application
6240#enable_quick_benchmark = true
6241
6242# Whether to run extended performance benchmark at start of application
6243#enable_extended_benchmark = false
6244
6245# Scaling factor for number of rows for extended performance benchmark. For rigorous performance benchmarking,
6246# values of 1 or larger are recommended.
6247#extended_benchmark_scale_num_rows = 0.1
6248
6249# Number of columns for extended performance benchmark.
6250#extended_benchmark_num_cols = 20
6251
6252# Seconds to allow for testing memory bandwidth by generating numpy frames
6253#benchmark_memory_timeout = 2
6254
6255# Maximum portion of vm total to use for numpy memory benchmark
6256#benchmark_memory_vm_fraction = 0.25
6257
6258# Maximum number of columns to use for numpy memory benchmark
6259#benchmark_memory_max_cols = 1500
6260
6261# Whether to run quick startup checks at start of application
6262#enable_startup_checks = true
6263
6264# Application ID override, which should uniquely identify the instance
6265#application_id = ""
6266
6267# After how many seconds to abort MLI recipe execution plan or recipe compatibility checks.
6268# Blocks main server from all activities, so long timeout is not desired, esp. in case of hanging processes,
6269# while a short timeout can too often lead to abortions on busy system.
6270# 
6271#main_server_fork_timeout = 10.0
6272
6273# After how many days the audit log records are removed.
6274# Set equal to 0 to disable removal of old records.
6275# 
6276#audit_log_retention_period = 5
6277
6278# Time to wait after performing a cleanup of temporary files for in-browser dataset upload.
6279# 
6280#dataset_tmp_upload_file_retention_time_min = 5
6281