Skip to content

Commit 802da39

Browse files
authored
Update README.md
1 parent 230d16d commit 802da39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ See [https://github.com/bioinf-jku/TTUR](https://github.com/bioinf-jku/TTUR) for
55

66
FID is a measure of similarity between two datasets of images.
77
It was shown to correlate well with human judgement of visual quality and is used most often used to evaluate the quality of samples of Generative Adversarial Networks.
8-
FID is calculated by computing the [Fréchet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) between two Gaussians fitted to the feature representations of the Inception network.
8+
FID is calculated by computing the [Fréchet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) between two Gaussians fitted to feature representations of the Inception network.
99

10-
Further insights and evaluation into the FID score can be found in [Are GANs Created Equal? A Large-Scale Study](https://arxiv.org/pdf/1711.10337.pdf)
10+
Further insights and an independent evaluation of the FID score can be found in [Are GANs Created Equal? A Large-Scale Study](https://arxiv.org/pdf/1711.10337.pdf)
1111

1212
## Usage
1313

@@ -18,14 +18,14 @@ Requirements:
1818
- numpy
1919
- scipy
2020

21-
To compute the FID score between two datasets, where each dataset is in an individual folder:
21+
To compute the FID score between two datasets, where images of each dataset are contained in an individual folder:
2222
```
2323
./fid_score.py path/to/dataset1 path/to/dataset2
2424
```
2525

2626
To run the evaluation on GPU, use the flag `--gpu N`, where `N` is the index of the GPU to use.
2727

28-
Note that the official implementation might give slightly different scores, as it uses pretrained weights from the Tensorflow Inception, not the PyTorch Inception used here.
28+
Note that the official implementation might give slightly different scores, as it uses pretrained weights from Tensorflow 's Inception, not PyTorch's Inception as used here.
2929

3030
### Using different layers for feature maps
3131

@@ -49,5 +49,5 @@ This implementation is licensed under the Apache License 2.0.
4949

5050
FID was introduced by Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler and Sepp Hochreiter in "GANs Trained by a Two Time-Scale Update Rule Converge to a Local Nash Equilibrium", see [https://arxiv.org/abs/1706.08500](https://arxiv.org/abs/1706.08500)
5151

52-
The original implementation is taken from the Institute of Bioinformatics, JKU Linz, licensed under the Apache License 2.0.
53-
See [https://github.com/bioinf-jku/TTUR](https://github.com/bioinf-jku/TTUR).
52+
The original implementation is by the Institute of Bioinformatics, JKU Linz, licensed under the Apache License 2.0.
53+
See [https://github.com/bioinf-jku/TTUR](https://github.com/bioinf-jku/TTUR).

0 commit comments

Comments
 (0)