Commit bdaf50aa authored by Davis King's avatar Davis King

Fixed cont_ layers not printing the correct num_filters parameter when they are

printed to cout or xml.
parent 1719f51e
...@@ -577,7 +577,7 @@ namespace dlib ...@@ -577,7 +577,7 @@ namespace dlib
friend std::ostream& operator<<(std::ostream& out, const cont_& item) friend std::ostream& operator<<(std::ostream& out, const cont_& item)
{ {
out << "cont\t (" out << "cont\t ("
<< "num_filters="<<_num_filters << "num_filters="<<item.num_filters_
<< ", nr="<<_nr << ", nr="<<_nr
<< ", nc="<<_nc << ", nc="<<_nc
<< ", stride_y="<<_stride_y << ", stride_y="<<_stride_y
...@@ -595,7 +595,7 @@ namespace dlib ...@@ -595,7 +595,7 @@ namespace dlib
friend void to_xml(const cont_& item, std::ostream& out) friend void to_xml(const cont_& item, std::ostream& out)
{ {
out << "<cont" out << "<cont"
<< " num_filters='"<<_num_filters<<"'" << " num_filters='"<<item.num_filters_<<"'"
<< " nr='"<<_nr<<"'" << " nr='"<<_nr<<"'"
<< " nc='"<<_nc<<"'" << " nc='"<<_nc<<"'"
<< " stride_y='"<<_stride_y<<"'" << " stride_y='"<<_stride_y<<"'"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment