abacusai.python_function_validator
Module Contents
Functions
|
Validates a Python function by running it with the given input values in an local environment. Taking Input Feature Group as either name(string) or Pandas DataFrame in kwargs. |
- abacusai.python_function_validator.validate_function_locally(client, python_function_name, kwargs=None)
Validates a Python function by running it with the given input values in an local environment. Taking Input Feature Group as either name(string) or Pandas DataFrame in kwargs.
- Parameters:
client (ApiClient) – The AbacusAI client.
python_function_name (str) – The name of the Python function registered in Abacus.AI to execute.
kwargs (dict) – A dictionary mapping function arguments to values to pass to the function. Feature group names will automatically be converted into pandas dataframes.
- Returns:
The result of executing the python function
- Return type:
any
- Raises: