Krasner

Results 4 comments of Krasner

@egshkim I'm working with this repo too so i'll give my 2 cents. the `denoise_fn` which is the u-net is not actually reconstructing an image from noise - rather it...

Yes - that comes from the original definition of diffusion processes in the first paper: https://arxiv.org/pdf/2006.11239.pdf (specifically equation 14): ![image](https://github.com/Janspiry/Image-Super-Resolution-via-Iterative-Refinement/assets/7035109/f046dedb-51ce-4313-ab4b-42b7e74b3f9d) The real loss function (Equations 3 and 5) do relate...

As expected the problem is with tensorflow_io not being used. I propose a few solutions: 1. Imports In `backend/event_processing/io_wrapper.py`: ``` import tensorflow as tf import tensorflow_io as tfio import s3fs...

@yatbear I don't think it's a permission issue - as I noted above, I can access `aws s3` from my ec2 instance, and if I import `tensorflow_io` in my script...