Skip to content

Commit

Permalink
Fix typo in CLPI model
Browse files Browse the repository at this point in the history
  • Loading branch information
parap1uie-s committed Oct 27, 2022
1 parent dbd61cd commit 9c925cc
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
from . import densenet
from . import inception_v4 as inception

from learning_rate import cosine_decay_with_warmup

__all__ = ["create_model"]

ResNetModels = sorted(name for name in resnet.__dict__
Expand Down Expand Up @@ -197,4 +195,4 @@ def net(self, class_dim=5, CAM=False):
cam_heatmap = self.create_cam_op(predict, class_dim, heatmaps)
return [loss, accuracy, predict, hacked_img_id, cam_heatmap], reader

return [loss, accuracy, predict, hacked_img_id], reader
return [loss, accuracy, predict, hacked_img_id], reader

0 comments on commit 9c925cc

Please sign in to comment.