1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #20483 from thezane:support-cumsum-layer-for-onnx

* Support cumsum layer for onnx

* Add unit tests

* Address review comments
This commit is contained in:
thezane
2021-08-17 13:09:25 -04:00
committed by GitHub
parent a50dec88d5
commit 210bfaf8d6
5 changed files with 171 additions and 1 deletions
+1
View File
@@ -140,6 +140,7 @@ void initializeLayerFactory()
CV_DNN_REGISTER_LAYER_CLASS(LSTM, LSTMLayer);
CV_DNN_REGISTER_LAYER_CLASS(GRU, GRULayer);
CV_DNN_REGISTER_LAYER_CLASS(CumSum, CumSumLayer);
}
CV__DNN_INLINE_NS_END