Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pycoral for Python 3.11 and modern versions of Tensorflow #137

Open
feranick opened this issue Dec 13, 2023 · 84 comments
Open

Update pycoral for Python 3.11 and modern versions of Tensorflow #137

feranick opened this issue Dec 13, 2023 · 84 comments
Labels
comp:thirdparty Thirdparty related issues Hardware:M.2 Accelerator A+E Coral M.2 Accelerator A+E key issues Hardware:M.2 Accelerator B+M Coral M.2 Accelerator B+M key issues Hardware:M.2 Accelerator with dual Edge TPU Coral M.2 Accelerator with Dual Edge TPU issues Hardware:USB Accelerator Coral USB Accelerator issues subtype:macOS macOS Build/installation issues subtype:ubuntu/linux Ubuntu/Linux Build/installation issues type:build/install Build and install issues

Comments

@feranick
Copy link

feranick commented Dec 13, 2023

Description

Pycoral is available only with support for Python 3.9. Most distribution now no longer ship with that version, rather either 3.10 or 3.11. So there is factually no version of pycoral available to download. Furthermore, building pycoral from source is not compatible with Python 3.10 or 3.11 (again, not supported) and relies on an ancient version of tensorFlow (2.5.0) to work. While this al points to a lack of maintenance, it would be great to at least update so it can be used with, well, pretty much any modern version of OS.

Click to expand!

Issue Type

Build/Install

Operating System

Linux, Ubuntu, Mac OS

Coral Device

USB Accelerator, M.2 Accelerator A+E, M.2 Accelerator B+M, M.2 Accelerator with dual Edge TPU

Other Devices

Raspberry Pi 3, Rapsberry Pi 4

Programming Language

Other

Relevant Log Output

No response

@google-coral-bot google-coral-bot bot added comp:thirdparty Thirdparty related issues Hardware:M.2 Accelerator A+E Coral M.2 Accelerator A+E key issues Hardware:M.2 Accelerator B+M Coral M.2 Accelerator B+M key issues Hardware:M.2 Accelerator with dual Edge TPU Coral M.2 Accelerator with Dual Edge TPU issues Hardware:USB Accelerator Coral USB Accelerator issues subtype:macOS macOS Build/installation issues subtype:ubuntu/linux Ubuntu/Linux Build/installation issues type:build/install Build and install issues labels Dec 13, 2023
@tranzmatt
Copy link

Has this project been officially abandoned?

@feranick
Copy link
Author

feranick commented Jan 25, 2024

There hasn't been any comment, action, or even statement in a very long time. The repos are frozen in time. Such a pity when every chip manufacturer is presenting NPUs as the next big thing, and Google (who pioneered it with the edgeTPU so long ago) decided to drop the ball. To make it worse, no official statement either, and a community that relies/invested on it is left it to its own devices (pun very much intended). And to make it worse, coral.ai still sells these products as fully supported when they are nothing but.

Sad, and infuriating.

@Emojibotbot
Copy link

I'm experiencing the same issue on 64 bit Raspberry Pi OS 12.4 running on a Pi 4 which has python 3.11.2. I tried to build pycoral myself and have not managed to make things work yet.

I guess all the layoffs have hit this team pretty hard.

@feranick
Copy link
Author

I ended up forking the libedgetpu and bringing it up to date with compatibility to the latest version of TF. This is all I really needed (as I don't use pycoral, but directly access the edgeTPU withtflite_runtime) so I can fully use the edgeTPU. I took a look at pycoral but it seems that a whole lot more work is needed to bringing it up to date.

https://github.com/feranick/libedgetpu

@Emojibotbot
Copy link

Emojibotbot commented Feb 16, 2024

I ended up forking the libedgetpu and bringing it up to date with compatibility to the latest version of TF. This is all I really needed (as I don't use pycoral, but directly access the edgeTPU withtflite_runtime) so I can fully use the edgeTPU. I took a look at pycoral but it seems that a whole lot more work is needed to bringing it up to date.

https://github.com/feranick/libedgetpu

I was able to install the edgetpu runtime without issues on my rig using instructions here (but not have tried to run it in anyway yet.) What made you need to update?

@feranick
Copy link
Author

feranick commented Feb 16, 2024

I was able to install the edgetpu runtime without issues on my rig (but not have tried to run it in anyway yet.) What made you need to update?

That is the point. The provided whl install fine if you have the correct Python environment (see below), but they segfault if you are running tlite_runtime > 2.11.1.

The wheels provided are only available for up to Python 3.9, su pretty useless in any modern Linux release (Raspbian/Debian-bookworm current uses 3.11, ubuntu 22.04 uses 3.10). It may work with "legacy" debian-bullseye which uses Python 3.9.

@feranick
Copy link
Author

feranick commented Feb 16, 2024

Plenty of discussion here:

google-coral/edgetpu#812

@feranick
Copy link
Author

feranick commented Feb 16, 2024

There is also another issue: the google-dkms gasket is incompatible with linux kernel >= 6.5 and therefore the edgeTPU won't be recognized. The solution is a recompile of the gasket itself, following instructions here:

google-coral/edgetpu#820

@Emojibotbot
Copy link

I see you have done a lot of work to update things already & nice job! I thought the issue was just that pycoral was not up to date, but the lack of updates much more systemic across all of google-coral.

@Emojibotbot
Copy link

Is it safe to assume your fork would not work? https://github.com/feranick/pycoral

@feranick
Copy link
Author

feranick commented Feb 16, 2024 via email

@feranick
Copy link
Author

Thanks to @pkgoogle and @Namburger, the libdgetpu repo/library has been updated, a big step forward. Next that should be updated is libcoral/pycoral, the frontend libraries that are (supposedly) the standard way to interact with the edgeTPU. My fork still does not compile, and several issues are at play. There is an open issue/PR for TF that is supposed to fix one of the issues: Change visibility status for lite/schema/schema_conversion_utils to allow compilation of external libraries. If there is a way for this PR to be merged, that'd be great, since in the current state, such visibility issue in TF (which is downloaded by Bazel in tmp_folder during the compilation of libcoral) hangs compilation of pycoral.

@feranick
Copy link
Author

feranick commented Mar 1, 2024

I finally managed to successfully compile libcoral through this new fork of mine.

I submitted a PR request: google-coral/libcoral#36

Of course, this needs the visibility issue to be fixed first. Yet, compilation can be successfully done manually, until the issue above is fixed. Two steps:

  1. Change last line in WORKSPACE from:
path = "/usr/system_libs",

to

path = "/",

as the former is designed when operating with Docker.

  1. Edit: nano ~/.cache/bazel/_bazel_XXXX/XXXXXXX/external/org_tensorflow/tensorflow/lite/schema/BUILD
    and remove visibility = [":utils_friends"],

from both:

cc_library(
    name = "schema_utils",
    srcs = ["schema_utils.cc"],
    hdrs = ["schema_utils.h"],
    compatible_with = get_compatible_with_portable(),
    visibility = [":utils_friends"],
    deps = [
        ":schema_fbs",
        "//tensorflow/lite/kernels/internal:compatibility",
        "@flatbuffers//:runtime_cc",
    ],
)

cc_library(
    name = "schema_conversion_utils",
    srcs = ["schema_conversion_utils.cc"],
    hdrs = ["schema_conversion_utils.h"],
    compatible_with = get_compatible_with_portable(),
    visibility = [":utils_friends"],
    deps = [
        ":schema_fbs",
        "//tensorflow/lite/kernels/internal:compatibility",
        "@flatbuffers",
    ],
)

@feranick
Copy link
Author

feranick commented Mar 1, 2024

A new fork for pycoral is now available, which relies on the libedgetpu and libcoral forks, and it has been tested to work. All three libraries are currently targeting the upcoming TensorFlow version 2.16.0 (currently in rc0) status, with the hope that the visibility issue is fixed in that release. Once TF 2.16.0 is officially released as stable, I will create a PR for the updated libedgetpu (which now targets TF2.15.0 in the official repo). Upon merging libedgetpu into the official repo (which currently targets TF 2.15.0), another PR is ready for the updated libcoral. Once that is merged, you guessed it, I will push a PR for pycoral based on this fork.

In the meantime, one can already build libedgetpu from the official repo (against TF 2.15.0) or the fork needed for this upcoming version of pycoral. With that, pycoral can be built as instructed in the README file in the forked repo, with the only caveat that the visibility issue needs to be manually addressed, as detailed in the comment above..

Thanks again to @Namburger and @pkgoogle for pushing forward the effort to modernize the EdgeTPU libraries.

@feranick
Copy link
Author

feranick commented Mar 1, 2024

A new fork for pycoral is now available, which relies on the libedgetpu and libcoral forks, and it has been tested to work. All three libraries are currently targeting the upcoming TensorFlow version 2.16.0 (currently in rc0) status, with the hope that the visibility issue is fixed in that release. Once TF 2.16.0 is officially released as stable, I will create a PR for the updated libedgetpu (which now targets TF2.15.0 in the official repo). Upon merging libedgetpu into the official repo (which currently targets TF 2.15.0), another PR is ready for the updated libcoral. Once that is merged, you guessed it, I will push a PR for pycoral based on this fork.

In the meantime, one can already build libedgetpu from the official repo (against TF 2.15.0) or the fork needed for this upcoming version of pycoral. With that, pycoral can be built as instructed in the README file in the forked repo, with the only caveat that the visibility issue needs to be manually addressed, as detailed in the comment above..

Thanks again to @Namburger and @pkgoogle for pushing forward the effort to modernize the EdgeTPU libraries.

@adelmiljkovic
Copy link

[A new fork for pycoral is now available]

I tested it and seems like something is wrong. When I run one of the examples I get INFO: Created TensorFlow Lite XNNPACK delegate for CPU. and I did some test and the inference times are the same for running the edgetpu models compared to the regular ones (e.g. movenet_single_pose_lightning_ptq_edgetpu.tflite and movenet_single_pose_lightning_ptq.tflite)

Anyone else experiencing this?

@feranick
Copy link
Author

feranick commented Aug 7, 2024

Clang 18 should work. Again the error you see is specific to GCC that is no longer supported in building anything related to TF.

@virnik0
Copy link

virnik0 commented Aug 7, 2024

Well, my problem actually isn't clang or gcc, but rather bazel. For GCC, I was able to get quite far, plus fixing some very basic build issues. But since learning that clang should be used, I did the switch, just without any impact as it seems. If I'll use bazel version 4.5.0, it sorta works. If I'll use bazel 6.x, I don't get too far:

root@wvojtas1:~/repositories/coral/pycoral_feranick# bazel clean --expunge
INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes.
root@wvojtas1:~/repositories/coral/pycoral_feranick# TF_PYTHON_VERSION=3.12 make
Starting local Bazel server and connecting to it...
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
 checking cached actions
Loading: 0 packages loaded
PYTHON_BIN_PATH=/usr/bin/python3 bazel build --compilation_mode=opt --copt=-DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION --cpu=k8 --linkopt=-L/root/repositories/coral/pycoral_feranick/libedgetpu_bin/direct/k8 --linkopt=-l:libedgetpu.so.1 --linkopt=-Wl,--strip-all \
    --embed_label='TENSORFLOW_COMMIT=ad6d8cc177d0c868982e39e0823d0efbfb95f04c' \
    --stamp \
    //src:_pywrap_coral
ERROR: /root/repositories/coral/pycoral_feranick/WORKSPACE:154:21: fetching new_local_repository rule //external:glog: /root/repositories/coral/pycoral_faranick/external/libcoral/third_party/glog/BUILD is not a regular file; if you're using a relative or absolute path for `build_file` in your `new_local_repository` rule, please switch to using a label instead
ERROR: no such package '@@glog//': /root/repositories/coral/pycoral_feranick/external/libcoral/third_party/glog/BUILD is not a regular file; if you're using a relative or absolute path for `build_file` in your `new_local_repository` rule, please switch to using a label instead
ERROR: /root/.cache/bazel/_bazel_root/90d880e19ec0b9484a4fbe4609e02db7/external/libcoral/coral/pipeline/BUILD:21:11: @@libcoral//coral/pipeline:common depends on @@glog//:glog in repository @@glog which failed to fetch. no such package '@@glog//': /root/repositories/coral/pycoral_feranick/external/libcoral/third_party/glog/BUILD is not a regular file; if you're using a relative or absolute path for `build_file` in your `new_local_repository` rule, please switch to using a label instead
ERROR: Analysis of target '//src:_pywrap_coral' failed; build aborted: Analysis failed
INFO: Elapsed time: 7.430s, Critical Path: 0.04s
INFO: 1 process: 1 internal.
ERROR: Build did NOT complete successfully
FAILED: 
    Fetching repository @@bazel_tools~cc_configure_extension~local_config_cc; starting
    Fetching repository @@com_google_absl; starting
make: *** [Makefile:152: pybind] Error 1
root@wvojtas1:~/repositories/coral/pycoral_feranick#

I never used bazel before, so I am a bit at loss. When I use older bazel, it fails much later (libcoral builds successfully, I can interface with the TPU, but without python bindings).

@feranick
Copy link
Author

feranick commented Aug 7, 2024

Try cleaning up your bazel cache folder (usually in ~/.cache/). Also I'd reclone the repository. Bazel 6.5 is needed, you can find it here:

https://github.com/bazelbuild/bazel/releases/tag/6.5.0

Again, I can't really answer to any particular compilation issues for Ubuntu 24.04 or Python3.12, because i have no systems that runs on that.

@virnik0
Copy link

virnik0 commented Aug 7, 2024

bazel clean --expunge does exactly that.

# bazel --version
bazel 7.2.1

It looks like it doesn't even fetch the repositories it is supposed to work with. What approach you take to build natively within 'pycoral' repository context? Maybe I am doing it wrong, last time I was building pycoral, it was nearly two years ago.

@virnik0
Copy link

virnik0 commented Aug 7, 2024

# apt-get install bazel=6.5.0 - the build is running now. Will report back once it either fails or succeeds. Thanks for the hint of clang, that is something I didn't noticed. Also, having bazel 6.5.0 seems to be working now. Looks like I was using either too new, or too old version before (along with gcc instead of clang).

Thanks for those!

@feranick
Copy link
Author

feranick commented Aug 7, 2024

First, bazel 6.5.0 is required for TF 2.17.0. I'd stick to that.

If you want to do a native compilation (i.e. without docker), I simply run:

make pybind
make wheel

This with ubuntu:22.04. Works for ma.

@feranick
Copy link
Author

feranick commented Aug 7, 2024

I'd like to remind folks that want to compile these libraries to please read the READMEs. Versions and requirements are listed there.

https://github.com/feranick/TFlite-builds/blob/main/README.md
https://github.com/feranick/libedgetpu/blob/master/README.md
https://github.com/feranick/pycoral/blob/master/README.md

@virnik0
Copy link

virnik0 commented Aug 7, 2024

No kidding. Childish mistake on my part, true. First of all, I was using already outdated approach. Second, I was using GCC instead of CLang. And last, I was using either too old (4.5.1) or too new (7.2.1) bazel

I've succeeded in building pycoral. I have uploaded its wheel to my repo for anyone dealing with the same thing to use.
Link bellow:
https://github.com/virnik0/pycoral_builds

@feranick
Copy link
Author

feranick commented Aug 7, 2024

Cool, glad it worked out.

@virnik0
Copy link

virnik0 commented Aug 7, 2024

One thing though: I had to prepend desired TF support version, otherwise it wouldn't work correctly:

TF_PYTHON_VERSION=3.12 make pybind
TF_PYTHON_VERSION=3.12 make wheel

Anyway, thanks a lot for patience and will to assist. Your points were very helpful in realizing what I was doing wrong.

@feranick
Copy link
Author

feranick commented Aug 7, 2024

Thank you. Yes, that is needed, and will add to the README.md.

@virnik0
Copy link

virnik0 commented Aug 7, 2024

I just have to rebuild edgetpu lib as well as tf now, as using what I have ends in segmentation fault from pycoral's side. Will report back once/if successful.

As for tensorflow_lite, cmake compilation seems not to work correctly (compilation crashes at 48%, will have to check the logs what exactly went wrong).

Bazel build seems to succeed.

After starting with clean slate again (removing libedge, tf, pycoral installs and installing from prior installs) freshly built packages built against Python 3.12, all works:

~/repositories/coral/pycoral# python3 examples/classify_image.py --model test_data/mobilenet_v2_1.0_224_inat_bird_quant_edgetpu.tflite --labels test_data/inat_bird_labels.txt --input test_data/parrot.jpg ----INFERENCE TIME---- Note: The first inference on Edge TPU is slow because it includes loading the model into Edge TPU memory. 11.6ms 2.7ms 2.6ms 2.6ms 2.6ms -------RESULTS-------- Ara macao (Scarlet Macaw): 0.75781 ~/repositories/coral/pycoral#

I have uploaded all those packages to my github, at least for the time being until some more knowledgeable on this subject build better ones.

I've quickly tested both libcoral C+ layer, also works. ZMEventNotification server also accepts TPU like its own, and object detection works correctly. What I noticed is that using latest ubuntu and python, the detection is a bit faster (using max variant of libedgetpu lib) than it was on Ubuntu 20.04.

@sn0wst0rm
Copy link

@feranick I'm trying to build everything for MacOS Ventura (13) because the who you provided are for Python 3.11 and macOS 14 (cp311-cp311-macosx_14_0_x86_64.whl), while I have 13 and python 3.12. How did you compile them? If I use Bazel, I get to this error: Error in fail: Xcode version must be specified to use an Apple CROSSTOOL. If your Xcode version has changed recently, verify that "xcode-select -p" is correct and then try: "bazel shutdown" to re-run Xcode configuration.

I only have Xcode command line tools installed, do I also need entire Xcode?

Thanks for the advice, I just received a Coral TPU and I am really disappointed (to say the least) that it is practically unusable (when following the instructions in the official webpage)

@feranick
Copy link
Author

feranick commented Aug 8, 2024

Yes, you do need the full XCode. Follow through the error message.

Then you can follow the instruction on how to build what you need:

https://github.com/feranick/TFlite-builds/blob/main/README.md
https://github.com/feranick/libedgetpu/blob/master/README.md
https://github.com/feranick/pycoral/blob/master/README.md

@sn0wst0rm
Copy link

sn0wst0rm commented Aug 8, 2024

Yes, you do need the full XCode. Follow through the error message.

So @feranick I've managed to make bazze work, but it produced an artefact called tflite_runtime-2.17.0-cp312-cp312-macosx_14_0_x86_64.whl, while I was expecting macosx_13. When I try to install it with pip3 install, I get the following error:
ERROR: tflite_runtime-2.17.0-cp312-cp312-macosx_14_0_x86_64.whl is not a supported wheel on this platform.

I don't really know what I am doing wrong because nothing else fails and the only thing I changed was the TF_PYTHON_VERSION env variable that I set to 3.12.

Do you know how I can make pip install the wheel?

Thanks again for the support

@feranick
Copy link
Author

feranick commented Aug 8, 2024

I don't understand how you can get a MacOS 14 wheel while using macOS 13.... It's possible that you need a XCode version compatible with MacOS 13. I am afraid, I can't really say what's happening, as I don't have MacOS 13.

I have never used it on MacOS, but you can certainly try to run a build from a docker image consistent with your target...
https://hub.docker.com/r/sickcodes/docker-osx

Again, not sure what more I can help.

@feranick
Copy link
Author

feranick commented Aug 8, 2024

This is highly "last resort", but you can try and rename tflite_runtime-2.17.0-cp312-cp312-macosx_14_0_x86_64.whl as tflite_runtime-2.17.0-cp312-cp312-macosx_13_0_x86_64.whl.

Still might not work.

@feranick
Copy link
Author

feranick commented Aug 9, 2024

I pushed a few commits to the pycoralfork, to allow docker compilation under Ubuntu 24.04/Python3.12. Ubuntu 24.04 has defaulted in the use of new source files for apt that was not supported in the old dockerfile.

This has been tested to work for x86_64 and aarch64. Builds are available here:

https://github.com/feranick/pycoral/releases/tag/2.0.2TF2.17.0

@hinxx
Copy link

hinxx commented Aug 9, 2024

@feranick I tried using your prebuilt wheels for 3.10 (on ubuntu 22.04) and I get this error:

(venv) $ pip3 install --upgrade /data/data/coralai/tmp/pycoral-2.0.2-cp310-cp310-linux_x86_64.whl /data/data/coralai/tmp/tflite_runtime-2.17.0-cp310-cp310-linux_x86_64.whl 
Processing /data/data/coralai/tmp/pycoral-2.0.2-cp310-cp310-linux_x86_64.whl
Processing /data/data/coralai/tmp/tflite_runtime-2.17.0-cp310-cp310-linux_x86_64.whl
Requirement already satisfied: Pillow>=10.0.0 in /data/data/coralai/venv/lib/python3.10/site-packages (from pycoral==2.0.2) (10.4.0)
Requirement already satisfied: numpy>=1.24.0 in /data/data/coralai/venv/lib/python3.10/site-packages (from pycoral==2.0.2) (1.26.4)
Installing collected packages: tflite-runtime, pycoral
  Attempting uninstall: tflite-runtime
    Found existing installation: tflite-runtime 2.17.0.post1
    Uninstalling tflite-runtime-2.17.0.post1:
      Successfully uninstalled tflite-runtime-2.17.0.post1
Successfully installed pycoral-2.0.2 tflite-runtime-2.17.0

(venv) $ python3 examples/classify_image.py --model test_data/mobilenet_v2_1.0_224_inat_bird_quant_edgetpu.tflite --labels test_data/inat_bird_labels.txt --input test_data/parrot.jpg 
Traceback (most recent call last):
  File "/data/data/coralai/feranick-pycoral/examples/classify_image.py", line 40, in <module>
    from pycoral.utils.edgetpu import make_interpreter
  File "/data/data/coralai/venv/lib/python3.10/site-packages/pycoral/utils/edgetpu.py", line 24, in <module>
    from pycoral.pybind._pywrap_coral import GetRuntimeVersion as get_runtime_version
ImportError: Python version mismatch: module was compiled for Python 3.11, but the interpreter version is incompatible: 3.10.12 (main, Jul 29 2024, 16:56:48) [GCC 11.4.0].

@feranick
Copy link
Author

@hinxx Sorry for the trouble. I reuploaded the correct pycoral wheels, should work now.

@feranick
Copy link
Author

I also pushed a few commits to allow correct matching of the Python version and the distribution.

@Namburger: Is there a chance we can merge libedgetpu, so we can merge pycoral as well?

@hinxx
Copy link

hinxx commented Aug 10, 2024

@feranick no trouble at all. Thank you for these packages!!

@larrylyle
Copy link

Yes, you do need the full XCode. Follow through the error message.

Then you can follow the instruction on how to build what you need:

https://github.com/feranick/TFlite-builds/blob/main/README.md https://github.com/feranick/libedgetpu/blob/master/README.md https://github.com/feranick/pycoral/blob/master/README.md

@feranick new to Raspberry Pi. I am trying to get my Coral Edge TPU up and running on my Raspberry Pi 5 w/ 8Gb so that I can use AI with Frigate. I have tried all the posts and I end up with this error:

RuntimeError: Error in device opening (/dev/apex_0)!

Will the above mention code correct this problem?

@feranick
Copy link
Author

@larrylyle
Copy link

@feranick I know this may sound like a newby question, but how do I get bazel installed on my raspberry pi 5?

@feranick
Copy link
Author

Assuming you are running Debian or Ubuntu 64 bit, in principle you can find it here:

https://github.com/bazelbuild/bazel/releases?q=6.5&expanded=true

However the arm64 version doesn't have an installer, which makes things more complex. As noted on the README.md in my repo (which people seems to always overlook), the easiest way is to build arm64 builds using docker on x86_64, which is what I do.

@larrylyle
Copy link

@feranick I'm so lost....it sucks being a newbee. I am so use to Windows and pre-built packages. Is there a possibility I could grease your pockets to complete for me?

@feranick
Copy link
Author

Sorry, I don't use and have no interest in supporting Windows packages.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
comp:thirdparty Thirdparty related issues Hardware:M.2 Accelerator A+E Coral M.2 Accelerator A+E key issues Hardware:M.2 Accelerator B+M Coral M.2 Accelerator B+M key issues Hardware:M.2 Accelerator with dual Edge TPU Coral M.2 Accelerator with Dual Edge TPU issues Hardware:USB Accelerator Coral USB Accelerator issues subtype:macOS macOS Build/installation issues subtype:ubuntu/linux Ubuntu/Linux Build/installation issues type:build/install Build and install issues
Projects
None yet
Development

No branches or pull requests