You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenML computes the AUC also when the predictions are not probabilities and from
the list below, we don't really see that mlr.classif.randomForest(17) uses predict.type = "response" and mlr.classif.randomForest(21) uses predict.type = "prob".
convertOMLFlowToMlr(getOMLFlow(4849))
#Learner classif.randomForest from package randomForest#Type: classif#Name: Random Forest; Short name: rf#Class: classif.randomForest#Properties: twoclass,multiclass,numerics,factors,ordered,prob,class.weights#Predict-Type: prob#Hyperparameters:
convertOMLFlowToMlr(getOMLFlow(4782))
#Learner classif.randomForest from package randomForest#Type: classif#Name: Random Forest; Short name: rf#Class: classif.randomForest#Properties: twoclass,multiclass,numerics,factors,ordered,prob,class.weights,featimp#Predict-Type: response#Hyperparameters:
My suggestions would be to modify the flow name so that one can see this info directly from the flow.name, e.g. something like mlr.prob.classif.randomForest(21).
The text was updated successfully, but these errors were encountered:
OpenML computes the AUC also when the predictions are not probabilities and from
the list below, we don't really see that
mlr.classif.randomForest(17)
usespredict.type = "response"
andmlr.classif.randomForest(21)
usespredict.type = "prob"
.One can only see this after
My suggestions would be to modify the flow name so that one can see this info directly from the
flow.name
, e.g. something likemlr.prob.classif.randomForest(21)
.The text was updated successfully, but these errors were encountered: