abacusai.project

Module Contents

Classes

Project

A project is a container which holds datasets, models and deployments

class abacusai.project.Project(client, projectId=None, name=None, useCase=None, problemType=None, createdAt=None, featureGroupsEnabled=None)

Bases: abacusai.return_class.AbstractApiClass

A project is a container which holds datasets, models and deployments

Parameters:
  • client (ApiClient) – An authenticated API Client instance

  • projectId (str) – The ID of the project.

  • name (str) – The name of the project.

  • useCase (str) – The use case associated with the project.

  • problemType (str) – The problem type associated with the project.

  • createdAt (str) – The date and time when the project was created.

  • featureGroupsEnabled (bool) – Project uses feature groups instead of datasets.

__repr__()

Return repr(self).

to_dict()

Get a dict representation of the parameters in this class

Returns:

The dict value representation of the class parameters

Return type:

dict

refresh()

Calls describe and refreshes the current object’s fields

Returns:

The current object

Return type:

Project

describe()

Returns a description of a project.

Parameters:

project_id (str) – A unique string identifier for the project.

Returns:

The description of the project.

Return type:

Project

list_datasets()

Retrieves all datasets associated with a specified project. This API returns all attributes of each dataset, such as its name, type, and ID.

Parameters:

project_id (str) – Unique string identifier associated with the project.

Returns:

A list representing all of the datasets attached to the project.

Return type:

ProjectDataset

get_schema(dataset_id)

[DEPRECATED] Returns a schema given a specific dataset in a project. The schema of the dataset consists of the columns in the dataset, the data type of the column, and the column’s column mapping.

Parameters:

dataset_id (str) – The unique ID associated with the dataset.

Returns:

An array of objects for each column in the specified dataset.

Return type:

Schema

rename(name)

This method renames a project after it is created.

Parameters:

name (str) – The new name for the project.

delete()

Delete a specified project from your organization.

This method deletes the project, its associated trained models, and deployments. The datasets attached to the specified project remain available for use with other projects in the organization.

This method will not delete a project that contains active deployments. Ensure that all active deployments are stopped before using the delete option.

Note: All projects, models, and deployments cannot be recovered once they are deleted.

Parameters:

project_id (str) – The unique ID of the project to delete.

set_feature_mapping(feature_group_id, feature_name, feature_mapping, nested_column_name=None)

Set a column’s feature mapping. If the column mapping is single-use and already set in another column in this feature group, this call will first remove the other column’s mapping and move it to this column.

Parameters:
  • feature_group_id (str) – The unique ID associated with the feature group.

  • feature_name (str) – The name of the feature.

  • feature_mapping (str) – The mapping of the feature in the feature group.

  • nested_column_name (str) – The name of the nested column if the input feature is part of a nested feature group for the given feature_group_id.

Returns:

A list of objects that describes the resulting feature group’s schema after the feature’s featureMapping is set.

Return type:

Feature

validate(feature_group_ids=None)

Validates that the specified project has all required feature group types for its use case and that all required feature columns are set.

Parameters:

feature_group_ids (list) – The list of feature group IDs to validate.

Returns:

The project validation. If the specified project is missing required columns or feature groups, the response includes an array of objects for each missing required feature group and the missing required features in each feature group.

Return type:

ProjectValidation

set_column_data_type(dataset_id, column, data_type)

Set the data type of a dataset’s column.

Parameters:
  • dataset_id (str) – The unique ID associated with the dataset.

  • column (str) – The name of the column.

  • data_type (str) – The type of data in the column. Refer to the [guide on feature types](FEATURE_TYPES_URL) for more information. Note: Some ColumnMappings will restrict the options or explicitly set the DataType. Possible values: CATEGORICAL, CATEGORICAL_LIST, NUMERICAL, TIMESTAMP, TEXT, EMAIL, LABEL_LIST, JSON, OBJECT_REFERENCE, MULTICATEGORICAL_LIST, COORDINATE_LIST, NUMERICAL_LIST, TIMESTAMP_LIST

Returns:

A list of objects that describes the resulting dataset’s schema after the column’s data type is set.

Return type:

Schema

set_column_mapping(dataset_id, column, column_mapping)

Set a dataset’s column mapping. If the column mapping is single-use and already set in another column in this dataset, this call will first remove the other column’s mapping and move it to this column.

Parameters:
  • dataset_id (str) – The unique ID associated with the dataset.

  • column (str) – The name of the column.

  • column_mapping (str) – The mapping of the column in the dataset. See a list of column mapping enums here.

Returns:

A list of columns that describes the resulting dataset’s schema after the column’s columnMapping is set.

Return type:

Schema

remove_column_mapping(dataset_id, column)

Removes a column mapping from a column in the dataset. Returns a list of all columns with their mappings once the change is made.

Parameters:
  • dataset_id (str) – The unique ID associated with the dataset.

  • column (str) – The name of the column.

Returns:

A list of objects that describes the resulting dataset’s schema after the column’s columnMapping is set.

Return type:

Schema

list_feature_groups(filter_feature_group_use=None)

List all the feature groups associated with a project

Parameters:

filter_feature_group_use (str) – The feature group use filter, when given as an argument, only allows feature groups present in this project to be returned if they are of the given use. Possible values are: DATA_WRANGLING, TRAINING_INPUT, BATCH_PREDICTION_INPUT, BATCH_PREDICTION_OUTPUT.

Returns:

All the Feature Groups in a project.

Return type:

FeatureGroup

list_feature_group_templates(limit=100, start_after_id=None, should_include_all_system_templates=False)

List feature group templates for feature groups associated with the project.

Parameters:
  • limit (int) – Maximum number of templates to be retrieved.

  • start_after_id (str) – Offset parameter to exclude all templates till the specified feature group template ID.

  • should_include_all_system_templates (bool) – If True, will include built-in templates.

Returns:

All the feature groups in the organization, optionally limited by the feature group that created the template(s).

Return type:

FeatureGroupTemplate

get_training_config_options(feature_group_ids=None, for_retrain=False, current_training_config=None)

Retrieves the full initial description of the model training configuration options available for the specified project. The configuration options available are determined by the use case associated with the specified project. Refer to the [Use Case Documentation]({USE_CASES_URL}) for more information on use cases and use case-specific configuration options.

Parameters:
  • feature_group_ids (list) – The feature group IDs to be used for training.

  • for_retrain (bool) – Whether the training config options are used for retraining.

  • current_training_config (dict) – The current state of the training config, with some options set, which shall be used to get new options after refresh. This is None by default initially.

Returns:

An array of options that can be specified when training a model in this project.

Return type:

TrainingConfigOptions

create_train_test_data_split_feature_group(training_config, feature_group_ids)

Get the train and test data split without training the model. Only supported for models with custom algorithms.

Parameters:
  • training_config (dict) – The training config key/value pairs used to influence how the split is calculated.

  • feature_group_ids (list) – List of feature group IDs provided by the user, including the required one for data split and others to influence how to split.

Returns:

The feature group containing the training data and folds information.

Return type:

FeatureGroup

train_model(name=None, training_config=None, feature_group_ids=None, refresh_schedule=None, custom_algorithms=None, custom_algorithms_only=False, custom_algorithm_configs=None, builtin_algorithms=None, cpu_size=None, memory=None)

Train a model for the specified project.

This method trains a model in the given project, using user-specified training configurations defined in the getTrainingConfigOptions method.

Parameters:
  • name (str) – The name of the model. Defaults to “<Project Name> Model”.

  • training_config (dict) – The training config key/value pairs used to train this model.

  • feature_group_ids (list) – List of feature group IDs provided by the user to train the model on.

  • refresh_schedule (str) – A cron-style string that describes a schedule in UTC to automatically retrain the created model.

  • custom_algorithms (list) – List of user-defined algorithms to train. If not set, the default enabled custom algorithms will be used.

  • custom_algorithms_only (bool) – Whether to only run custom algorithms.

  • custom_algorithm_configs (dict) – Configs for each user-defined algorithm; key is the algorithm name, value is the config serialized to JSON.

  • builtin_algorithms (list) – List of IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.

  • cpu_size (str) – Size of the CPU for the user-defined algorithms during training.

  • memory (int) – Memory (in GB) for the user-defined algorithms during training.

Returns:

The new model which is being trained.

Return type:

Model

create_model_from_python(function_source_code, train_function_name, training_input_tables, predict_function_name=None, predict_many_function_name=None, initialize_function_name=None, name=None, cpu_size=None, memory=None, training_config=None, exclusive_run=False, package_requirements=None)

Initializes a new Model from user-provided Python code. If a list of input feature groups is supplied, they will be provided as arguments to the train and predict functions with the materialized feature groups for those input feature groups.

This method expects functionSourceCode to be a valid language source file which contains the functions named trainFunctionName and predictFunctionName. trainFunctionName returns the ModelVersion that is the result of training the model using trainFunctionName and predictFunctionName has no well-defined return type, as it returns the prediction made by the predictFunctionName, which can be anything.

Parameters:
  • function_source_code (str) – Contents of a valid Python source code file. The source code should contain the functions named trainFunctionName and predictFunctionName. A list of allowed import and system libraries for each language is specified in the user functions documentation section.

  • train_function_name (str) – Name of the function found in the source code that will be executed to train the model. It is not executed when this function is run.

  • training_input_tables (list) – List of feature groups that are supplied to the train function as parameters. Each of the parameters are materialized Dataframes (same type as the functions return value).

  • predict_function_name (str) – Name of the function found in the source code that will be executed to run predictions through the model. It is not executed when this function is run.

  • predict_many_function_name (str) – Name of the function found in the source code that will be executed for batch prediction of the model. It is not executed when this function is run.

  • initialize_function_name (str) – Name of the function found in the source code to initialize the trained model before using it to make predictions using the model

  • name (str) – The name you want your model to have. Defaults to “<Project Name> Model”

  • cpu_size (str) – Size of the CPU for the model training function

  • memory (int) – Memory (in GB) for the model training function

  • training_config (dict) – Training configuration

  • exclusive_run (bool) – Decides if this model will be run exclusively or along with other Abacus.ai algorithms

  • package_requirements (list) – List of package requirement strings. For example: [‘numpy==1.2.3’, ‘pandas>=1.4.0’]

Returns:

The new model, which has not been trained.

Return type:

Model

list_models()

Retrieves the list of models in the specified project.

Parameters:

project_id (str) – Unique string identifier associated with the project.

Returns:

A list of models.

Return type:

Model

get_custom_train_function_info(feature_group_names_for_training=None, training_data_parameter_name_override=None, training_config=None, custom_algorithm_config=None)

Returns information about how to call the custom train function.

Parameters:
  • feature_group_names_for_training (list) – A list of feature group table names to be used for training.

  • training_data_parameter_name_override (dict) – Override from feature group type to parameter name in the train function.

  • training_config (dict) – Training config names and values for the options supported by the Abacus.ai platform.

  • custom_algorithm_config (dict) – User-defined config that can be serialized by JSON.

Returns:

Information about how to call the customer-provided train function.

Return type:

CustomTrainFunctionInfo

create_model_monitor(prediction_feature_group_id, training_feature_group_id=None, name=None, refresh_schedule=None, target_value=None, target_value_bias=None, target_value_performance=None, feature_mappings=None, model_id=None, training_feature_mappings=None, feature_group_base_monitor_config=None, feature_group_comparison_monitor_config=None)

Runs a model monitor for the specified project.

Parameters:
  • prediction_feature_group_id (str) – The unique ID of the prediction data feature group.

  • training_feature_group_id (str) – The unique ID of the training data feature group.

  • name (str) – The name you want your model monitor to have. Defaults to “<Project Name> Model Monitor”.

  • refresh_schedule (str) – A cron-style string that describes a schedule in UTC to automatically retrain the created model monitor.

  • target_value (str) – A target positive value for the label to compute bias and PR/AUC for performance page (old style until UI is on prod).

  • target_value_bias (str) – A target positive value for the label to compute bias.

  • target_value_performance (str) – A target positive value for the label to compute PR curve/AUC for performance page.

  • feature_mappings (dict) – A JSON map to override features for prediction_feature_group, where keys are column names and the values are feature data use types.

  • model_id (str) – The unique ID of the model.

  • training_feature_mappings (dict) – A JSON map to override features for training_fature_group, where keys are column names and the values are feature data use types.

  • feature_group_base_monitor_config (dict) – Selection strategy for the feature_group 1 with the feature group version if selected.

  • feature_group_comparison_monitor_config (dict) – Selection strategy for the feature_group 1 with the feature group version if selected.

Returns:

The new model monitor that was created.

Return type:

ModelMonitor

list_model_monitors()

Retrieves the list of model monitors in the specified project.

Parameters:

project_id (str) – Unique string identifier associated with the project.

Returns:

A list of model monitors.

Return type:

ModelMonitor

create_vision_drift_monitor(prediction_feature_group_id, training_feature_group_id, name, feature_mappings, training_feature_mappings, target_value_performance=None, refresh_schedule=None)

Runs a vision drift monitor for the specified project.

Parameters:
  • prediction_feature_group_id (str) – Unique string identifier of the prediction data feature group.

  • training_feature_group_id (str) – Unique string identifier of the training data feature group.

  • name (str) – The name you want your model monitor to have. Defaults to “<Project Name> Model Monitor”.

  • feature_mappings (dict) – A JSON map to override features for prediction_feature_group, where keys are column names and the values are feature data use types.

  • training_feature_mappings (dict) – A JSON map to override features for training_feature_group, where keys are column names and the values are feature data use types.

  • target_value_performance (str) – A target positive value for the label to compute precision-recall curve/area under curve for performance page.

  • refresh_schedule (str) – A cron-style string that describes a schedule in UTC to automatically retrain the created vision drift monitor.

Returns:

The new model monitor that was created.

Return type:

ModelMonitor

create_eda(feature_group_id, name, refresh_schedule=None, include_collinearity=False, include_data_consistency=False, collinearity_keys=None, primary_keys=None, data_consistency_test_config=None, data_consistency_reference_config=None)

Run an Exploratory Data Analysis (EDA) for the specified project.

Parameters:
  • feature_group_id (str) – The unique ID of the prediction data feature group.

  • name (str) – The name you want your model monitor to have. Defaults to “<Project Name> EDA”.

  • refresh_schedule (str) – A cron-style string that describes a schedule in UTC to automatically retrain the created EDA.

  • include_collinearity (bool) – Set to True if the EDA type is collinearity.

  • include_data_consistency (bool) – Set to True if the EDA type is data consistency.

  • collinearity_keys (list) – List of features to use for collinearity

  • primary_keys (list) – List of features that corresponds to the primary keys for the given feature group for Data Consistency analysis.

  • data_consistency_test_config (dict) – Test feature group version selection strategy for Data Consistency EDA type.

  • data_consistency_reference_config (dict) – Reference feature group version selection strategy for Data Consistency EDA type.

Returns:

The new EDA object that was created.

Return type:

Eda

list_eda()

Retrieves the list of Exploratory Data Analysis (EDA) in the specified project.

Parameters:

project_id (str) – Unique string identifier associated with the project.

Returns:

List of EDA objects.

Return type:

Eda

create_monitor_alert(model_monitor_id, alert_name, condition_config, action_config)

Create a monitor alert for the given conditions and monitor

Parameters:
  • model_monitor_id (str) – Unique string identifier for the model monitor created under the project.

  • alert_name (str) – Name of the alert.

  • condition_config (dict) – Condition to run the actions for the alert.

  • action_config (dict) – Configuration for the action of the alert.

Returns:

Object describing the monitor alert.

Return type:

MonitorAlert

create_deployment_token(name=None)

Creates a deployment token for the specified project.

Deployment tokens are used to authenticate requests to the prediction APIs and are scoped to the project level.

Parameters:

name (str) – The name of the deployment token.

Returns:

The deployment token.

Return type:

DeploymentAuthToken

list_deployments()

Retrieves a list of all deployments in the specified project.

Parameters:

project_id (str) – The unique identifier associated with the project.

Returns:

An array of deployments.

Return type:

Deployment

list_deployment_tokens()

Retrieves a list of all deployment tokens associated with the specified project.

Parameters:

project_id (str) – The unique ID associated with the project.

Returns:

A list of deployment tokens.

Return type:

DeploymentAuthToken

list_refresh_policies(dataset_ids=[], model_ids=[], deployment_ids=[], batch_prediction_ids=[], model_monitor_ids=[], prediction_metric_ids=[])

List the refresh policies for the organization

Parameters:
  • dataset_ids (list) – Comma-separated list of Dataset IDs.

  • model_ids (list) – Comma-separated list of Model IDs.

  • deployment_ids (list) – Comma-separated list of Deployment IDs.

  • batch_prediction_ids (list) – Comma-separated list of Batch Prediction IDs.

  • model_monitor_ids (list) – Comma-separated list of Model Monitor IDs.

  • prediction_metric_ids (list) – Comma-separated list of Prediction Metric IDs.

Returns:

List of all refresh policies in the organization.

Return type:

RefreshPolicy

list_batch_predictions()

Retrieves a list of batch predictions in the project.

Parameters:

project_id (str) – Unique string identifier of the project.

Returns:

List of batch prediction jobs.

Return type:

BatchPrediction

create_graph_dashboard(name, python_function_ids=None)

Create a plot dashboard given selected python plots

Parameters:
  • name (str) – The name of the dashboard.

  • python_function_ids (list) – A list of unique string identifiers for the python functions to be used in the graph dashboard.

Returns:

An object describing the graph dashboard.

Return type:

GraphDashboard

list_graph_dashboards()

Lists the graph dashboards for a project

Parameters:

project_id (str) – Unique string identifier for the project to list graph dashboards from.

Returns:

A list of graph dashboards.

Return type:

GraphDashboard

list_builtin_algorithms(feature_group_ids=None, training_config=None)

Return list of built-in algorithms based on given input.

Parameters:
  • feature_group_ids (list) – List of feature group identifiers applied to the algorithms.

  • training_config (dict) – The training configuration key/value pairs used to train with the algorithm.

Returns:

List of applicable builtin algorithms.

Return type:

Algorithm

attach_dataset(dataset_id, project_dataset_type)

Attaches dataset to the project.

Parameters:
  • dataset_id (unique string identifier) – A unique identifier for the dataset.

  • project_dataset_type (enum of type string) – The unique use case specific dataset type that might be required or recommended for the specific use case.

Returns:

The schema of the attached dataset.

Return type:

Schema

remove_dataset(dataset_id)

Removes dataset from the project.

Parameters:

dataset_id (unique string identifier) – A unique identifier for the dataset.

create_model_from_functions(train_function, predict_function=None, training_input_tables=None, predict_many_function=None, initialize_function=None, cpu_size=None, memory=None, training_config=None, exclusive_run=False)

Creates a model using python.

Parameters:
  • train_function (callable) – The train function is passed.

  • predict_function (callable) – The prediction function is passed.

  • training_input_tables (list, optional) – The input tables to be used for training the model. Defaults to None.

  • predict_many_function (callable) – Prediction function for batch input

  • cpu_size (str) – Size of the cpu for the feature group function

  • memory (int) – Memory (in GB) for the feature group function

  • initialize_function (callable) –

  • training_config (dict) –

  • exclusive_run (bool) –

Returns:

The model object.

Return type:

Model