PerceptronClassifier
PerceptronClassifierA model type for constructing a perceptron classifier, based on MLJScikitLearnInterface.jl, and implementing the MLJ model interface.
From MLJ, the type can be imported using
PerceptronClassifier = @load PerceptronClassifier pkg=MLJScikitLearnInterfaceDo model = PerceptronClassifier() to construct an instance with default hyper-parameters. Provide keyword arguments to override hyper-parameter defaults, as in PerceptronClassifier(penalty=...).
Hyper-parameters
penalty = nothingalpha = 0.0001fit_intercept = truemax_iter = 1000tol = 0.001shuffle = trueverbose = 0eta0 = 1.0n_jobs = nothingrandom_state = 0early_stopping = falsevalidation_fraction = 0.1n_iter_no_change = 5class_weight = nothingwarm_start = false