sklearn.utils.validation.check_memory¶
-
sklearn.utils.validation.check_memory(memory)[source]¶ Check that
memoryis joblib.Memory-like.joblib.Memory-like means that
memorycan be converted into a joblib.Memory instance (typically a str denoting thelocation) or has the same interface (has acachemethod).Parameters: - memory : None, str or object with the joblib.Memory interface
Returns: - memory : object with the joblib.Memory interface
Raises: - ValueError
If
memoryis not joblib.Memory-like.