LogisticCVClassifier
LogisticCVClassifierA model type for constructing a logistic regression classifier with built-in cross-validation, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
LogisticCVClassifier = @load LogisticCVClassifier pkg=MLJScikitLearnInterfaceDo model = LogisticCVClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in LogisticCVClassifier(Cs=...).
Hyper-parameters
Cs = 10fit_intercept = truecv = 5dual = falsepenalty = l2scoring = nothingsolver = lbfgstol = 0.0001max_iter = 100class_weight = nothingn_jobs = nothingverbose = 0refit = trueintercept_scaling = 1.0multi_class = autorandom_state = nothingl1_ratios = nothing