I am running the following command:
python main.py --ni --config celeba_hq.yml --path_y celeba_hq --eta 0.85 --deg "denoising" --sigma_y 0.3 -i demo --add_noise --simplified
However there is no noise added to the input signal.
I changed the code and added noise after line 306 in guided_diffusion/diffusion.py with:
if self.args.add_noise: y = get_gaussian_noisy_img(y, sigma_y)
However the results are unsatisfying. Here is one output example:
When removing --simplified from the command everything works well (with the SVD version). Is this an expected result from the simplified model? Or am I doing something wrong?
Thanks
I am running the following command:
python main.py --ni --config celeba_hq.yml --path_y celeba_hq --eta 0.85 --deg "denoising" --sigma_y 0.3 -i demo --add_noise --simplified
However there is no noise added to the input signal. I changed the code and added noise after line 306 inguided_diffusion/diffusion.py
with:if self.args.add_noise: y = get_gaussian_noisy_img(y, sigma_y)
However the results are unsatisfying. Here is one output example:When removing
--simplified
from the command everything works well (with the SVD version). Is this an expected result from the simplified model? Or am I doing something wrong? Thanks