1. 17 2月, 2023 3 次提交
  2. 15 2月, 2023 2 次提交
  3. 13 2月, 2023 1 次提交
    • D
      Merge pull request #23161 from dkurt:dnn_tflite · 76350cd3
      Dmitry Kurtaev 提交于
      TFLite models importer
      
      * initial commit
      
      * Refactor TFLiteImporter
      
      * Better FlatBuffers detection
      
      * Add permute before 4D->3D reshape
      
      * Track layers layout
      
      * TFLite Convolution2DTransposeBias layer
      
      * Skip TFLite tests without FlatBuffers
      
      * Fix check of FlatBuffers in tests. Add readNetFromTFLite from buffer
      
      * TFLite Max Unpooling test
      
      * Add skip for TFLite unpooling test
      
      * Revert DW convolution workaround
      
      * Fix ObjC bindings
      
      * Better errors handling
      
      * Regenerate TFLite schema using flatc
      
      * dnn(tflite): more checks, better logging
      
      * Checks for unimplemented fusion. Fix tests
      76350cd3
  4. 12 2月, 2023 1 次提交
  5. 11 2月, 2023 2 次提交
  6. 10 2月, 2023 1 次提交
  7. 09 2月, 2023 5 次提交
  8. 07 2月, 2023 5 次提交
  9. 06 2月, 2023 4 次提交
  10. 03 2月, 2023 1 次提交
  11. 02 2月, 2023 3 次提交
  12. 01 2月, 2023 1 次提交
  13. 31 1月, 2023 3 次提交
  14. 30 1月, 2023 1 次提交
    • A
      Merge pull request #23168 from... · ff8af10c
      Alexander Smorkalov 提交于
      Merge pull request #23168 from genciberisha/bug/issue-22205_and_23105_encodeStructuredAppend_problem
      
      Fix encodeStructuredAppend() resulting in only one QR code problem, and false output data fix.
      ff8af10c
  15. 28 1月, 2023 5 次提交
  16. 27 1月, 2023 2 次提交
    • A
    • Y
      Merge pull request #23047 from fengyuentau:layer_norm · 4d918ba4
      Yuantao Feng 提交于
      dnn: add layer normalization for vision transformers
      
      * add layer norm onnx parser, impl and tests
      
      * add onnx graph simplifier for layer norm expanded
      
      * handle the case when constants are of type Initializer
      
      * add test case for layer norm expanded with initializers
      
      * use CV_Assert & CV_CheckType in place of CV_Assert_N; use forward_fallback for OCL_FP16
      
      * use const ref / ref in parameters of invoker::run; extract inner const if from nested loop; use size_t in place of ull
      
      * template hasBias
      
      * remove trailing whitespace
      
      * use pointer parameter with null check; move normSize division & mean_square division outside of loop; use std::max to ensure positive value before std::sqrt
      
      * refactor implementation, optimize parallel_for
      
      * disable layer norm expanded
      
      * remove the removal of layer norm optional outputs
      4d918ba4