Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

find reference of all algorithms that will be used for v1 #16

Open
cguz opened this issue Jul 8, 2022 · 1 comment
Open

find reference of all algorithms that will be used for v1 #16

cguz opened this issue Jul 8, 2022 · 1 comment

Comments

@cguz
Copy link
Contributor

cguz commented Jul 8, 2022

No description provided.

@cguz cguz self-assigned this Jul 8, 2022
@cguz
Copy link
Contributor Author

cguz commented Jul 26, 2022

linear classifiers

case "ALMA2" : return new ALMA2();
case "AROW" : return new AROW(1, true);
case "BBR" : return new BBR(0.01, 1000, BBR.Prior.GAUSSIAN);
case "LinearBatch" : return new LinearBatch();
case "LinearL1SCD" : return new LinearL1SCD();
case "LinearSGD" : return new LinearSGD();
default:
case "LogisticRegressionDCD" : return new LogisticRegressionDCD();
case "NewGLMNET" : return new NewGLMNET();
case "NHERD" : return new NHERD(1, NHERD.CovMode.FULL);
case "PassiveAggressive" : return new PassiveAggressive();
case "SCD" : return new SCD(new LogisticLoss(), 1e-6, 100);
case "SCW" : return new SCW();
case "SDCA" : return new SDCA();
case "SMIDAS" : return new SMIDAS(0.1);
case "SPA" : return new SPA();
case "STGD" : return new STGD(5, 0.1, Double.POSITIVE_INFINITY, 0.1);
case "StochasticMultinomialLogisticRegression": return new StochasticMultinomialLogisticRegression();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant