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

Commit 63f3b50

Browse files
authored
Relax unet_3 error bar (#694)
1 parent fdfe252 commit 63f3b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applications/nightly_build/test_unet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def test_unet_2(self):
131131
def test_unet_3(self):
132132
# From https://github.com/yu4u/noise2noise/blob/master/model.py
133133
model = get_unet_model(out_ch=3, upconv=False)
134-
res = run_image(model, self.model_files, img_path, target_size=(256, 256, 3))
134+
res = run_image(model, self.model_files, img_path, atol=5.e-4, target_size=(256, 256, 3))
135135
self.assertTrue(*res)
136136

137137
if __name__ == "__main__":

0 commit comments

Comments
 (0)