tinyflow
tinyflow copied to clipboard
Tutorial code on how to build your own Deep Learning System in 2k Lines
Here's the error I am getting : ``` g++ -std=c++11 -std=c++11 -Wall -O2 -msse2 -Wno-unknown-pragmas -funroll-loops -fPIC -Iinclude -Idmlc-core/include -I/home/kapil/Documents/my-nn-library/tinyflow/nnvm/include -I/home/kapil/torch/install/include -I/home/kapil/torch/install/include/TH -I/home/kapil/torch/install/include/THC/ -MM -MT build/src/session.o src/session.cc >build/src/session.d g++ -std=c++11...
There is lua code _matmul_bacward registered for gradient calculation for matmul. But in nn_module, there is MakeNNBackwardNode only registered for gradient node generation, where is the gradient calculation(like _conv_backward) for...