1
對於Caffe中Python層的Euclidean Loss Example,使用bottom[0].num
以及bottom[0].count
。使用Python圖層時,Caffe blob中`num`和`count`參數有什麼區別?
看起來兩者具有完全相同的含義。
從來自Caffe blob.hpp,有相同名稱的功能定義爲:
inline int count() const { return count_; }
和
inline int num() const { return LegacyShape(0); }
似乎count_
跟蹤在團塊元件的數量,並這似乎也是由num()
返回的值。
這是這種情況?我可以交替使用它們嗎?