all_functions#
- sklearn.utils.discovery.all_functions()[source]#
Get a list of all functions from
sklearn.- Returns:
- functionslist of tuples
List of (name, function), where
nameis the function name asstring andfunctionis the actual function.
Examples
>>>fromsklearn.utils.discoveryimportall_functions>>>functions=all_functions()>>>name,function=functions[0]>>>name'accuracy_score'
On this page
