george icon indicating copy to clipboard operation
george copied to clipboard

Fast and flexible Gaussian Process regression in Python

Results 49 george issues
Sort by recently updated
recently updated
newest added

So there is the question. Do you have any plan to create a C++ library which could be used without Python bindings?

If you do `ExpSquaredKernel(metric=30, metric_bounds=[(10, 100)])` it will fail with an unhelpful "non-finite log prior value". Why? Because the initial value is 30, but the bounds are e^10 and e^100,...

To string version of Matern32Kernels must be improved in order to allow copy and paste On code: `kernels.Matern32Kernel(metric=18.9, ndim=3) + kernels.Matern32Kernel(metric=1.2, ndim=3)` When printing kernel name: `Matern32Kernel(metric=**Metric**(1.6, ndim=3, axes=array([0, 1,...

Hello everybody, is there any plan to add support for a coregionalized kernel? Thanks, Stefano

I've got this error after installing the software from source (python setup.py install) ``` ImportError: cannot import name 'KernelInterface' from 'george.kernel_interface' (C:\Users\an.thanhnguyen\AppData\Local\Python-Eggs\Python-Eggs\Cache\george-0.3.1-py3.8-win-amd64.egg-tmp\george\kernel_interface.cp38-win_amd64.pyd) ```

Hello everybody, is there a way to work with george and multi-dimensional kernels with missing data? Like time series from a network of sensors not always working simultaneously. Thanks, Stefano

Hello, I am using the george package to model ocean flows and do spectral estimation from limited data. One way to do this by trying to fit a general matern...

Hi, I'm running into an issue with george and emcee. My likelihood function involves a call to gp.predict. This is fast in serial, but when I try to run emcee...

Hi, When you multiply a kernel with a constant, $A$, you get an additional parameter to the kernel, $k_1$. However, I've noticed that this parameter is given by $k_1 =...

Hello, I was curious if there have been any ideas for using error bars/uncertainties along both the y-direction *and* the x-direction (e.g. [scipy.odr](https://docs.scipy.org/doc/scipy/reference/odr.html)) with ``george.GP.compute()``, i.e. some ``xerr`` argument. I...