Skip to content

Commit

Permalink
...fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dengemann committed Jul 18, 2023
1 parent ec958c6 commit ff34c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion coffeine/covariance_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def __init__(self, rank):
def fit(self, X, y=None, ref=None):
if ref is None:
ref = np.mean(X, axis=0)
Y = to_quotient(ref, self.rank)
Y = _to_quotient(ref, self.rank)
self.reference_ = ref
self.Y_ref_ = Y
return self
Expand Down
1 change: 1 addition & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ nbsphinx
numpydoc
memory_profiler
pydata-sphinx-theme
sphinx_copybutton

0 comments on commit ff34c4b

Please sign in to comment.