LogisticClassifier
LogisticClassifierA model type for constructing a logistic regression classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
LogisticClassifier = @load LogisticClassifier pkg=MLJScikitLearnInterfaceDo model = LogisticClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in LogisticClassifier(penalty=...).
Hyper-parameters
penalty = l2dual = falsetol = 0.0001C = 1.0fit_intercept = trueintercept_scaling = 1.0class_weight = nothingrandom_state = nothingsolver = lbfgsmax_iter = 100multi_class = autoverbose = 0warm_start = falsen_jobs = nothingl1_ratio = nothing