Interface IScikitLearnLoaderDoubleFieldSetter<ObjectType>

  • Type Parameters:
    ObjectType - The type of the scikit-learn object.

    public interface IScikitLearnLoaderDoubleFieldSetter<ObjectType>
    A container for a method that sets a double value into a scikit-learn object during deserialization.
    • Method Detail

      • setDoubleField

        void setDoubleField​(ObjectType obj,
                            double value)
        Sets a double value into a scikit-learn object.
        Parameters:
        obj - The scikit-learn object.
        value - The value to be set.