Jiuqiang Tang

Results 15 comments of Jiuqiang Tang

Reassign to the MediaPipe iOS owner.

MediaPipe with its TensorFlow dependence needs Bazel to build everything from scratch. I don't think bazel already supports M1 yet: https://github.com/bazelbuild/bazel/issues/11628. https://github.com/apple/tensorflow_macos requires the users to use https://github.com/apple/tensorflow_macos/releases/download/v0.1alpha1/tensorflow_macos-0.1alpha1.tar.gz, which is...

I took a look at https://github.com/tensorflow/tensorflow/commit/e687cab61615a95b8aea79120c9f168d4cc30955. My conclusion is the mediapipe repo needs some config changes for supporting Apple Silicon. For example, the repo needs to add a config for...

The "diff --git ... " is the content generated by `git diff` command (https://git-scm.com/docs/git-diff). Please modify your local files based on the git diff command output.

We are aware of this issue. See the temporary solution at https://github.com/google/mediapipe/issues/1871#issuecomment-819658414.

Your MediaPipe OpenCV config might be incorrect. See https://github.com/google/mediapipe/blob/master/docs/getting_started/troubleshooting.md#incorrect-mediapipe-opencv-config.

You can add max_queue_size to the end of feature_extraction.pbtxt and adjust the value (higher for faster and lower for safer) accordingly. ``` diff --git a/mediapipe/graphs/youtube8m/feature_extraction.pbtxt b/mediapipe/graphs/youtube8m/feature_extraction.pbtx t index 89d1053..95e36b7 100644...

> @jiuqiant Thank you for your comment. > > I could adjust the value by adding "max_queue_size" to the end of feature_extraction.pbtxt. > I tried various value of "max_queue_size", but...

Can you run `$ python3 -c 'import mediapipe as mp; help(mp); print(mp.__file__)'` to see that if mediapipe is indeed installed?

> > > @RohitSingh1226 you may also reffer as to a reference to https://github.com/jiuqiant/mediapipe_python_aarch64 or to https://google.github.io/mediapipe/getting_started/python.html#building-mediapipe-python-package > > > > > > @AndreV84 thanks for replying immediately, I Have...