Interface IScikitLearnLoaderListFieldSetter<ObjectType>

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

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

      • setListField

        void setListField​(ObjectType obj,
                          List<Object> value)
        Sets a value into a scikit-learn object.
        Parameters:
        obj - The scikit-learn object.
        value - The value to be set.