https://github.com/GPflow/GPflow
Raw File
Tip revision: 445112bcb708b6ddce327577cdd9c4a76a185fdf authored by John Bradshaw on 24 October 2017, 10:52:48 UTC
Merge remote-tracking branch 'origin/GPflow-1.0-RC' into john-bradshaw/binary-class-GP
Tip revision: 445112b
example_profiler.py
import gpflow
import simple_regression

gpflow.profiler.activateTracer('timeline_last')
simple_regression.runExperiments(sampling=False)
gpflow.profiler.deactivateTracer()

gpflow.profiler.activateTracer('timeline',outputDirectory='profiler_output',eachTime=True)
simple_regression.runExperiments(sampling=False)
gpflow.profiler.deactivateTracer()
back to top