Source code for nahiku.search

import torch
import gpytorch
import warnings
import numpy as np
import matplotlib.pyplot as plt

from .gp_helpers import QuasiPeriodicKernel, ExactGPModel

from abc import abstractmethod
from gpytorch.mlls import ExactMarginalLogLikelihood
from gpytorch.means import ConstantMean
from gpytorch.likelihoods import GaussianLikelihood
from gpytorch.kernels import PeriodicKernel, RBFKernel, ScaleKernel
from gpytorch.constraints import Interval, GreaterThan