Skip to content

Commit d784fbd

Browse files
authored
Fix a typo in Poincare.norm()
tf.linarg -> tf.linalg
1 parent 736e300 commit d784fbd

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)