mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-02 14:45:15 +02:00
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
import warnings
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
import os
|
|
|
|
|
|
def read(fname):
|
|
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
|
|
return f.read()
|
|
__version__ = read('version')
|
|
|
|
import core
|
|
import models
|
|
import mappings
|
|
import inference
|
|
import util
|
|
import examples
|
|
import likelihoods
|
|
import testing
|
|
from numpy.testing import Tester
|
|
from nose.tools import nottest
|
|
import kern
|
|
from core import priors
|
|
|
|
@nottest
|
|
def tests():
|
|
Tester(testing).test(verbose=10)
|
|
|
|
if os.name == 'nt':
|
|
"""
|
|
Fortran seems to like to intercept keyboard interrupts on windows.
|
|
This means that when a model is optimizing and the user presses Ctrl-C,
|
|
the program will crash. Since it's kind of nice to be able to stop
|
|
the optimization at any time, we define our own handler below.
|
|
|
|
"""
|
|
import win32api
|
|
import thread
|
|
|
|
def handler(sig, hook=thread.interrupt_main):
|
|
hook()
|
|
return 1
|
|
|
|
win32api.SetConsoleCtrlHandler(handler, 1)
|