call_method
Call any native method on an instantiated sktime component for non-standard scitypes like splitters, metrics, or aligners. Provide method name and keyword arguments as a dictionary.
Instructions
Dynamically call any native method on an instantiated sktime component (e.g. 'split', 'get_alignment', 'call'). Use this tool to interact with non-standard scitypes like Splitters, Metrics, or Aligners that do not support the generic 'fit' or 'predict' endpoints. Pass 'kwargs' as a dictionary of arguments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kwargs | No | Dictionary of keyword arguments to pass to the method. Pass '_dataset' or '_data_handle' as suffixes in keys to inject memory data (e.g., {'y_dataset': 'airline'}). | |
| handle_id | Yes | Memory handle ID of the instantiated component | |
| method_name | Yes | Name of the method to call (e.g. 'split') |