ProbabilisticSGDClassifier
ProbabilisticSGDClassifierA model type for constructing a probabilistic sgd classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
ProbabilisticSGDClassifier = @load ProbabilisticSGDClassifier pkg=MLJScikitLearnInterfaceDo model = ProbabilisticSGDClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in ProbabilisticSGDClassifier(loss=...).
Hyper-parameters
loss = log_losspenalty = l2alpha = 0.0001l1_ratio = 0.15fit_intercept = truemax_iter = 1000tol = 0.001shuffle = trueverbose = 0epsilon = 0.1n_jobs = nothingrandom_state = nothinglearning_rate = optimaleta0 = 0.0power_t = 0.5early_stopping = falsevalidation_fraction = 0.1n_iter_no_change = 5class_weight = nothingwarm_start = falseaverage = false