Each run has a setup.id
, i.e. an ID for the hyperparameter settings of the flow that produced the run.
This function allows the listing of hyperparameter settings.
listOMLSetup(setup.id = NULL, flow.id = NULL, limit = 1000, offset = NULL, verbosity = NULL)
setup.id | [ |
---|---|
flow.id | [ |
limit | [ |
offset | [ |
verbosity | [ |
[data.frame
].
This function is memoised. I.e., if you call this function twice in a running R session,
the first call will query the server and store the results in memory while the second and all subsequent calls will return
the cached results from the first call.
You can reset the cache by calling forget
on the function manually.
Other listing functions: chunkOMLlist
,
listOMLDataSetQualities
,
listOMLDataSets
,
listOMLEstimationProcedures
,
listOMLEvaluationMeasures
,
listOMLFlows
, listOMLRuns
,
listOMLStudies
,
listOMLTaskTypes
,
listOMLTasks
# \dontrun{ # listOMLSetup(limit = 1) # }