Lines Matching +full:python3 +full:- +full:virtualenv
14 armnn_delegate = tflite.load_delegate( library="<path-to-armnn-binaries>/libarmnnDelegate.so",
15 … options={"backends": "CpuAcc,GpuAcc,CpuRef", "logging-severity":"info"})
17 interpreter = tflite.Interpreter(model_path="<your-armnn-repo-dir>/delegate/python/test/test_data/m…
38 Pre-requisites:
40 * python3 (Depends on TfLite version)
41 * virtualenv
45 ….md). Otherwise, you can download the binaries [here](https://github.com/ARM-software/armnn/releas…
51 …g a virtual environment for this tutorial. For the following code to work python3 is needed. Please
55 # Install python3 (We ended up with python3.5.3) and virtualenv
56 sudo apt-get install python3-pip
57 sudo pip3 install virtualenv
62 virtualenv -p python3 myenv
80 pip3 install --extra-index-url https://google-coral.github.io/py-repo/ tflite_runtime==2.5.0
84 `ExternalDelegatePythonTutorial.py`. Modify the python script above and replace `<path-to-armnn-bin…
85 `<your-armnn-repo-dir>` with the directories you have set up. If you've been using the [native buil…
109 …sts that require backends that your hardware doesn't support using markers e.g. -m "not GpuAccTest"
110 pytest --delegate-dir="<path-to-armnn-binaries>/libarmnnDelegate.so" -m "not GpuAccTest"