Get Started
API Reference
Developer Guides
deephyper.evaluator.
profile
Decorator to use on a run_function to profile its execution-time. It is to be used such as:
run_function
@profile def run(config): ... return y
run_function (function) – the function to decorate.
a decorated function.
function