https://github.com/GPflow/GPflow
Raw File
Tip revision: 378e3e8d707357f8d2cc180a4fea3d6886c4c8e0 authored by ST John on 16 November 2022, 12:48:47 UTC
turn jitter into an argument of inv_probit instead of hard-coded inside
Tip revision: 378e3e8
versions.py
import pkg_resources

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