Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

OneclassSupportVectorLearning does not use shrinking heuristics property. #271

@kdbanman

Description

@kdbanman

The OneclassSupportVectorLearning class exposes a Shrinking property, which it does not actually use during optimization.

This code block in the `Learn' method is the offender:

    var s = new FanChenLinQuadraticOptimization(alpha.Length, Q, zeros, ones)
    {
        Tolerance = eps,
        Shrinking = true,    // <--  SHRINKING PROPERTY SHOULD BE USED HERE
        Solution = alpha
    };

    bool success = s.Minimize();

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions