Interface IScikitLearnLoaderListOfNumpyArrayFieldSetter<ObjectType,ArrayType>
-
- Type Parameters:
ObjectType- The type of the scikit-learn object.ArrayType- The type of the numpy array's element.
public interface IScikitLearnLoaderListOfNumpyArrayFieldSetter<ObjectType,ArrayType>A container for a method that sets a list of numpy array value into a scikit-learn object during deserialization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetListOfNumpyArrayField(ObjectType obj, List<NumpyArray<ArrayType>> value)Sets a numpy array value into a scikit-learn object.
-
-
-
Method Detail
-
setListOfNumpyArrayField
void setListOfNumpyArrayField(ObjectType obj, List<NumpyArray<ArrayType>> value)
Sets a numpy array value into a scikit-learn object.- Parameters:
obj- The scikit-learn object.value- The value to be set.
-
-