Skip to content

Commit 35c93fd

Browse files
Update integration_segmentation_3d result for PyTorch2403 (#7551)
Fixes #7550 ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: YunLiu <[email protected]> Co-authored-by: Yiheng Wang <[email protected]>
1 parent ec63e06 commit 35c93fd

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

runtests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -738,12 +738,14 @@ fi
738738
# network training/inference/eval integration tests
739739
if [ $doNetTests = true ]
740740
then
741+
set +e # disable exit on failure so that diagnostics can be given on failure
741742
echo "${separator}${blue}integration${noColor}"
742743
for i in tests/*integration_*.py
743744
do
744745
echo "$i"
745746
${cmdPrefix}${cmd} "$i"
746747
done
748+
set -e # enable exit on failure
747749
fi
748750

749751
# run model zoo tests

tests/testing_data/integration_answers.py

+56
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,62 @@
600600
],
601601
}
602602
},
603+
{ # test answers for 24.03
604+
"integration_segmentation_3d": {
605+
"losses": [
606+
0.5442982316017151,
607+
0.4741817444562912,
608+
0.4535954713821411,
609+
0.44163046181201937,
610+
0.4307525992393494,
611+
0.428487154841423,
612+
],
613+
"best_metric": 0.9314384460449219,
614+
"infer_metric": 0.9315622448921204,
615+
"output_sums": [
616+
0.14268704426414708,
617+
0.1528672845845743,
618+
0.1521782248125706,
619+
0.14028769128068194,
620+
0.1889830671664784,
621+
0.16999075690664475,
622+
0.14736282992708227,
623+
0.16877952654821815,
624+
0.15779597155181269,
625+
0.17987829927082263,
626+
0.16320253928314676,
627+
0.16854299322173155,
628+
0.14497470986956967,
629+
0.11437140546369519,
630+
0.1624117412960871,
631+
0.20156009294443875,
632+
0.1764654154256958,
633+
0.0982348259217418,
634+
0.1942436068604293,
635+
0.20359421536407518,
636+
0.19661953116976483,
637+
0.2088326101468625,
638+
0.16273043545239807,
639+
0.1326107887439663,
640+
0.1489245275752285,
641+
0.143107476635514,
642+
0.23189027677929547,
643+
0.1613818424566088,
644+
0.14889532196775188,
645+
0.10332622984492143,
646+
0.11940054688302351,
647+
0.13040496302762658,
648+
0.11472123087193181,
649+
0.15307044007394474,
650+
0.16371989575844717,
651+
0.1942898223272055,
652+
0.2230120930471398,
653+
0.1814679187634795,
654+
0.19069496508164732,
655+
0.07537197031940022,
656+
],
657+
}
658+
},
603659
]
604660

605661

0 commit comments

Comments
 (0)