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
87b680d2
Commit
87b680d2
authored
Jan 22, 2021
by
Vincent Eberle
Browse files
merge prep
parent
acf2634a
Pipeline
#91921
failed with stages
in 5 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pointwise.py
View file @
87b680d2
...
...
@@ -115,7 +115,8 @@ def exponentiate(v, base):
def
_exponentiate_helper
(
v
,
base
):
return
(
np
.
power
(
base
,
v
),
np
.
log
(
base
)
*
np
.
power
(
base
,
v
))
tmp
=
np
.
power
(
base
,
v
)
return
(
tmp
,
np
.
log
(
base
)
*
tmp
)
ptw_dict
=
{
...
...
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