abacusai.training_config_options
Module Contents
Classes
Training options for a model |
- class abacusai.training_config_options.TrainingConfigOptions(client, name=None, dataType=None, valueType=None, valueOptions=None, value=None, default=None, options=None, description=None, required=None, lastModelValue=None)
Bases:
abacusai.return_class.AbstractApiClass
Training options for a model
- Parameters
client (ApiClient) – An authenticated API Client instance
name (str) – The name of the parameter
dataType (str) – The type of input required for this option
valueType (str) – If the data_type is of type DICT_VALUES, this field specifies the expected value type of the values
valueOptions (list of string) – The list of valid values for DICT_VALUES
value (string/number) – The value of this option
default (boolean/string/number) – The default value for this option
options (list of json objects) – A list of options for this parameter
description (str) – A description of the parameter
required (bool) – True if the parameter is required for training
lastModelValue (string/number) – The last value used to train a model in this project
- __repr__()
Return repr(self).