implement serialize

This commit is contained in:
stereomatchingkiss
2016-02-27 23:51:27 +08:00
parent 277990681b
commit 4f307dd711
@@ -162,6 +162,14 @@ class PoolingLayer
OutputDataType& Delta() const { return delta; }
//! Modify the delta.
OutputDataType& Delta() { return delta; }
/**
* Serialize the layer
*/
template<typename Archive>
void Serialize(Archive& ar, const unsigned int /* version */)
{
}
private:
/**