Skip to content

Commit c2cdd85

Browse files
authored
Update README.md
1 parent 8bc11c0 commit c2cdd85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is the official repository containing code for the paper:
44

5-
[Images as Weight Matrices: Sequential Image Generation Through Synaptic Learning Rules](https://arxiv.org/abs/2210.06184)
5+
[Images as Weight Matrices: Sequential Image Generation Through Synaptic Learning Rules (ICLR 2023)](https://arxiv.org/abs/2210.06184)
66

77
### Illustrations
88

@@ -23,7 +23,7 @@ Iterative generation steps from left to right. *Top row: rank-1 update, bottom r
2323
### Preliminary notes
2424

2525
This repository is originally forked from [lucidrains/lightweight-gan](https://github.com/lucidrains/lightweight-gan).
26-
Apart from the implementation of our generators/FPAs, we applied a few crucial modifications to consistently compute FID scores (see also Appendix B.4 of the paper):
26+
In addition to the implementation of our generators/FPAs, we also applied a few crucial modifications to consistently compute FID scores (see also Appendix B.4 of the paper):
2727
* The image format can be specified via `--image_save_format`. We store generated and resized real images in the same format to compute FIDs.
2828
* Following the standard practice, we use all real images to compute an FID.
2929
NB: the implementation of FID computation in the current code is suboptimal: the same statistics for the real images are recomputed at every FID computation. Instead, we should compute the stastistics only for the first time (or pre-compute them), store and reuse them. However, this would also require changes in the actual function that computes the FID (we use [mseitzer/pytorch-fid](https://github.com/mseitzer/pytorch-fid) that does not support pre-computed statistics, unlike [GaParmar/clean-fid](https://github.com/GaParmar/clean-fid)). In the end, we left this as is, but ideally this should be improved.
@@ -41,7 +41,7 @@ The packages we used for our experiments can be found in the `requirements.txt`
4141
We used python >= 3.8 and PyTorch >= 1.9.
4242

4343
## Generating images from pre-trained models
44-
NB: there is no need to prepare/download any image data for generating images from a pre-trained model.
44+
NB: there is no need to prepare/download any image data to generate images from a pre-trained model.
4545

4646
Pre-trained models can be found [here](https://drive.google.com/file/d/1mtD3wATtGJfkX6IjRPH-G1ZxOlbcpVax/view?usp=sharing).
4747
The same folder contains example scripts for training and image generation from the corresponding model.

0 commit comments

Comments
 (0)