We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a322d6d commit 80eaa78Copy full SHA for 80eaa78
1 file changed
src/main.cpp
@@ -58,6 +58,8 @@ int main() {
58
TensorSANN::Tensor output = dense1.forward(dt1);
59
60
std::cout << output.to_string() << std::endl;
61
+ std::cout << "Dense Backward:" << std::endl;
62
+ std::cout << dense1.backward(output).to_string() << std::endl;
63
64
65
@@ -77,6 +79,8 @@ int main() {
77
79
std::cout << rt1.to_string() << std::endl;
78
80
std::cout << rt2.to_string() << std::endl;
81
82
+
83
84
85
return 0;
86
0 commit comments