Q-engineering

Results 344 comments of Q-engineering

I shouldn't posted the wheel so early. Working on the tutorial just now. [https://github.com/llvm/llvm-project/releases/download/llvmorg-9.0.1/clang+llvm-9.0.1-aarch64-linux-gnu.tar.xz](https://github.com/llvm/llvm-project/releases/download/llvmorg-9.0.1/clang+llvm-9.0.1-aarch64-linux-gnu.tar.xz) or [debian buster aarch64/armv7l emulation (on x86_64) - llvm-9, clang-9](https://zenn.dev/pinto0309/scraps/a7569668da2b30)

It's a standard TensorFLow Lite model [supplied by TF](https://www.tensorflow.org/lite/examples/object_detection/overview). For more info see their [website](https://www.tensorflow.org/lite).

Most common reason for a low frame rate are: 1. Improper installation of OpenCV (some flags during the build where not set/reset) 2. Improper installation of TensorFlow Lite (used build_rpi_lib.sh...

The mentioned tflite model (palm_detection_lite.tflite) can work in [Pose detection](https://github.com/Qengineering/TensorFlow_Lite_Pose_RPi_64-bits). After some changes to the code of course. It will run at ~13 FPS. You could improve the inference times...

Please see https://github.com/Qengineering/Hand-Pose-ncnn-Raspberry-Pi-4

I've got the same problem with Caffe and cuDNN version 8. As of version 8, NVIDIA has dropped the cudnnGetConvolutionBackwardFilterAlgorithm. The other two obsolete API calls, cudnnGetConvolutionForwardAlgorithm and cudnnGetConvolutionBackwardDataAlgorithm, have...

First guess, you are missing a brace somewhere. The first error only occurs when a template declaration appears within a function. For instance, there is no closing brace before the...

@mgomez0 You are more than welcome on my repo. I will review the code now and get back to you asap.

Solved the problem. In cudnn_conv_layer.cpp line 235: ``` } #endif ``` should be ``` #endif } ```

Indeed, in certain situations, the memory consumption is sustainably large than with cuDNN 7. It all has to do with the removed cudnnGetConvolutionBackwardDataAlgorithm and cudnnGetConvolutionBackwardFilterAlgorithm in version 8. These heuristic...