Skip to content

Commit

Permalink
Fix typo in FID description: Replace "access" with "assess"
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 29, 2025
1 parent 5fc2e0b commit c4ec2d3
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 c4ec2d3

Please sign in to comment.