Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,6 @@ class VOCSegmentationTestCase(datasets_utils.ImageDatasetTestCase):
year=[f"20{year:02d}" for year in range(7, 13)], image_set=("train", "val", "trainval")
),
dict(year="2007", image_set="test"),
dict(year="2007-test", image_set="test"),
)

def inject_fake_data(self, tmpdir, config):
Expand Down
8 changes: 7 additions & 1 deletion test/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,13 @@ def _check_input_backprop(model, inputs):
# The following contains configuration parameters for all models which are used by
# the _test_*_model methods.
_model_params = {
"inception_v3": {"input_shape": (1, 3, 299, 299)},
"inception_v3": {
"input_shape": (1, 3, 299, 299),
"init_weights": True,
},
"googlenet": {
"init_weights": True,
},
"retinanet_resnet50_fpn": {
"num_classes": 20,
"score_thresh": 0.01,
Expand Down