mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 12:02:38 +02:00
_highest_parent_ now follows the tree, dK_dX > gradient_X, added update_grads_variational to linear, bgplvm for new framework
This commit is contained in:
parent
87dab55fe1
commit
e0c68d5eb3
41 changed files with 269 additions and 291 deletions
|
|
@ -1,10 +1,9 @@
|
|||
import numpy as np
|
||||
from ..core.parameterization.array_core import ObservableArray
|
||||
from ..core.parameterization.array_core import ObservableArray, ParamList
|
||||
class Cacher(object):
|
||||
def __init__(self, operation, limit=5):
|
||||
self.limit = int(limit)
|
||||
self.operation=operation
|
||||
self.cached_inputs = []
|
||||
self.cached_inputs = ParamList([])
|
||||
self.cached_outputs = []
|
||||
self.inputs_changed = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue