mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-27 22:06:22 +02:00
10 lines
No EOL
274 B
Python
10 lines
No EOL
274 B
Python
# Copyright (c) 2014, Max Zwiessele
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
|
|
from paramz import Param
|
|
from .priorizable import Priorizable
|
|
from paramz.transformations import __fixed__
|
|
import logging, numpy as np
|
|
|
|
class Param(Param, Priorizable):
|
|
pass |