Login
Back to bricks list
Introduction Version

Base decomp result

RESOURCE
Typing name :  RESOURCE.gws_gaia.BaseDecompResult Brick :  gws_gaia

BaseSupervisedResult

Views

RESOURCES LISTDefault view
List the resources
VIEW RESOURCE
View the complete resource as json
2D-SCORE PLOT
2D-score plot

Functions

__INIT__

Constructor, please do not overwrite this method, use the init method instead Leave the constructor without parameters.

Parameters:
NameTypeDefault valueDescription
training_setstr None
training_designstr None
resultstr None
ADD_RESOURCE

Add a resource to the set

can be retrieve by calling the get_resource method with the name. If not provided, the resource name is used Otherwise it doesn't create a new resource but references it. In this case the resource must be an input of the task that created the ResourceSet and the resource must have been saved before, defaults to True

Parameters:
NameTypeDefault valueDescription
resourceResource Resource to add
unique_namestr None Name used to store the resource in the dict. it must be unique. the resource
create_new_resourcebool True If true, a new resource is created when saving the resource. , optional
ADD_TECHNICAL_INFO

Add technical information on the resource. Technical info are useful to set additional information on the resource.

Parameters:
NameTypeDefault valueDescription
technical_infoTechnicalInfo Technical information to add (key, value)
CHECK_RESOURCE

You can redefine this method to define custom logic to check this resource. If there is a problem with the resource, return a string that define the error, otherwise return None This method is called on output resources of a task. If there is an error returned, the task will be set to error and next proceses will not be run. It is also call when uploading a resource (usually for files or folder), if there is an error returned, the resource will not be uploaded

Return type:
Union[str, NoneType]
CLEAR_RESOURCES
CLONE

Clone the resource to create a new instance with a new id. It copies the RFields.

Return type:
ResourceType
GET_DEFAULT_NAME

You can redefine this method to set a name of the resource. When saving the resource the name will be saved automatically This can be useful to distinguish this resource from another one or to search for the resource

Return type:
str
GET_PREDICTION_SCORE
GET_PREDICTION_TABLE

Get prediction table

GET_RESOURCE
Parameters:
NameTypeDefault valueDescription
resource_namestr
Return type:
Resource
GET_RESOURCE_IDS
Return type:
Set
GET_RESOURCE_MODELS
Return type:
List
GET_RESOURCES
Return type:
Dict
GET_RESOURCES_AS_SET
Return type:
Set
GET_RESULT

Get the result

GET_TECHNICAL_INFO

Get the technical information of the resource

Parameters:
NameTypeDefault valueDescription
keystr Key of the technical information
Return type:
TechnicalInfo
GET_TRAINING_DESIGN
GET_TRAINING_SET

Get the training set

GET_TRANSFORMED_TABLE

Get transformed table

GET_VARIANCE_TABLE

Get variance table

INIT

This can be overwritten to perform custom initialization of the resource. This method is called just after the init (constructor) of the resource. The default values of RFields are set before this method is called.

PREDICT
Parameters:
NameTypeDefault valueDescription
tableTable
Return type:
Table
RESOURCE_EXISTS
Parameters:
NameTypeDefault valueDescription
resource_namestr
Return type:
Resource
VIEW_SCORES_AS_2D_PLOT

View 2D score plot

Parameters:
NameTypeDefault valueDescription
paramsConfigParams
Return type:
dict