Skip to content

Commit 581899b

Browse files
authored
Merge pull request #2 from nagachika/patch-1
Fix a typo in Poincare.norm()
2 parents 93402f6 + d784fbd commit 581899b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_manopt/manifolds/poincare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def inner(self, x, u, v, keepdims=False):
9595

9696
def norm(self, x, u, keepdims=False):
9797
lambda_x = self._lambda(x, keepdims=keepdims)
98-
return tf.linarg.norm(u, axis=-1, keepdims=keepdims) * lambda_x
98+
return tf.linalg.norm(u, axis=-1, keepdims=keepdims) * lambda_x
9999

100100
def proju(self, x, u):
101101
lambda_x = self._lambda(x, keepdims=True)

0 commit comments

Comments
 (0)