Use the get_input_data() method to get the input data used by model trainer functions. Unique identifiers (data_id) is used to get the training data. In case of unlabeled data such as single dataframe or tuple of dataframe, default unique identifiers are assigned. Thus, unlabeled training data is retrieved using default unique identifiers.
- For model trainer functions, it only returns input data.
- For supervised model trainer function (evaluatable functions), it returns both train and test sampled data.
- For unsupervised-model trainer function (non-evaluatable functions), it returns train data.
Required Arguments:
- data_id: Specifies the unique data identifier used for model training.