https://github.com/GPflow/GPflow
Raw File
Tip revision: 96940dd79d4ff2f50a36e6ad229faa5904250e67 authored by Artem Artemev on 09 November 2019, 18:10:12 UTC
Computation of the gradient must be outside of the GradientTape
Tip revision: 96940dd
versions.py
import pkg_resources

try:
    __version__ = str(pkg_resources.get_distribution("gpflow").parsed_version)
except pkg_resources.DistributionNotFound:
    __version__ = "develop"
back to top