vertify-mldev1
vertify-mldev1
Model download works without problems: ``` >>> download_utils.download_oss_model('mediapipe/modules/face_landmark/face_landmark.tflite') Downloading model to /home/mldev1/Documents/mediapipe/mediapipe/modules/face_landmark/face_landmark.tflite ``` My problem is unrelated to that. During the build this python script won't be run anyway right?
Yes, I aleady had the latest version of download_utils.py when i opened the issue
Sure, I now updated the problem description above
Yes, the hello world example works: ``` bazel run --copt -DMESA_EGL_NO_X11_HEADERS --copt -DEGL_NO_X11 mediapipe/examples/desktop/hello_world:hello_world DEBUG: /home/mldev1/.cache/bazel/_bazel_mldev1/824bf6172127d18cb1057a50b98d1e6a/external/org_tensorflow/third_party/repo.bzl:132:14: Warning: skipping import of repository 'com_google_absl' because it already exists. DEBUG: /home/mldev1/.cache/bazel/_bazel_mldev1/824bf6172127d18cb1057a50b98d1e6a/external/org_tensorflow/third_party/repo.bzl:132:14: Warning: skipping...
Could resolve the issue. I updated gcc/g++ to 9.4.0 and encountered some other build issues. After cleaning the bazel cache (by running `bazel clean --expunge`) everything works. Retried it with...
Oh, let me clarify my use case a bit: I send the decoded frames into a [mediapipe](https://github.com/google/mediapipe) graph (which is able to process multiple frames concurrently). The output of the...