Commit 0d896af8 authored by Dmitry Kurtaev's avatar Dmitry Kurtaev

Fix uninitialized value

parent a67228cd
......@@ -98,7 +98,7 @@ private:
class SoftMaxSubgraph : public Subgraph
{
public:
SoftMaxSubgraph()
SoftMaxSubgraph() : axis(1)
{
int input = addNodeToMatch("");
int inpExp = addNodeToMatch("Exp", input);
......
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