File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,29 @@ iskroncompatible(::SqExponentialKernel) = true
20
20
Base. show (io:: IO ,:: SqExponentialKernel ) = print (io," Squared Exponential Kernel" )
21
21
22
22
# # Aliases ##
23
+
24
+ """
25
+ RBFKernel()
26
+
27
+ See [`SqExponentialKernel`](@ref)
28
+ """
23
29
const RBFKernel = SqExponentialKernel
30
+
31
+ """
32
+ GaussianKernel()
33
+
34
+ See [`SqExponentialKernel`](@ref)
35
+ """
24
36
const GaussianKernel = SqExponentialKernel
37
+
38
+ """
39
+ SEKernel()
40
+
41
+ See [`SqExponentialKernel`](@ref)
42
+ """
25
43
const SEKernel = SqExponentialKernel
26
44
45
+
27
46
"""
28
47
ExponentialKernel()
29
48
@@ -43,9 +62,22 @@ iskroncompatible(::ExponentialKernel) = true
43
62
Base. show (io:: IO , :: ExponentialKernel ) = print (io, " Exponential Kernel" )
44
63
45
64
# # Aliases ##
65
+
66
+ """
67
+ LaplacianKernel()
68
+
69
+ See [`ExponentialKernel`](@ref)
70
+ """
46
71
const LaplacianKernel = ExponentialKernel
72
+
73
+ """
74
+ Matern12Kernel()
75
+
76
+ See [`ExponentialKernel`](@ref)
77
+ """
47
78
const Matern12Kernel = ExponentialKernel
48
79
80
+
49
81
"""
50
82
GammaExponentialKernel(; γ = 2.0)
51
83
You can’t perform that action at this time.
0 commit comments