corrected typo in accuracy_layer.hpp: MaxTopBlos -> MaxTopBlobs
authorbaecchi <claudio.baecchi@gmail.com>
Tue, 1 Nov 2016 15:15:51 +0000 (16:15 +0100)
committerbaecchi <claudio.baecchi@gmail.com>
Tue, 1 Nov 2016 15:15:51 +0000 (16:15 +0100)
include/caffe/layers/accuracy_layer.hpp

index fe2adb9..a9ad322 100644 (file)
@@ -39,7 +39,7 @@ class AccuracyLayer : public Layer<Dtype> {
   // If there are two top blobs, then the second blob will contain
   // accuracies per class.
   virtual inline int MinTopBlobs() const { return 1; }
-  virtual inline int MaxTopBlos() const { return 2; }
+  virtual inline int MaxTopBlobs() const { return 2; }
 
  protected:
   /**