Publish a task on OpenML. This can also be achieved through the website.
publish_task(
id,
type,
estimation_procedure,
target,
api_key = NULL,
test_server = test_server_default()
)(integer(1))
The dataset id.
(character(1) or integer(1))
Can either be "classif" or "regr" or an integer indicating the task type.
(integer(1))
The id of the estimation procedure.
(character(1))
The target variable (if applicable).
(character(1))
The API key to perform the action, if left NULL it first tries the "mlr3oml.api_key" R option and
then the environment variable OPENMLAPIKEY.
In case test_server is TRUE (only relevant for developers) the test server API key is used, i.e. first the option
"mlr3oml.test_api_key" and then the environment variable TESTOPENMLAPIKEY.
(character(1))
Whether to use the OpenML test server or public server.
Defaults to value of option "mlr3oml.test_server", or FALSE if not set.