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.

Add an Example for LibSvmModel.Save Method (String) #486

@864258496

Description

@864258496

Please add an example for LibSvmModel.Save Method (String).

        foreach (double m in newksvm.Weights)
        {
            Console.WriteLine("newksvm.Weights = " + m);
        }
        newksvm.Save("D:\\SVMs\\test00");               
        
        var load = LibSvmModel.Load("D:\\SVMs\\test00");
        foreach (double m in load.Weights)
        {
            Console.WriteLine("load.Weights = " + m);
        }

save() and load() values are not equal

TODO (optional): Describe a specific scenario you would like to see addressed.

Help Topic: http://accord-framework.net/docs/html/M_Accord_IO_LibSvmModel_Save_1.htm

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions