Skip to content

Commit

Permalink
VGG: fix wrong kwargs in get_config
Browse files Browse the repository at this point in the history
  • Loading branch information
pesekon2 committed Sep 22, 2023
1 parent 94c2b49 commit cd75981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/architectures.py
Original file line number Diff line number Diff line change
Expand Up @@ -1027,8 +1027,8 @@ def get_config(self):
"""
config = super(VGG, self).get_config()

config.update(pooling=self.pooling,
depth=self.depth,
config.update(depth=self.depth,
include_top=include_top,
return_layers=self.return_layers)

return config
Expand Down

1 comment on commit cd75981

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src
   architectures.py3856184%75, 88, 100, 114, 150, 161, 561, 565, 590–608, 619–626, 718, 728, 798, 855–858, 915–921, 976, 999–1017, 1028–1034, 1073–1080, 1096, 1136, 1209, 1242–1244, 1246, 1281–1286
   cnn_lib.py3099868%48, 117, 128–142, 160, 171, 181–183, 195–201, 225, 270–273, 293–315, 409–420, 451–465, 529–534, 582–592, 651–655, 691–701, 763–777, 842–853, 894–903, 913–917, 938–945, 984–1003, 1014–1019, 1028
   data_preparation.py103991%35, 56, 60, 88, 107, 117, 125, 131, 183
   detect.py67670%3–186
   train.py834447%29, 41, 59, 96, 110, 147–272
   utils.py432151%53–60, 73–80, 94–105
   visualization.py916133%26–40, 75, 100–188
TOTAL108736167% 

Tests Skipped Failures Errors Time
3 0 💤 0 ❌ 0 🔥 176m 23s ⏱️

Please sign in to comment.