Skip to content

Commit

Permalink
Don't measure coverage on statistics update because of tf
Browse files Browse the repository at this point in the history
  • Loading branch information
jollyjonson committed Dec 11, 2023
1 parent 0f30312 commit 3a57593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frechet_audio_distance/frechet_audio_distance.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, dim: int):
self.mean = tf.Variable(tf.zeros((dim,), dtype=tf.float64))
self.num_items_processed = tf.Variable(0.0, dtype=tf.float64)

def update(self, data: tf.Tensor) -> None:
def update(self, data: tf.Tensor) -> None: # pragma: no cover
"""
Updates the means and covariances held by an instance of this class
"""
Expand Down

0 comments on commit 3a57593

Please sign in to comment.