Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ift
NIFTy
Commits
e7b57ee4
Commit
e7b57ee4
authored
Feb 19, 2019
by
Martin Reinecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make operator private
parent
360cac16
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
nifty5/__init__.py
nifty5/__init__.py
+1
-2
nifty5/operators/convolution_operators.py
nifty5/operators/convolution_operators.py
+2
-3
No files found.
nifty5/__init__.py
View file @
e7b57ee4
...
...
@@ -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 @
e7b57ee4
...
...
@@ -44,14 +44,13 @@ 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
):
if
len
(
domain
)
!=
1
:
raise
ValueError
(
"need exactly one domain"
)
if
len
(
kernel
.
domain
)
!=
1
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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