fix ArgMaxLayer bug in num bottom blobs decl. pointed out by @sguada
authorJeff Donahue <jeff.donahue@gmail.com>
Mon, 9 Jun 2014 05:44:32 +0000 (22:44 -0700)
committerJeff Donahue <jeff.donahue@gmail.com>
Mon, 9 Jun 2014 05:44:32 +0000 (22:44 -0700)
include/caffe/vision_layers.hpp

index eb067bb..fc3dbbe 100644 (file)
@@ -37,7 +37,7 @@ class ArgMaxLayer : public Layer<Dtype> {
   virtual inline LayerParameter_LayerType type() const {
     return LayerParameter_LayerType_ARGMAX;
   }
-  virtual inline int MinBottomBlobs() const { return 1; }
+  virtual inline int ExactNumBottomBlobs() const { return 1; }
   virtual inline int ExactNumTopBlobs() const { return 1; }
 
  protected: