Closed RaphaelMeudec closed 6 years ago
Here are two screenshots from the Travis tasks: test_inception
is running either in ~120s or ~300s, depending on whether inception_resnet_v2
or inception_v3
is tested.
@RaphaelMeudec, Thank you for the PR.
test_mobilenet
revision LGTM.InceptionResNetV2
and InceptionV3
are time-consuming, I think it is right to leave them as they are now. The models are using different sub-modules while DenseNet
(or NASNet
) variations are using the same sub-modules with different parameters.@taehoonlee I removed the commit associated with InceptionResnetV2
and InceptionV3
.
In this PR:
test_mobilenet
: selected module was alwaysmobilenet
even if selected app wasmobilenet_v2.MobileNetV2
inception_v3
andinception_resnet_v2
in arandom.choice(INCEPTION_LIST)
as each network tests take 300s and 120s to run