gpflow.experimental.utils¶
gpflow.experimental.utils.experimental¶
- gpflow.experimental.utils.experimental(func)[source]¶
Decorator that marks the decorated function as experimental.
The first time an experimental function is called, a warning is printed.
Example:
@experimental def forty_two() -> int: return 42
- Parameters
func (
TypeVar
(C
, bound=Callable
[...
,Any
])) –- Return type
TypeVar
(C
, bound=Callable
[...
,Any
])