UCSB-NLP-Chang / DiffSTE

MIT License
88 stars 7 forks source link

What's the meaning of the last three images in the generated results? #11

Closed lilycai2000 closed 1 year ago

lilycai2000 commented 1 year ago

After running the generation code, the result looks like: 0-five-grid What does the last three images mean and what's the difference? Thanks so much!

thebestYezhang commented 1 year ago

if means results with different random noise.

lilycai2000 commented 1 year ago

if means results with different random noise.

Are they the inferences from different training stages?

thebestYezhang commented 1 year ago

Nope. You can check it in the source code inpaint_trainer.py

---- Replied Message ---- | From | @.> | | Date | 07/13/2023 05:05 | | To | @.> | | Cc | @.>@.> | | Subject | Re: [UCSB-NLP-Chang/DiffSTE] What's the meaning of the last three images in the generated results? (Issue #11) |

if means results with different random noise.

Are they the inferences from different training stages?

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

Question406 commented 1 year ago

yes, the last three columns are images generated starting from three different noise by the same model.

lilycai2000 commented 1 year ago

yes, the last three columns are images generated starting from three different noise by the same model.

Thanks! Do you mean it did the inference three times separately?

Question406 commented 1 year ago

kind of, these images are generated in a batch with different initial noise. it's the same as running inference to generate one image three times but faster than it

lilycai2000 commented 1 year ago

thank you!