Added comment

This commit is contained in:
Lane Schwartz 2016-10-03 11:34:23 -05:00
parent 1e2fec4bc2
commit 617e91c622

View File

@ -130,6 +130,13 @@ struct ReLUNodeOp : public UnaryNodeOp {
};
/**
* @brief Represents a <a href="https://en.wikipedia.org/wiki/Dropout_(neural_networks)">dropout</a> node
* in an expression graph.
*
* @see \cite dropout
* @see \cite cudnn
*/
struct DropoutNodeOp : public UnaryNodeOp {
template <typename ...Args>
DropoutNodeOp(Args ...args)