Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
1ac5f37d
Commit
1ac5f37d
authored
Feb 19, 2019
by
Lukas Platz
Browse files
hide SphericalConvolutionOperator
parent
360cac16
Pipeline
#43918
passed with stages
in 8 minutes and 8 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
nifty5/__init__.py
View file @
1ac5f37d
...
...
@@ -50,8 +50,7 @@ from .operators.value_inserter import ValueInserter
from
.operators.energy_operators
import
(
EnergyOperator
,
GaussianEnergy
,
PoissonianEnergy
,
InverseGammaLikelihood
,
BernoulliEnergy
,
StandardHamiltonian
,
AveragedEnergy
)
from
.operators.convolution_operators
import
(
SphericalConvolutionOperator
,
SphericalFuncConvolutionOperator
)
from
.operators.convolution_operators
import
SphericalFuncConvolutionOperator
from
.probing
import
probe_with_posterior_samples
,
probe_diagonal
,
\
StatCalculator
...
...
nifty5/operators/convolution_operators.py
View file @
1ac5f37d
...
...
@@ -44,10 +44,10 @@ def SphericalFuncConvolutionOperator(domain, func):
if
not
isinstance
(
domain
[
0
],
(
HPSpace
,
GLSpace
)):
raise
TypeError
(
"need a spherical domain"
)
kernel
=
domain
[
0
].
get_default_codomain
().
get_conv_kernel_from_func
(
func
)
return
SphericalConvolutionOperator
(
domain
,
kernel
)
return
_
SphericalConvolutionOperator
(
domain
,
kernel
)
class
SphericalConvolutionOperator
(
EndomorphicOperator
):
class
_
SphericalConvolutionOperator
(
EndomorphicOperator
):
"""Convolves with kernel living on the appropriate LMSpace"""
def
__init__
(
self
,
domain
,
kernel
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment