Interface IScikitLearnLoaderDictionaryFieldSetter<ObjectType>
-
- Type Parameters:
ObjectType- The type of the scikit-learn object.
public interface IScikitLearnLoaderDictionaryFieldSetter<ObjectType>A container for a method that sets a dictionary value into a scikit-learn object during deserialization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetDictionaryField(ObjectType obj, Map<String,Object> value)Sets a dictionary value into a scikit-learn object.
-
-
-
Method Detail
-
setDictionaryField
void setDictionaryField(ObjectType obj, Map<String,Object> value)
Sets a dictionary value into a scikit-learn object.- Parameters:
obj- The scikit-learn object.value- The value to be set.
-
-