Share a task by uploading it to the OpenML server.
uploadOMLTask(task.type, data.id, target.feature, estimation.procedure,
evaluation.measure = NULL, tags = NULL, description = NULL,
confirm.upload = NULL, verbosity = NULL)[character(1)] The type of the task to upload. See listOMLTaskTypes() to list all valid task types.
[integer(1)]
ID of the data set.
[character(1)] The target feature of the dataset.
[character(1)] The estimation procedure for the evaluation. See listOMLEstimationProcedures() to list all procedures.
[character(1)] The evaluation measure for the evaluation. See listOMLEvaluationMeasures() to list all possible measures.
[character]
The tags that should be added after uploading.
[character(1)|OMLDataSetDescription]
Either an OMLDataSetDescription or a character(1) that describes the data.
For the latter, all other relevant information is autogenerated from the Task.
[logical(1)]
Should the user be asked to confirm the upload?
Default is the setting from your config.
[integer(1)]
Print verbose output on console? Possible values are:
0: normal output,
1: info output,
2: debug output.
Default is set via setOMLConfig.