Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Commit

Permalink
Relax unet_3 error bar (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiafatom authored Mar 5, 2021
1 parent fdfe252 commit 63f3b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/nightly_build/test_unet.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_unet_2(self):
def test_unet_3(self):
# From https://github.com/yu4u/noise2noise/blob/master/model.py
model = get_unet_model(out_ch=3, upconv=False)
res = run_image(model, self.model_files, img_path, target_size=(256, 256, 3))
res = run_image(model, self.model_files, img_path, atol=5.e-4, target_size=(256, 256, 3))
self.assertTrue(*res)

if __name__ == "__main__":
Expand Down

0 comments on commit 63f3b50

Please sign in to comment.