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

Disable vgg16 in tfv2 nightly build #399

Merged
merged 10 commits into from
Feb 28, 2020
Merged
6 changes: 0 additions & 6 deletions applications/nightly_build/test_keras_applications_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ def test_ResNet50(self):
res = run_image(model, self.model_files, img_path, tf_v2=True)
self.assertTrue(*res)

def test_VGG16(self):
VGG16 = keras.applications.vgg16.VGG16
model = VGG16(include_top=True, weights=None)
res = run_image(model, self.model_files, img_path, tf_v2=True)
self.assertTrue(*res)

def test_Xception(self):
Xception = keras.applications.xception.Xception
model = Xception(include_top=True, weights=None)
Expand Down