https://github.com/GPflow/GPflow
Raw File
Tip revision: ea67c67014dd1548564ab03e7a0fe99591e11e67 authored by John Bradshaw on 04 October 2017, 08:40:37 UTC
Random features -- improved demo to also show Thompson sampling.
Tip revision: ea67c67
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