Create a prediction on a specified experiment_version
create_prediction(
experiment_version_id,
dataset_id = NULL,
folder_dataset_id = NULL,
confidence = FALSE,
best_single = FALSE,
model_id = NULL,
queries_dataset_id = NULL,
queries_dataset_content_column = NULL,
queries_dataset_id_column = NULL,
queries_dataset_matching_id_description_column = NULL,
top_k = NULL
)
id of the experiment_version, can be obtained with get_experiment_version_id().
id of the dataset to start the prediction on, can be obtained with get_datasets().
id of the folder dataset to start prediction on, can be obtained with get_folders(). Only usefull for images use cases.
boolean. If enable, confidence interval will be added to predictions.
boolean. If enable, best single model (non blend) will be used for making predictions other wise, best model will be used unless if model_id is fed.
id of the model to start the prediction on. If provided, it will overwrite the "best single" params.
id of the dataset containing queries (text-similarity).
name of the content column in the queries dataset (text-similarity).
name of the id column in the queries dataset (text-similarity).
name of the column matching the id (text-similarity).
number of class to retrieve (text-similarity).
list - parsed prediction information.