PredictabilityEstimateVersion - Global
The PredictabilityEstimateVersion API is a scriptable object used in Predictive Intelligence stores.
This API requires the Predictive Intelligence plugin (com.glide.platform_ml) and is provided
within the sn_ml namespace.
Use this API when working with predictability estimate versions based on PredictabilityEstimate API objects in the PredictabilityEstimate store.
The system activates the most recent version of the predictability estimate when it completes training, and only allows one version to be active at a time. However, you can activate any previously trained version you want to use to make predictions.
PredictabilityEstimateVersion - getProperties()
Gets predictability estimate object properties and version number.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Object | Contents of the Dataset and PredictabilityEstimate version details. Results vary by object property
setup. |
| <Object>.datasetProperties | Lists the properties of the DatasetDefinition() object associated with the predictability estimate.
Data type: Object. |
| <Object>.datasetProperties.tableName | Name of the table for the dataset. For
example, "tableName" : "Incident".
Data type: String. |
| <Object>.datasetProperties.fieldNames | List of field names from the specified table
as strings. For example, "fieldNames" : ["short_description",
"priority"].
Data type: Array. |
| <Object>.datasetProperties.fieldNames.fieldDetails | List of JavaScript objects that specify field
properties.
Data type: Array. |
| <Object>.datasetProperties.fieldNames.fieldDetails.<object>.name | Name of the field defining the type of
information to restrict this dataset to.
Data type: String. |
| <Object>.datasetProperties.fieldDetails.<object>.type | Machine-learning field type.
Data type: String. |
| <Object>.datasetProperties.fieldDetails.encodedQuery | Encoded query string in the standard platform format. See Encoded query strings. Data type: String. |
| <Object>.domainName | Domain name associated with this dataset. See Domain separation and Predictive Intelligence. Type: String |
| <Object>.inputFieldNames | List of candidate input fields as strings to be considered for
estimation. Data type: String. |
| <Object>.isActive | Flag that indicates whether this version is
active. Valid values:
Data type: String |
| <Object>.label | Identifies the prediction
task.
Data type: String. |
| <Object>.name | System-assigned name.
Data type: String. |
| <Object>.predictedFieldName | Identifies a field to be trained for
predictability.
Data type: String. |
| <Object>.scope | Object scope. Currently the only valid value is
global.Data type: String |
| <Object>.trainingFrequency | The frequency to retrain the model.
Possible values:
Data type: String. |
| <Object>.versionNumber | Version number of
the
PredictabilityEstimate object. Data type: String. |
The following example gets properties of the active object version in the store.
// Get properties
var mlEstimate = sn_ml.PredictabilityEstimateStore.get('ml_incident_categorization');
gs.print(JSON.stringify(JSON.parse(mlEstimate.getActiveVersion().getProperties()), null, 2));
Output:
"datasetProperties": {
"encodedQuery": "activeANYTHING^EQ",
"fieldNames": [
"short_description",
"category"
],
"tableName": "incident"
},
"domainName": "global",
"inputFieldNames": [
"short_description"
],
"isActive": "true",
"label": "Incident Categorization_Trainer",
"name": "ml_incident_categorization",
"predictedFieldName": "category",
"processingLanguage": "en",
"stopwords": [
"Default English Stopwords"
],
"versionNumber": "1"
}
PredictabilityEstimateVersion - getResults()
Returns JSON results containing suggested input fields for an output field.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Object | JSON object results containing suggested input field options for an output field. |
| <Object>.<output field name> | Output field name, e.g., category, containing
suggested input
fields.
Data type: Object |
| <Object>.<output field name>.nominalInputFields | Nominal input field
details.
Data type: Array. |
| <Object>.<output field name>.nominalInputFields.fieldName | Nominal input field name. Data type: String. |
| <Object>.<output field name>.nominalInputFields.modelImprovement | Score as a relative indication of how likely this field is to improve
results. Data type: Number as a string. |
| <Object>.textInputFields | Text input field
details.
Data type: Array. |
| <Object>.textInputFields.fieldName | Text input field name. Data type: String. |
| <Object>.textInputFields.density | Value between 0 and 1.0 that represents frequency that the field is not empty.
A value of 1.0 means that the field is not empty in all rows, and a value of 0
indicates that the field is empty in all rows. Data type: Number as a string. |
The following example shows how to get results for a selected version of a predictability estimate in the store.
// Get results
var estimateName = "ml_x_snc_global_global_predictability_estimate;"
var mlEstimate = sn_ml.PredictabilityEstimateStore.get(estimateName);
var results = mlEstimate.getActiveVersion().getResults();
gs.print(JSON.stringify(JSON.parse(results), null, 2));
Output:
{
"category": {
"nominalInputFields": [
{
"fieldName": "number",
"modelImprovement": "0.167052396325189"
},
{
"fieldName": "task_effective_number",
"modelImprovement": "0.167052396325189"
}
],
"textInputFields": [
{
"fieldName": "short_description",
"density": "1.0"
}
]
}
}
PredictabilityEstimateVersion - getStatus(Boolean includeDetails)
Gets training completion status.
| Name | Type | Description |
|---|---|---|
| includeDetails | Boolean | Flag that indicates whether to return status details. Valid values:
Default: False |
| Type | Description |
|---|---|
| Object | JavaScript object containing training
status information
for a PredictabilityEstimate
object. |
| <Object>.state | Training completion state. If the training job reaches a terminal state, the job does not leave that state. If the state is terminal, the hasJobEnded property
is set to true.Possible values:
Data type: String |
| <Object>.hasJobEnded | Flag that indicates whether training is complete. Valid values:
Data type: Boolean value as a String |
| <Object>.percentComplete | Training percent complete. If the completion percentage is less than 100, the job might be in a terminal state. For example, if training times out. Data type: Number as a String Range: 0 thru 100 |
| <Object>.details | Object containing a list of additional
training details. Data type: Object |
The following example shows a successful result with training complete.
// Get status
var mlEstimate = sn_ml.PredictabilityEstimateStore.get('ml_incident_categorization');
gs.print(JSON.stringify(JSON.parse(mlEstimate.getActiveVersion().getStatus(true), null, 2)));
Output:
{
"state":"solution_complete",
"percentComplete":"100",
"hasJobEnded":"true",
"details":{"stepLabel":"Solution Complete"} // This information is only returned if getStatus(true);
}
The following example shows an unsuccessful result with training complete.
// Get status
var mlEstimate = sn_ml.PredictabilityEstimateStore.get('ml_x_snc_global_global_my_estimate_definition');
var trainingStatus = mlEstimate.getLatestVersion().getStatus();
gs.print(JSON.stringify(JSON.parse(trainingStatus), null, 2));
Output:
{
"state": "solution_complete",
"percentComplete": "100",
"hasJobEnded": "true"
}
PredictabilityEstimateVersion - getVersionNumber()
Gets the version number of a predictability estimate object.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| String | Version number. |
The following example shows how to get a version number.
// Get version number
var mlEstimate = sn_ml.PredictabilityEstimateStore.get('ml_x_snc_global_global_predictability_estimate');
gs.print("Version number: "+JSON.stringify(JSON.parse(mlEstimate.getActiveVersion().getVersionNumber()), null, 2));
Output:
Version number: 1