https://github.com/GPflow/GPflow
Raw File
Tip revision: 5a08eb80e36aa90e29077ad042a60d1bce6470ae authored by Artem Artemev on 21 June 2019, 10:40:38 UTC
Custom squared distances gradients
Tip revision: 5a08eb8
versions.py
import pkg_resources

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