Skip to content

Commit

Permalink
Fix typo in FID description: Replace "access" with "assess" (#2919)
Browse files Browse the repository at this point in the history
The previous description incorrectly used the word "access" instead of "assess" when describing the purpose of Fréchet Inception Distance (FID). This change corrects the typo to ensure clarity and accuracy.
  • Loading branch information
isztldav authored Jan 31, 2025
1 parent 5961ee7 commit ca2f3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/torchmetrics/image/fid.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def _compute_fid(mu1: Tensor, sigma1: Tensor, mu2: Tensor, sigma2: Tensor) -> Te


class FrechetInceptionDistance(Metric):
r"""Calculate Fréchet inception distance (FID_) which is used to access the quality of generated images.
r"""Calculate Fréchet inception distance (FID_) which is used to assess the quality of generated images.
.. math::
FID = \|\mu - \mu_w\|^2 + tr(\Sigma + \Sigma_w - 2(\Sigma \Sigma_w)^{\frac{1}{2}})
Expand Down

0 comments on commit ca2f3b5

Please sign in to comment.