Skip to content

Commit 5d2d45c

Browse files
committed
Linting
1 parent 3a85011 commit 5d2d45c

16 files changed

+37
-12
lines changed

tensorflow_riemopt/manifolds/cholesky.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifold of the Cholesky space."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/euclidean.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifold of the Euclidean space."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/grassmannian.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifold of linear subspaces of a vector space."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/hyperboloid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The Lorentz model."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/poincare.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The Poincaré ball model."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/product.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Cartesian product of manifolds."""
2+
23
import tensorflow as tf
34
from functools import reduce
45
from operator import mul

tensorflow_riemopt/manifolds/special_orthogonal.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifold of rotation matrices."""
2+
23
import tensorflow as tf
34

45
from tensorflow_riemopt.manifolds.manifold import Manifold

tensorflow_riemopt/manifolds/symmetric_positive.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifolds of symmetric positive definite matrices."""
2+
23
import warnings
34

45
import tensorflow as tf

tensorflow_riemopt/manifolds/test_invariants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Manifold test invariants."""
2+
23
import tensorflow as tf
34
import numpy as np
45

tensorflow_riemopt/optimizers/constrained_rmsprop.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
constrained optimization techniques for deep learning." Proceedings of the
55
IEEE Conference on Computer Vision and Pattern Recognition. 2018.
66
"""
7+
78
import numpy as np
89

910
from tensorflow.python.eager import def_function

0 commit comments

Comments
 (0)