Click here to Skip to main content
15,891,694 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (91 votes)
29 Feb 202416 min read 3.4M   493.2K   271   6.8K
Version 2.6.2. Our fast, free, self-hosted Artificial Intelligence Server for any platform, any language
CodeProject.AI Server is a locally installed, self-hosted, fast, free and Open Source Artificial Intelligence server for any platform, any language. No off-device or out of network data transfer, no messing around with dependencies, and able to be used from any platform, any language. Runs as a Windows Service or a Docker container.

Image 1

Previous

Quick Links

CodeProject.AI Server: An Artificial Intelligence Server

For those who want to integrate AI functionality into their applications without writing the AI functionality or dealing with the insanely painful task of ensuring everything is setup correctly. CodeProject.AI Server manages your MLOps for you.

Think of CodeProject.AI Server like a database server: you install it, it runs in the background, and provides AI operations for any application via a simple API. The AI operations are handled by drop-in modules that can be easily created using any language, any stack, as long as that stack runs on the host machine. Python, .NET, node - whatever works for you.

CodeProject.AI server runs as a Windows service, under systemd in Linux, or on startup on macOS. Alternatively there are multiple Docker images for x64, arm64 and CUDA enabled systems. Any language that can make HTTP calls can access the service, and the server does not require an external internet connection. Your data stays in your network.

Image 2 Image 3 Image 4 Image 5 Image 6 Image 7 Image 8 Image 9 Image 10
Windows macOS macOS-arm64 Ubuntu Debian Raspberry Pi Orange Pi Jetson Nano Docker

What Does It Do?

Image 11

The CodeProject.AI Server's Dashboard

Currently CodeProject.AI Server contains AI modules that provide:

  • Object Detection (Python and .NET versions that use YOLO, plus a Tensorflow-Lite module that's ultra-lightweight and great for Raspberry Pi and Coral USB sticks
  • Face Detection and recognition
  • Text processing such as sentiment analysis and summarization
  • Image processing such as background removal, background blur, cartoon-isation and resolution enhancement
  • Model training, including dataset acquisition, for YOLO object detection

How Do I Use It?

Install the server and start making calls to the API. It's that easy.

Guides, Help, FAQs

CodeProject.AI Server Home Assistant Blue Iris

Image 12

The CodeProject.AI Server's Explorer in action

Why We Built CodeProject.AI Server

  • AI programming is something every single developer should be aware of

    We wanted a fun project we could use to help teach developers and get them involved in AI. We'll be using CodeProject.AI Server as a focus for articles and exploration to make it fun and painless to learn AI programming.

    We want your contributions!

  • AI coding examples have too many moving parts

    You need to install packages and languages and extensions to tools, and then updates and libraries (but version X, not version Y) and then you have to configure paths and...Oh, you want to run on Windows not Linux? In that case, you need to... It's all too hard. There was much yelling at CodeProject.

    CodeProject.AI Server includes everything you need in a single installer. CodeProject.AI Server also provides an installation script that will setup your dev environment and get you debugging within a couple of clicks.

  • AI solutions often require the use of cloud services

    If you trust the cloud provider, or understand the billing structure, or can be assured you aren't sending sensitive data or won't go over the free tier, this is fine. If you have a webcam inside your house, or can't work out how much AWS will charge, it's not so OK.

    CodeProject.AI Server can be installed locally. Your machine, your network, no data needs to leave your device.

1: Running and Playing With the Features

  1. Install and Run
    1. For a Windows Service, download the latest version, install, and launch the shortcut to the server's dashboard on your desktop or open a browser to http://localhost:32168.

      If you wish to take advantage of a CUDA enabled NVIDIA GPU, please ensure you have the CUDA drivers installed before you install CodeProject.AI. We recommend CUDA 11.8 if running Windows

    2. For a Docker Container for 64 Bit Linux, run:
      docker run -p 32168:32168 --name CodeProject.AI -d codeproject/ai-server

      For Docker GPU (supports NVIDIA CUDA), please use:

      docker run --gpus all -p 32168:32168 --name CodeProject.AI -d codeproject/ai-server:cuda11_7
  2. On the dashboard, at the top, is a link to the demo playground. Open that and play!

2: Running and Debugging the Code

  1. Clone the CodeProject CodeProject.AI Server repository.
  2. Make sure you have Visual Studio Code or Visual Studio 2019+ installed.
  3. Run the setup script in /src
  4. Debug the front-end server application (see notes below, but it's easy).

3. Using CodeProject.AI Server in My Application

Here's an example of using the API for scene detection using a simple JavaScript call:

HTML
<html>
<body>
Detect the scene in this file: <input id="image" type="file" />
<input type="button" value="Detect Scene" onclick="detectScene(image)" />

<script>
function detectScene(fileChooser) {
    var formData = new FormData();
    formData.append('image', fileChooser.files[0]);

    fetch('http://localhost:5000/v1/vision/detect/scene', {
        method: "POST",
        body: formData
    })
    .then(response => {
        if (response.ok) response.json().then(data => {
            console.log(`Scene is ${data.label}, ${data.confidence} confidence`)
        });
    });
}
</script>
</body>
</html>

You can include the CodeProject.AI Server installer (or just a link to the latest version of the installer) in your own apps and installers and voila, you have an AI enabled app.

See the API documentation for a complete rundown of functionality.

Notes on the installers

The native installers (Windows, Ubuntu and macOS) all install the server as a service. On Windows it's a Windows service, on Ubuntu it uses systemd, and on macOS it's simply a login item so will start each time you login.

For all platforms, open http://localhost:32168 to view the dashboard.

To uninstall, please take note of the instructions when you install. For reference:

  • Windows uses the standard Windows installer, so use the Control Panel / Apps and Features applet to manage the installation.
     
  • Ubuntu uses dpkg, so to uninstall simply call
    Bash
    sudo dpkg -r codeproject.ai-server
  • macOS uninstall is via the command line
    Shell
    sudo bash "/Library/CodeProject.AI Server/<version>/uninstall.sh"

Notes on CUDA and Nvidia Support

If you have a CUDA enabled Nvidia card, please then ensure you

  1. install the CUDA Drivers (We recommend CUDA 11.7 or CUDA 11.8 if running Windows)
  2. Install CUDA Toolkit 11.8.
  3. Download and run our cuDNN install script to install cuDNN 8.9.4.

Nvidia downloads and drivers are challenging! Please ensure you download a driver that is compatible with CUDA 11.7+, which generally means the CUDA driver version 516.94 or below. Version 522.x or above may not work. You may need to refer to the release notes for each driver to confirm.

Our Docker images are based on CUDA 11.7 (for legacy reasons) and 12.2. As long as you have a driver installed that can handle 11.7 or 12.2 then the docker image will interface with your drivers and work fine.

CUDA 12.2 brings a few challenges with code that uses PyTorch due to the move to Torch 2.0, so we tend to favour 11.7. Some older cards will not be compatible with CUDA 12, or even CUDA 11.7. If you are struggling with older cards that don't support CUDA 11.7 then post a comment and we'll try and help.

Since we are using CUDA 11.7+ (which has support for compute capability 3.7 and above), we can only support Nvidia CUDA cards that are equal to or better than a GK210 or Tesla K80 card. Please refer to this table of supported cards to determine if your card has compute capability 3.7 or above.

Newer cards such as the GTX 10xx, 20xx and 30xx series, RTX, MX series are fully supported.

AI is a memory intensive operation. Some cards with 2GB RAM or less may struggle in some situations. Using the dashboard, you can either disable modules you don't need, or disable GPU support entirely for one or more modules. This will free up memory and help get you back on track.

What Does It Include?

CodeProject.AI Server includes:

  • A HTTP REST API Server. The server listens for requests from other apps, passes them to the backend analysis services for processing, and then passes the results back to the caller. It runs as a simple self-contained web service on your device.
  • Backend Analysis services. The brains of the operation is in the analysis services sitting behind the front end API. All processing of data is done on the current machine. No calls to the cloud and no data leaving the device.
  • The source code, naturally.

CodeProject.AI Server can currently

  • Detect objects in images
  • Detect faces in images
  • Detect the type of scene represented in an image
  • Recognise faces that have been registered with the service
  • Perform detection on custom models

The development environment also provides modules that can

  • Remove a background from an image
  • Blur a background from an image
  • Enhance the resolution of an image
  • Pull out the most important sentences in text to generate a text summary
  • Prove sentiment analysis on text

We will be constantly expanding the feature list.

Our Goals

  • To promote AI development and inspire the AI developer community to dive in and have a go. Artificial Intelligence is a huge paradigm change in the industry and all developers owe it to themselves to experiment in and familiarize themselves with the technology. CodeProject.AI Server was built as a learning tool, a demonstration, and a library and service that can be used out of the box.
  • To make AI development easy. It's not that AI development is that hard. It's that there are so, so many options. Our architecture is designed to allow any AI implementation to find a home in our system, and for our service to be callable from any language.
  • To focus on core use-cases. We're deliberately not a solution for everyone. Instead, we're a solution for common day-to-day needs. We will be adding dozens of modules and scores of AI capabilities to our system, but our goal is always clarity and simplicity over a 100% solution.
  • To tap the expertise of the Developer Community. We're not experts but we know a developer or two out there who are. The true power of CodeProject.AI Server comes from the contributions and improvements from our AI community.

License

CodeProject.AI Server is licensed under the Server-Side Public License.

Release Notes

What's New - 2.6

  • You can now select, at install time, which modules you wish to have initially installed
  • Some modules (Coral, Yolov8) now allow you to download individual models at runtime via the dashboard.
  • A new generative AI module (Llama LLM Chatbot)
  • A standardised way to handle (in code) modules that run long processes such as generative AI
  • Debian support has been improved
  • Small UI improvements to the dashboard
  • Some simplification of the modulesettings files
  • The inclusion, in the source code, of template .NET and Python modules (both simple and long process demos)
  • Improvements to the Coral and ALPR modules (thanks to Seth and Mike)
  • Docker CUDA 12.2 image now includes cuDNN
  • Install script fixes
  • Added Object Segmentation to the YOLOv8 module

Previous Versions

Release 2.5

  • Dynamic Explorer UI: Each module now supplies its own UI for the explorer
  • Improved dashboard and explorer
    • The module listing now shows module version history if you click the version number
    • Explorer benchmark has been updated to use the custom models of the currently active object detection module
    • The Info button on the dashboard now includes a status data dump from the module. For things like object detectors, it will include a dictionary of labels / counts so you can see what's being detected. For longer running modules such as training it will include the training status. This is here to enable better UI features in the future
  • Updated module settings schema that includes module author and original project acknowledgement
  • Installer fixes
  • Improved Jetson support
  • Lots of bug fixes, but specifically there was a script issue affecting module installs, and a modulesettings.json issue affecting the YOLOv5 6.2 module, as well as the SuperResolution module.
  • Updated ALPR, OCR (PP-OCR4 support thanks to Mike Lud) and Coral Object Detection (multi-TPU support thanks to Seth Price) modules
  • Pre-installed modules in Docker can now be uninstalled / reinstalled
  • A new Sound Classifier module has been included
  • 2.5.4: A separate status update from each module that decouples the stats for a module. This just cleans things up a little on the backend
  • 2.5.4: Minor modulesettings.json schema update, which introduces the concept of model requirements.
  • 2.5.5: Support for long running processes with accompanying stable difussion module.

Release 2.4

  • Mesh support Automatically offload inference work to other servers on your network based on inference speed. Zero config, and dashboard support to enable/disable.
  • CUDA detection fixed
  • Module self-test performed on installation
  • YOLOv8 module added
  • YOLOv5 .NET module fixes for GPU, and YOLOv5 3.1 GPU support fixed
  • Python package and .NET installation issues fixed
  • Better prompts for admin-only installs
  • More logging output to help diagnose issues
  • VC Redist hash error fixed
  • General bug fixes.
  • Breaking: modulesettings.json schema changed

Release 2.3

  • A focus on improving the installation of modules at runtime. More error checks, faster re-install, better reporting, and manual fallbacks in situations where admin rights are needed
  • A revamped SDK that removes much (or all, in some cases) of the boilerplate code needed in install scripts
  • Fine grained support for different CUDA versions as well as systems such as Raspberry Pi, Orange Pi and Jetson
  • Support for CUDA 12.2
  • GPU support for PaddlePaddle (OCR and license plate readers benefit)
  • CUDA 12.2 Docker image
  • Lots of bug fixes in install scripts
  • UI tweaks
  • 2.3.4 ALPR now using GPU in Windows
  • 2.3.4 Corrections to Linux/macOS installers

Release 2.2.0

This release is still in testing and is focussed mainly on the installation process

  • An entirely new Windows installer offering more installation options and a smoother upgrade experience from here on.
  • New macOS and Ubuntu native installers, for x64 and arm64 (including Raspberry Pi)
  • A new installation SDK for making module installers far easier
  • Improved installation feedback and self-checks
  • Coral.AI support for Linux, macOS (version 11 and 12 only) and Windows
  • Updates:
    • 2.2.1 - 2.2.3 various installer fixes
    • 2.2.4 - Fix to remove chunking in order to allow HTTP1.1 access to the API (Blue Iris fix)

Release 2.1.x Beta

  • Improved Raspberry Pi support. A new, fast object detection module with support for the Coral.AI TPU, all within an Arm64 Docker image
  • All modules can now be installed / uninstalled (rather than having some modules fixed and uninstallable).
  • Installer is streamlined: Only the server is installed at installation time, and on first run, we install Object Detection (Python and .NET) and Face Processing (which can be uninstalled).
  • Reworking of the Python module SDK. Modules are new child classes, not aggregators of our module runner.
  • Reworking of the modulesettings file to make it simpler and have less replication
  • Improved logging: quantity, quality, filtering and better information
  • Addition of two modules: ObjectDetectionTFLite for Object Detection on Raspberry Pi using Coral, and Cartoonise for some fun
  • Improvements to half-precision support checks on CUDA cards
  • Modules are now versioned and our module registry will now only show modules that fit your current server version.
  • Various bug fixes
  • Shared Python runtimes now in /runtimes.
  • All modules moved from the /AnalysisLayer folder to the /modules folder
  • Tested on CUDA 12
     
  • Patch 2.1.11: YOLO training modulke now allows you to use your own dataset. YOLO 6.2 / Face Processing reverted back to Torch 1.13.
  • Patch 2.1.10: Added YOLOv5 training module and support. Improved system info. Orange Pi and NVIDIA Jetson support. Added Triggers. Renamed VersionCompatibililty to ModuleReleases. Becoz speling.
  • Patch 2.1.9: Increased and adjustable module install timeout and improved install logs. Fixes around resource contention in PyTorch, Fixes to resource usage reporting, improved Native Linux/WSL CUDA setup. Async fixes. Improvements to half-precision support.
  • Patch 2.1.8: Reduced, drastically, the load on the system while getting CPU/GPU usage updates.
  • Patch 2.1.7: Fixed a memory / resource leak that may have been causing server shutdowns
  • Patch 2.1.6 and below: Installer fixes

Please see our CUDA Notes for information on setting up, and restrictions around, Nvidia cards and CUDA support.

If you are upgrading: when the dashboard launches, it might be necessary to force-reload (Ctrl+R on Windows) the dashboard to ensure you are viewing the latest version.

Release 2.0.x Beta

  • 2.0.8: Improved analysis process management. Stamp out those errant memory hogging Python processes!
  • 2.0.7: Improved logging, both file based and in the dashboard, module installer/uninstaller bug fixes
  • 2.0.6: Corrected issues with downloadable modules installer
  • Our new Module Registry: download and install modules at runtime via the dashboard
  • Improved performance for the Object Detection modules
  • Optional YOLO 3.1 Object Detection module for older GPUs
  • Optimised RAM use
  • Support for Raspberry Pi 4+. Code and run natively directly on the Raspberry Pi using VSCode natively
  • Revamped dashboard
  • New timing reporting for each API call
  • New, simplified setup and install scripts

Release 1.6.x Beta

  • Optimised RAM use
  • Ability to enable / disable modules and GPU support via the dashboard
  • REST settings API for updating settings on the fly
  • Apple M1/M2 GPU support
  • Workarounds for some Nvidia cards
  • Async processes and logging for a performance boost
  • Breaking: The CustomObjectDetection is now part of ObjectDetectionYolo
  • Performance fix for CPU + video demo
  • Patch 1.6.7: potential memory leak addressed
  • Patch 1.6.8: image handling improvements on Linux, multi-thread ONNX on .NET

Release 1.5.6.2 Beta

  • Docker nVidia GPU support
  • Further performance improvements
  • cuDNN install script to help with nVidia driver and toolkit installation
  • Bug fixes

Release 1.5.6 Beta

  • nVidia GPU support for Windows
  • Perf improvements to Python modules
  • Work on the Python SDK to make creating modules easier
  • Dev installers now drastically simplified for those creating new modules
  • Added SuperResolution as a demo module

Release 1.5 Beta

  • Support for custom models

Release 1.3.x Beta

  • Refactored and improved setup and module addition system
  • Introduction of modulesettings.json files
  • New analysis modules

Release 1.2.x Beta

  • Support for Apple Silicon for development mode
  • Native Windows installer
  • Runs as Windows Service
  • Run in a Docker Container
  • Installs and builds using VSCode in Linux (Ubuntu), macOS and Windows, as well as Visual Studio on Windows
  • General optimisation of the download payload sizes

Previous

  • We started with a proof of concept on Windows 10+ only. Installs we via a simple BAT script, and the code is full of exciting sharp edges. A simple dashboard and playground are included. Analysis is currently Python code only.
  • Version checks are enabled to alert users to new versions.
  • A new .NET implementation scene detection using the YOLO model to ensure the codebase is platform and tech stack agnostic
  • Blue Iris integration completed.

Written By
Software Developer CodeProject Solutions
Canada Canada
The CodeProject team have been writing software, building communities, and hosting CodeProject.com for over 20 years. We are passionate about helping developers share knowledge, learn new skills, and connect. We believe everyone can code, and every contribution, no matter how small, helps.

The CodeProject team is currently focussing on CodeProject.AI Server, a stand-alone, self-hosted server that provides AI inferencing services on any platform for any language. Learn AI by jumping in the deep end with us: codeproject.com/AI.
This is a Organisation

4 members

Comments and Discussions

 
GeneralRe: Pi 5 Coral Hat Pin
mailseth223-Jan-24 16:49
mailseth223-Jan-24 16:49 
GeneralRe: Pi 5 Coral Hat Pin
Anthony m Jul202323-Jan-24 16:56
Anthony m Jul202323-Jan-24 16:56 
GeneralRe: Pi 5 Coral Hat Pin
mailseth223-Jan-24 17:25
mailseth223-Jan-24 17:25 
Question2.5.1 RC1 problems on YOLOv5 6.2 and v8 1.2.4 Pin
jeremypsl22-Jan-24 9:49
jeremypsl22-Jan-24 9:49 
AnswerRe: 2.5.1 RC1 problems on YOLOv5 6.2 and v8 1.2.4 Pin
Chris Maunder22-Jan-24 12:50
cofounderChris Maunder22-Jan-24 12:50 
GeneralRe: 2.5.1 RC1 problems on YOLOv5 6.2 and v8 1.2.4 Pin
jeremypsl23-Jan-24 2:04
jeremypsl23-Jan-24 2:04 
GeneralRe: 2.5.1 RC1 problems on YOLOv5 6.2 and v8 1.2.4 Pin
Chris Maunder23-Jan-24 3:34
cofounderChris Maunder23-Jan-24 3:34 
Question2.5.1 RC1 Coral Install Error Pin
mpl133722-Jan-24 8:41
mpl133722-Jan-24 8:41 
Hello,

i cant install Coral Frown | :(

Terminal
<pre>20:25:35:System:           Docker
20:25:35:Operating System: Linux (Linux 6.5.11-7-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-7 (2023-12-05T09:44Z))
20:25:35:CPUs:             Intel(R) Core(TM) i3-8109U CPU @ 3.00GHz (Intel)
20:25:35:                  1 CPU x 2 cores. 4 logical processors (x64)
20:25:35:System RAM:       15 GiB
20:25:35:Platform:         Linux
20:25:35:BuildConfig:      Release
20:25:35:Execution Env:    Docker
20:25:35:Runtime Env:      Production
20:25:35:.NET framework:   .NET 7.0.15
20:25:35:Default Python:   3.10
20:25:35:App DataDir:      /etc/codeproject/ai
20:25:35:Video adapter info:
20:25:35:STARTING CODEPROJECT.AI SERVER
20:25:35:RUNTIMES_PATH             = /app/runtimes
20:25:35:PREINSTALLED_MODULES_PATH = /app/preinstalled-modules
20:25:35:MODULES_PATH              = /app/modules
20:25:35:PYTHON_PATH               = /bin/linux/%PYTHON_NAME%/venv/bin/python3
20:25:35:Data Dir                  = /etc/codeproject/ai
20:25:35:Server version:   2.5.1-RC1
20:25:35:ModuleRunner Start
20:25:35:Starting Background AI Modules
20:25:35:Overriding address(es) 'http://+:32168, http://+:5000'. Binding to endpoints defined via IConfiguration and/or UseKestrel() instead.
20:25:38:Running module using: python3.8
20:25:38:
20:25:38:Attempting to start FaceProcessing with python3.8 "/app/preinstalled-modules/FaceProcessing/intelligencelayer/face.py"
20:25:38:
20:25:38:Module 'Face Processing' 1.10.0 (ID: FaceProcessing)
20:25:38:Valid:         True
20:25:38:Module Path:   <root>/preinstalled-modules/FaceProcessing
20:25:38:AutoStart:     True
20:25:38:Queue:         faceprocessing_queue
20:25:38:Runtime:       python3.8
20:25:38:Starting python3.8 "/app.../FaceProcessing/intelligencelayer/face.py"
20:25:38:Runtime Loc:   Shared
20:25:38:FilePath:      intelligencelayer/face.py
20:25:38:Pre installed: True
20:25:38:Start pause:   3 sec
20:25:38:LogVerbosity:
20:25:38:Platforms:     all,!raspberrypi,!jetson
20:25:38:GPU Libraries: installed if available
20:25:38:GPU Enabled:   enabled
20:25:38:Parallelism:   0
20:25:38:Accelerator:
20:25:38:Half Precis.:  enable
20:25:38:Environment Variables
20:25:38:APPDIR             = <root>/preinstalled-modules/FaceProcessing/intelligencelayer
20:25:38:DATA_DIR           = /etc/codeproject/ai
20:25:38:MODE               = MEDIUM
20:25:38:MODELS_DIR         = <root>/preinstalled-modules/FaceProcessing/assets
20:25:38:PROFILE            = desktop_gpu
20:25:38:USE_CUDA           = True
20:25:38:YOLOv5_AUTOINSTALL = false
20:25:38:YOLOv5_VERBOSE     = false
20:25:38:
20:25:38:Started Face Processing module
20:25:41:Server: This is a new, unreleased version
20:25:41:Current Version is 2.5.1-RC1
20:25:41:Running module using: python3.8
20:25:41:Starting python3.8 "/app...jectDetectionYOLOv5-6.2/detect_adapter.py"
20:25:41:
20:25:41:Attempting to start ObjectDetectionYOLOv5-6.2 with python3.8 "/app/preinstalled-modules/ObjectDetectionYOLOv5-6.2/detect_adapter.py"
20:25:41:
20:25:41:Module 'Object Detection (YOLOv5 6.2)' 1.9.0 (ID: ObjectDetectionYOLOv5-6.2)
20:25:41:Valid:         True
20:25:41:Module Path:   <root>/preinstalled-modules/ObjectDetectionYOLOv5-6.2
20:25:41:AutoStart:     True
20:25:41:Queue:         objectdetection_queue
20:25:41:Runtime:       python3.8
20:25:41:Runtime Loc:   Shared
20:25:41:FilePath:      detect_adapter.py
20:25:41:Pre installed: True
20:25:41:Start pause:   1 sec
20:25:41:LogVerbosity:
20:25:41:Platforms:     all,!raspberrypi,!jetson
20:25:41:GPU Libraries: installed if available
20:25:41:GPU Enabled:   enabled
20:25:41:Parallelism:   0
20:25:41:Accelerator:
20:25:41:Half Precis.:  enable
20:25:41:Environment Variables
20:25:41:APPDIR             = <root>/preinstalled-modules/ObjectDetectionYOLOv5-6.2
20:25:41:CUSTOM_MODELS_DIR  = <root>/preinstalled-modules/ObjectDetectionYOLOv5-6.2/custom-models
20:25:41:MODELS_DIR         = <root>/preinstalled-modules/ObjectDetectionYOLOv5-6.2/assets
20:25:41:MODEL_SIZE         = Medium
20:25:41:USE_CUDA           = True
20:25:41:YOLOv5_AUTOINSTALL = false
20:25:41:YOLOv5_VERBOSE     = false
20:25:41:
20:25:41:Started Object Detection (YOLOv5 6.2) module
20:25:43:face.py: Vision AI services setup: Retrieving environment variables...
20:25:43:face.py: APPDIR:       /app/preinstalled-modules/FaceProcessing/intelligencelayer
20:25:43:face.py: PROFILE:      desktop_cpu
20:25:43:face.py: USE_CUDA:     False
20:25:43:face.py: DATA_DIR:     /etc/codeproject/ai
20:25:43:face.py: Running init for Face Processing
20:25:43:face.py: MODELS_DIR:   /app/preinstalled-modules/FaceProcessing/assets
20:25:43:face.py: MODE:         MEDIUM
20:25:43:Face Processing: Face Processing started.
20:25:46:detect_adapter.py: APPDIR:      /app/preinstalled-modules/ObjectDetectionYOLOv5-6.2
20:25:46:detect_adapter.py: Running init for Object Detection (YOLOv5 6.2)
20:25:46:detect_adapter.py: MODEL_SIZE:  medium
20:25:46:detect_adapter.py: MODELS_DIR:  /app/preinstalled-modules/ObjectDetectionYOLOv5-6.2/assets
20:25:46:Object Detection (YOLOv5 6.2): Object Detection (YOLOv5 6.2) started.
20:27:07:Preparing to install module 'ObjectDetectionCoral'
20:27:07:Downloading module 'ObjectDetectionCoral'
20:27:07:Installing module 'ObjectDetectionCoral'
20:27:07:Installer script at '/app/setup.sh'
20:27:07:ObjectDetectionCoral: Setting verbosity to loud
20:27:07:ObjectDetectionCoral: Hi Docker! We will disable shared python installs for downloaded modules
20:27:07:ObjectDetectionCoral: No schemas installed
20:27:07:ObjectDetectionCoral: (No schemas means: we can't detect if you're in light or dark mode)
20:27:07:ObjectDetectionCoral:              Installing CodeProject.AI Analysis Module                
20:27:07:ObjectDetectionCoral: ======================================================================
20:27:07:ObjectDetectionCoral:                    CodeProject.AI Installer                           
20:27:07:ObjectDetectionCoral: ======================================================================
20:27:07:ObjectDetectionCoral: 14.04 GiB of 28.09 GiB available on Docker
20:27:07:ObjectDetectionCoral: os, arch             = linux x86_64
20:27:07:ObjectDetectionCoral: systemName, platform = Docker, linux
20:27:07:ObjectDetectionCoral: SSH                  = false
20:27:07:ObjectDetectionCoral: setupMode            = InstallModule
20:27:07:ObjectDetectionCoral: executionEnvironment = Production
20:27:07:ObjectDetectionCoral: rootDirPath          = /app
20:27:07:ObjectDetectionCoral: appRootDirPath       = /app
20:27:07:ObjectDetectionCoral: setupScriptDirPath   = /app
20:27:07:ObjectDetectionCoral: sdkScriptsDirPath    = /app/SDK/Scripts
20:27:07:ObjectDetectionCoral: runtimesDirPath      = /app/runtimes
20:27:07:ObjectDetectionCoral: modulesDirPath       = /app/modules
20:27:07:ObjectDetectionCoral: downloadDirPath      = /app/downloads
20:27:07:ObjectDetectionCoral: General CodeProject.AI setup                                          
20:27:07:ObjectDetectionCoral: Setting permissions on downloads folder...Done
20:27:07:ObjectDetectionCoral: Setting permissions on runtimes folder...Done
20:27:07:ObjectDetectionCoral: Setting permissions on persisted data folder...Done
20:27:07:ObjectDetectionCoral: GPU support                                                           
20:27:07:ObjectDetectionCoral: CUDA (NVIDIA) Present: No
20:27:10:ObjectDetectionCoral: ROCm (AMD) Present:    (attempt to install rocminfo... ) No
20:27:10:ObjectDetectionCoral: MPS (Apple) Present:   No
20:27:10:ObjectDetectionCoral: Reading module settings.Modules.ObjectDetectionCoral.Name is Object Detection (Coral) in modulesettings.json
20:27:10:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.Version is 2.0.3 in modulesettings.json
20:27:10:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.LaunchSettings.Runtime is python3.9 in modulesettings.json
20:27:10:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.LaunchSettings.RuntimeLocation is Local in modulesettings.json
20:27:10:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.LaunchSettings.FilePath is objectdetection_coral_adapter.py in modulesettings.json
20:27:10:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.GpuOptions.InstallGPU is true in modulesettings.json
20:27:11:ObjectDetectionCoral: ..Modules.ObjectDetectionCoral.InstallOptions.Platforms is [ "all" ] in modulesettings.json
20:27:11:ObjectDetectionCoral: .Done
20:27:11:ObjectDetectionCoral: Processing module ObjectDetectionCoral 2.0.3                          
20:27:11:ObjectDetectionCoral: moduleName        = Object Detection (Coral)
20:27:11:ObjectDetectionCoral: moduleVersion     = 2.0.3
20:27:11:ObjectDetectionCoral: runtime           = python3.9
20:27:11:ObjectDetectionCoral: runtimeLocation   = Local
20:27:11:ObjectDetectionCoral: installGPU        = true
20:27:11:ObjectDetectionCoral: pythonVersion     = 3.9
20:27:11:ObjectDetectionCoral: virtualEnvDirPath = /app/modules/ObjectDetectionCoral/bin/linux/python39/venv
20:27:11:ObjectDetectionCoral: venvPythonCmdPath = /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/bin/python3.9
20:27:11:ObjectDetectionCoral: packagesDirPath   = /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/
20:27:11:ObjectDetectionCoral: Installing Python 3.9
20:27:11:ObjectDetectionCoral: Python install path is /app/modules/ObjectDetectionCoral/bin/linux/python39
20:27:11:ObjectDetectionCoral: Python 3.9 is already installed
20:27:11:ObjectDetectionCoral: Ensuring PIP in base python install...Reading package lists...
20:27:12:ObjectDetectionCoral: Building dependency tree...
20:27:12:ObjectDetectionCoral: Reading state information...
20:27:12:ObjectDetectionCoral: 0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 5 not upgraded.
20:27:12:ObjectDetectionCoral: Need to get 193 kB of archives.
20:27:12:ObjectDetectionCoral: After this operation, 0 B of additional disk space will be used.
20:27:12:ObjectDetectionCoral: Get:1 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy/main amd64 python3.9-distutils all 3.9.18-1+jammy1 [193 kB]
20:27:12:ObjectDetectionCoral: debconf: delaying package configuration, since apt-utils is not installed
20:27:12:ObjectDetectionCoral: Fetched 193 kB in 0s (689 kB/s)
20:27:12:ObjectDetectionCoral: (Reading database ... 
20:27:12:ObjectDetectionCoral: (Reading database ... 5%
20:27:12:ObjectDetectionCoral: (Reading database ... 10%
20:27:12:ObjectDetectionCoral: (Reading database ... 15%
20:27:12:ObjectDetectionCoral: (Reading database ... 20%
20:27:12:ObjectDetectionCoral: (Reading database ... 25%
20:27:12:ObjectDetectionCoral: (Reading database ... 30%
20:27:12:ObjectDetectionCoral: (Reading database ... 35%
20:27:12:ObjectDetectionCoral: (Reading database ... 40%
20:27:12:ObjectDetectionCoral: (Reading database ... 45%
20:27:12:ObjectDetectionCoral: (Reading database ... 50%
20:27:12:ObjectDetectionCoral: (Reading database ... 55%
20:27:12:ObjectDetectionCoral: (Reading database ... 60%
20:27:12:ObjectDetectionCoral: (Reading database ... 65%
20:27:12:ObjectDetectionCoral: (Reading database ... 70%
20:27:12:ObjectDetectionCoral: (Reading database ... 75%
20:27:12:ObjectDetectionCoral: (Reading database ... 80%
20:27:12:ObjectDetectionCoral: (Reading database ... 85%
20:27:12:ObjectDetectionCoral: (Reading database ... 90%
20:27:12:ObjectDetectionCoral: (Reading database ... 95%
20:27:12:ObjectDetectionCoral: (Reading database ... 100%
20:27:12:ObjectDetectionCoral: (Reading database ... 20814 files and directories currently installed.)
20:27:12:ObjectDetectionCoral: Preparing to unpack .../python3.9-distutils_3.9.18-1+jammy1_all.deb ...
20:27:12:ObjectDetectionCoral: Unpacking python3.9-distutils (3.9.18-1+jammy1) over (3.9.18-1+jammy1) ...
20:27:13:ObjectDetectionCoral: Setting up python3.9-distutils (3.9.18-1+jammy1) ...
20:27:13:ObjectDetectionCoral: /app/SDK/Scripts/utils.sh: line 1125: /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/bin/python3.9: No such file or directory
20:27:13:ObjectDetectionCoral: done
20:27:13:ObjectDetectionCoral: Upgrading PIP in base python install...Requirement already satisfied: pip in /usr/local/lib/python3.9/dist-packages (23.3.2)
20:27:13:ObjectDetectionCoral: WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
20:27:13:ObjectDetectionCoral: done
20:27:13:ObjectDetectionCoral: Installing Virtual Environment tools for Linux...
20:27:13:ObjectDetectionCoral: Searching for installed dependencies:
20:27:16:ObjectDetectionCoral:  -> python3-pip python3-setuptools python3.9-venv Done
20:27:16:ObjectDetectionCoral: All dependencies already installed.
20:27:16:ObjectDetectionCoral: Creating Virtual Environment (Local)...Install path is /app/modules/ObjectDetectionCoral/bin/linux/python39
20:27:19:ObjectDetectionCoral: Done
20:27:19:ObjectDetectionCoral: Checking for Python 3.9...(Found Python 3.9.18) All good
20:27:22:ObjectDetectionCoral: Upgrading PIP in virtual environment... done
20:27:24:ObjectDetectionCoral: Installing updated setuptools in venv... Done
20:27:24:ObjectDetectionCoral: Searching for installed dependencies:
20:27:25:ObjectDetectionCoral:  -> gnupg Done
20:27:25:ObjectDetectionCoral: All dependencies already installed.
20:27:26:ObjectDetectionCoral: /app/modules/ObjectDetectionCoral/install.sh: line 115: pushd: /app/modules/ObjectDetectionCoral/edgetpu_runtime: No such file or directory
20:27:26:ObjectDetectionCoral: /app/modules/ObjectDetectionCoral/install.sh: line 124: popd: directory stack empty
20:27:26:ObjectDetectionCoral: Downloading objectdetect-coral-multitpu-models.zip to /app/downloads/ObjectDetectionCoral
20:27:26:ObjectDetectionCoral: Extracting to assets in this folder
20:27:26:ObjectDetectionCoral: --2024-01-22 19:27:26--  https://codeproject-ai.s3.ca-central-1.amazonaws.com/server/assets/models/objectdetect-coral-multitpu-models.zip
20:27:26:ObjectDetectionCoral: Resolving codeproject-ai.s3.ca-central-1.amazonaws.com (codeproject-ai.s3.ca-central-1.amazonaws.com)... 16.12.5.42, 3.5.253.129, 52.95.190.114, ...
20:27:26:ObjectDetectionCoral: Connecting to codeproject-ai.s3.ca-central-1.amazonaws.com (codeproject-ai.s3.ca-central-1.amazonaws.com)|16.12.5.42|:443... connected.
20:27:27:ObjectDetectionCoral: HTTP request sent, awaiting response... 200 OK
20:27:27:ObjectDetectionCoral: Length: 359229695 (343M) [application/zip]
20:27:27:ObjectDetectionCoral: Saving to: '/app/downloads/ObjectDetectionCoral/objectdetect-coral-multitpu-models.zip'
20:27:27:ObjectDetectionCoral: objectdetect-coral-   0%[                    ]       0  --.-KB/s               
20:27:27:ObjectDetectionCoral: objectdetect-coral-   0%[                    ] 117.49K   415KB/s               
20:27:27:ObjectDetectionCoral: objectdetect-coral-   0%[                    ] 593.49K  1.18MB/s               
20:27:28:ObjectDetectionCoral: objectdetect-coral-   0%[                    ]   2.44M  3.54MB/s               
20:27:28:ObjectDetectionCoral: objectdetect-coral-   1%[                    ]   4.87M  5.46MB/s               
20:27:28:ObjectDetectionCoral: objectdetect-coral-   2%[                    ]   7.40M  6.77MB/s               
20:27:28:ObjectDetectionCoral: objectdetect-coral-   2%[                    ]   9.69M  7.50MB/s               
20:27:28:ObjectDetectionCoral: objectdetect-coral-   3%[                    ]  11.91M  7.97MB/s               
20:27:29:ObjectDetectionCoral: objectdetect-coral-   4%[                    ]  14.05M  8.29MB/s               
20:27:29:ObjectDetectionCoral: objectdetect-coral-   4%[                    ]  16.21M  8.55MB/s               
20:27:29:ObjectDetectionCoral: objectdetect-coral-   5%[>                   ]  18.44M  8.80MB/s               
20:27:29:ObjectDetectionCoral: objectdetect-coral-   5%[>                   ]  18.54M  7.90MB/s               
20:27:29:ObjectDetectionCoral: objectdetect-coral-   6%[>                   ]  21.52M  8.40MB/s               
20:27:30:ObjectDetectionCoral: objectdetect-coral-   6%[>                   ]  23.82M  8.62MB/s               
20:27:30:ObjectDetectionCoral: objectdetect-coral-   7%[>                   ]  26.10M  8.81MB/s               
20:27:30:ObjectDetectionCoral: objectdetect-coral-   8%[>                   ]  28.32M  8.95MB/s    eta 35s    
20:27:30:ObjectDetectionCoral: objectdetect-coral-   8%[>                   ]  30.65M  9.11MB/s    eta 35s    
20:27:30:ObjectDetectionCoral: objectdetect-coral-   9%[>                   ]  33.01M  9.78MB/s    eta 35s    
20:27:31:ObjectDetectionCoral: objectdetect-coral-  10%[=>                  ]  35.51M  10.6MB/s    eta 35s    
20:27:31:ObjectDetectionCoral: objectdetect-coral-  11%[=>                  ]  37.96M  10.8MB/s    eta 35s    
20:27:31:ObjectDetectionCoral: objectdetect-coral-  11%[=>                  ]  40.26M  10.8MB/s    eta 31s    
20:27:31:ObjectDetectionCoral: objectdetect-coral-  12%[=>                  ]  42.62M  10.7MB/s    eta 31s    
20:27:31:ObjectDetectionCoral: objectdetect-coral-  12%[=>                  ]  43.44M  10.1MB/s    eta 31s    
20:27:32:ObjectDetectionCoral: objectdetect-coral-  13%[=>                  ]  47.23M  10.6MB/s    eta 31s    
20:27:32:ObjectDetectionCoral: objectdetect-coral-  14%[=>                  ]  49.38M  10.6MB/s    eta 31s    
20:27:32:ObjectDetectionCoral: objectdetect-coral-  14%[=>                  ]  51.30M  10.6MB/s    eta 30s    
20:27:32:ObjectDetectionCoral: objectdetect-coral-  15%[==>                 ]  53.66M  10.6MB/s    eta 30s    
20:27:32:ObjectDetectionCoral: objectdetect-coral-  16%[==>                 ]  56.19M  11.5MB/s    eta 30s    
20:27:33:ObjectDetectionCoral: objectdetect-coral-  17%[==>                 ]  58.73M  11.4MB/s    eta 30s    
20:27:33:ObjectDetectionCoral: objectdetect-coral-  17%[==>                 ]  61.26M  11.5MB/s    eta 30s    
20:27:33:ObjectDetectionCoral: objectdetect-coral-  18%[==>                 ]  63.79M  11.6MB/s    eta 27s    
20:27:33:ObjectDetectionCoral: objectdetect-coral-  19%[==>                 ]  66.32M  11.6MB/s    eta 27s    
20:27:33:ObjectDetectionCoral: objectdetect-coral-  20%[===>                ]  68.85M  11.7MB/s    eta 27s    
20:27:34:ObjectDetectionCoral: objectdetect-coral-  20%[===>                ]  71.38M  11.8MB/s    eta 27s    
20:27:34:ObjectDetectionCoral: objectdetect-coral-  21%[===>                ]  73.24M  11.2MB/s    eta 27s    
20:27:34:ObjectDetectionCoral: objectdetect-coral-  22%[===>                ]  77.23M  11.7MB/s    eta 25s    
20:27:34:ObjectDetectionCoral: objectdetect-coral-  23%[===>                ]  79.32M  11.7MB/s    eta 25s    
20:27:35:ObjectDetectionCoral: objectdetect-coral-  23%[===>                ]  81.85M  12.4MB/s    eta 25s    
20:27:35:ObjectDetectionCoral: objectdetect-coral-  24%[===>                ]  84.38M  11.9MB/s    eta 25s    
20:27:35:ObjectDetectionCoral: objectdetect-coral-  25%[====>               ]  86.91M  12.1MB/s    eta 25s    
20:27:35:ObjectDetectionCoral: objectdetect-coral-  26%[====>               ]  89.43M  12.3MB/s    eta 24s    
20:27:35:ObjectDetectionCoral: objectdetect-coral-  26%[====>               ]  91.94M  12.4MB/s    eta 24s    
20:27:36:ObjectDetectionCoral: objectdetect-coral-  27%[====>               ]  94.33M  12.3MB/s    eta 24s    
20:27:36:ObjectDetectionCoral: objectdetect-coral-  28%[====>               ]  96.87M  12.3MB/s    eta 24s    
20:27:36:ObjectDetectionCoral: objectdetect-coral-  29%[====>               ]  99.40M  12.3MB/s    eta 24s    
20:27:36:ObjectDetectionCoral: objectdetect-coral-  29%[====>               ] 101.93M  12.3MB/s    eta 22s    
20:27:36:ObjectDetectionCoral: objectdetect-coral-  30%[=====>              ] 104.46M  12.3MB/s    eta 22s    
20:27:37:ObjectDetectionCoral: objectdetect-coral-  31%[=====>              ] 106.99M  12.3MB/s    eta 22s    
20:27:37:ObjectDetectionCoral: objectdetect-coral-  31%[=====>              ] 109.13M  12.2MB/s    eta 22s    
20:27:37:ObjectDetectionCoral: objectdetect-coral-  32%[=====>              ] 111.44M  12.7MB/s    eta 22s    
20:27:37:ObjectDetectionCoral: objectdetect-coral-  33%[=====>              ] 113.98M  12.1MB/s    eta 21s    
20:27:37:ObjectDetectionCoral: objectdetect-coral-  34%[=====>              ] 116.51M  12.3MB/s    eta 21s    
20:27:38:ObjectDetectionCoral: objectdetect-coral-  34%[=====>              ] 119.04M  12.4MB/s    eta 21s    
20:27:38:ObjectDetectionCoral: objectdetect-coral-  35%[======>             ] 121.57M  12.4MB/s    eta 21s    
20:27:38:ObjectDetectionCoral: objectdetect-coral-  36%[======>             ] 124.10M  12.4MB/s    eta 21s    
20:27:38:ObjectDetectionCoral: objectdetect-coral-  36%[======>             ] 126.63M  12.4MB/s    eta 19s    
20:27:38:ObjectDetectionCoral: objectdetect-coral-  37%[======>             ] 129.16M  12.4MB/s    eta 19s    
20:27:39:ObjectDetectionCoral: objectdetect-coral-  38%[======>             ] 131.69M  12.4MB/s    eta 19s    
20:27:39:ObjectDetectionCoral: objectdetect-coral-  39%[======>             ] 134.23M  12.4MB/s    eta 19s    
20:27:39:ObjectDetectionCoral: objectdetect-coral-  39%[======>             ] 136.76M  12.4MB/s    eta 19s    
20:27:39:ObjectDetectionCoral: objectdetect-coral-  40%[=======>            ] 139.29M  12.4MB/s    eta 18s    
20:27:39:ObjectDetectionCoral: objectdetect-coral-  41%[=======>            ] 141.82M  12.4MB/s    eta 18s    
20:27:40:ObjectDetectionCoral: objectdetect-coral-  42%[=======>            ] 144.35M  12.4MB/s    eta 18s    
20:27:40:ObjectDetectionCoral: objectdetect-coral-  42%[=======>            ] 146.88M  12.5MB/s    eta 18s    
20:27:40:Response timeout. Try increasing the timeout value
20:27:40:ObjectDetectionCoral: objectdetect-coral-  43%[=======>            ] 149.41M  12.6MB/s    eta 18s    
20:27:40:ObjectDetectionCoral: objectdetect-coral-  44%[=======>            ] 151.76M  12.6MB/s    eta 17s    
20:27:40:ObjectDetectionCoral: objectdetect-coral-  44%[=======>            ] 153.93M  12.4MB/s    eta 17s    
20:27:41:ObjectDetectionCoral: objectdetect-coral-  45%[========>           ] 156.33M  12.4MB/s    eta 17s    
20:27:41:ObjectDetectionCoral: objectdetect-coral-  46%[========>           ] 158.87M  12.4MB/s    eta 17s    
20:27:41:ObjectDetectionCoral: objectdetect-coral-  47%[========>           ] 161.40M  12.4MB/s    eta 17s    
20:27:41:ObjectDetectionCoral: objectdetect-coral-  47%[========>           ] 163.93M  12.4MB/s    eta 16s    
20:27:41:ObjectDetectionCoral: objectdetect-coral-  48%[========>           ] 166.46M  12.4MB/s    eta 16s    
20:27:42:ObjectDetectionCoral: objectdetect-coral-  49%[========>           ] 168.99M  12.4MB/s    eta 16s    
20:27:42:ObjectDetectionCoral: objectdetect-coral-  50%[=========>          ] 171.52M  12.4MB/s    eta 16s    
20:27:42:ObjectDetectionCoral: objectdetect-coral-  50%[=========>          ] 174.05M  12.4MB/s    eta 16s    
20:27:42:ObjectDetectionCoral: objectdetect-coral-  51%[=========>          ] 176.58M  12.4MB/s    eta 14s    
20:27:42:ObjectDetectionCoral: objectdetect-coral-  52%[=========>          ] 179.12M  12.4MB/s    eta 14s    
20:27:43:ObjectDetectionCoral: objectdetect-coral-  53%[=========>          ] 181.65M  12.4MB/s    eta 14s    
20:27:43:ObjectDetectionCoral: objectdetect-coral-  53%[=========>          ] 184.18M  12.4MB/s    eta 14s    
20:27:43:ObjectDetectionCoral: objectdetect-coral-  54%[=========>          ] 186.71M  12.4MB/s    eta 14s    
20:27:43:ObjectDetectionCoral: objectdetect-coral-  55%[==========>         ] 189.24M  12.4MB/s    eta 13s    
20:27:43:ObjectDetectionCoral: objectdetect-coral-  55%[==========>         ] 191.77M  12.5MB/s    eta 13s    
20:27:44:ObjectDetectionCoral: objectdetect-coral-  56%[==========>         ] 194.30M  12.6MB/s    eta 13s    
20:27:44:ObjectDetectionCoral: objectdetect-coral-  57%[==========>         ] 196.83M  12.6MB/s    eta 13s    
20:27:44:ObjectDetectionCoral: objectdetect-coral-  58%[==========>         ] 199.37M  12.6MB/s    eta 13s    
20:27:44:ObjectDetectionCoral: objectdetect-coral-  58%[==========>         ] 201.90M  12.6MB/s    eta 12s    
20:27:44:ObjectDetectionCoral: objectdetect-coral-  59%[==========>         ] 204.43M  12.6MB/s    eta 12s    
20:27:45:ObjectDetectionCoral: objectdetect-coral-  60%[===========>        ] 206.96M  12.6MB/s    eta 12s    
20:27:45:ObjectDetectionCoral: objectdetect-coral-  61%[===========>        ] 209.49M  12.6MB/s    eta 12s    
20:27:45:ObjectDetectionCoral: objectdetect-coral-  61%[===========>        ] 212.01M  12.6MB/s    eta 12s    
20:27:45:ObjectDetectionCoral: objectdetect-coral-  62%[===========>        ] 214.29M  12.5MB/s    eta 11s    
20:27:45:ObjectDetectionCoral: objectdetect-coral-  63%[===========>        ] 216.51M  12.4MB/s    eta 11s    
20:27:46:ObjectDetectionCoral: objectdetect-coral-  63%[===========>        ] 218.93M  12.4MB/s    eta 11s    
20:27:46:ObjectDetectionCoral: objectdetect-coral-  64%[===========>        ] 221.46M  12.4MB/s    eta 11s    
20:27:46:ObjectDetectionCoral: objectdetect-coral-  65%[============>       ] 223.99M  12.4MB/s    eta 11s    
20:27:46:ObjectDetectionCoral: objectdetect-coral-  66%[============>       ] 226.52M  12.4MB/s    eta 10s    
20:27:46:ObjectDetectionCoral: objectdetect-coral-  66%[============>       ] 229.05M  12.4MB/s    eta 10s    
20:27:47:ObjectDetectionCoral: objectdetect-coral-  67%[============>       ] 231.58M  12.4MB/s    eta 10s    
20:27:47:ObjectDetectionCoral: objectdetect-coral-  68%[============>       ] 234.12M  12.4MB/s    eta 10s    
20:27:47:ObjectDetectionCoral: objectdetect-coral-  69%[============>       ] 236.65M  12.4MB/s    eta 10s    
20:27:47:ObjectDetectionCoral: objectdetect-coral-  69%[============>       ] 239.18M  12.4MB/s    eta 9s     
20:27:47:ObjectDetectionCoral: objectdetect-coral-  70%[=============>      ] 241.71M  12.4MB/s    eta 9s     
20:27:48:ObjectDetectionCoral: objectdetect-coral-  71%[=============>      ] 244.24M  12.4MB/s    eta 9s     
20:27:48:ObjectDetectionCoral: objectdetect-coral-  72%[=============>      ] 246.77M  12.4MB/s    eta 9s     
20:27:48:ObjectDetectionCoral: objectdetect-coral-  72%[=============>      ] 249.30M  12.4MB/s    eta 9s     
20:27:48:ObjectDetectionCoral: objectdetect-coral-  73%[=============>      ] 251.83M  12.4MB/s    eta 8s     
20:27:48:ObjectDetectionCoral: objectdetect-coral-  74%[=============>      ] 254.37M  12.5MB/s    eta 8s     
20:27:49:ObjectDetectionCoral: objectdetect-coral-  74%[=============>      ] 256.90M  12.6MB/s    eta 8s     
20:27:49:ObjectDetectionCoral: objectdetect-coral-  75%[==============>     ] 259.43M  12.6MB/s    eta 8s     
20:27:49:ObjectDetectionCoral: objectdetect-coral-  76%[==============>     ] 261.96M  12.6MB/s    eta 8s     
20:27:49:ObjectDetectionCoral: objectdetect-coral-  77%[==============>     ] 264.49M  12.6MB/s    eta 7s     
20:27:49:ObjectDetectionCoral: objectdetect-coral-  77%[==============>     ] 267.02M  12.6MB/s    eta 7s     
20:27:50:ObjectDetectionCoral: objectdetect-coral-  78%[==============>     ] 269.55M  12.6MB/s    eta 7s     
20:27:50:ObjectDetectionCoral: objectdetect-coral-  78%[==============>     ] 270.57M  12.1MB/s    eta 7s     
20:27:50:ObjectDetectionCoral: objectdetect-coral-  80%[===============>    ] 274.76M  12.6MB/s    eta 7s     
20:27:50:ObjectDetectionCoral: objectdetect-coral-  80%[===============>    ] 276.88M  12.5MB/s    eta 6s     
20:27:50:ObjectDetectionCoral: objectdetect-coral-  81%[===============>    ] 279.12M  12.4MB/s    eta 6s     
20:27:51:ObjectDetectionCoral: objectdetect-coral-  82%[===============>    ] 281.65M  12.4MB/s    eta 6s     
20:27:51:ObjectDetectionCoral: objectdetect-coral-  82%[===============>    ] 284.18M  12.4MB/s    eta 6s     
20:27:51:ObjectDetectionCoral: objectdetect-coral-  83%[===============>    ] 286.71M  12.4MB/s    eta 6s     
20:27:51:ObjectDetectionCoral: objectdetect-coral-  84%[===============>    ] 289.24M  12.4MB/s    eta 4s     
20:27:51:ObjectDetectionCoral: objectdetect-coral-  85%[================>   ] 291.77M  12.4MB/s    eta 4s     
20:27:52:ObjectDetectionCoral: objectdetect-coral-  85%[================>   ] 294.30M  12.4MB/s    eta 4s     
20:27:52:ObjectDetectionCoral: objectdetect-coral-  86%[================>   ] 296.83M  12.4MB/s    eta 4s     
20:27:52:ObjectDetectionCoral: objectdetect-coral-  87%[================>   ] 299.37M  12.4MB/s    eta 4s     
20:27:52:ObjectDetectionCoral: objectdetect-coral-  88%[================>   ] 301.90M  12.4MB/s    eta 3s     
20:27:52:ObjectDetectionCoral: objectdetect-coral-  88%[================>   ] 304.43M  12.4MB/s    eta 3s     
20:27:53:ObjectDetectionCoral: objectdetect-coral-  89%[================>   ] 306.96M  12.4MB/s    eta 3s     
20:27:53:ObjectDetectionCoral: objectdetect-coral-  90%[=================>  ] 309.49M  12.4MB/s    eta 3s     
20:27:53:ObjectDetectionCoral: objectdetect-coral-  91%[=================>  ] 312.02M  12.4MB/s    eta 3s     
20:27:53:ObjectDetectionCoral: objectdetect-coral-  91%[=================>  ] 314.55M  12.4MB/s    eta 2s     
20:27:53:ObjectDetectionCoral: objectdetect-coral-  92%[=================>  ] 317.08M  12.6MB/s    eta 2s     
20:27:54:ObjectDetectionCoral: objectdetect-coral-  93%[=================>  ] 319.62M  12.6MB/s    eta 2s     
20:27:54:ObjectDetectionCoral: objectdetect-coral-  94%[=================>  ] 322.15M  12.6MB/s    eta 2s     
20:27:54:ObjectDetectionCoral: objectdetect-coral-  94%[=================>  ] 324.68M  12.6MB/s    eta 2s     
20:27:54:ObjectDetectionCoral: objectdetect-coral-  95%[==================> ] 327.21M  12.6MB/s    eta 1s     
20:27:54:ObjectDetectionCoral: objectdetect-coral-  96%[==================> ] 329.74M  12.6MB/s    eta 1s     
20:27:55:ObjectDetectionCoral: objectdetect-coral-  96%[==================> ] 332.27M  12.6MB/s    eta 1s     
20:27:55:ObjectDetectionCoral: objectdetect-coral-  97%[==================> ] 334.80M  12.6MB/s    eta 1s     
20:27:55:ObjectDetectionCoral: objectdetect-coral-  98%[==================> ] 337.33M  12.6MB/s    eta 1s     
20:27:55:ObjectDetectionCoral: objectdetect-coral-  98%[==================> ] 338.52M  11.9MB/s    eta 0s     
20:27:55:ObjectDetectionCoral: objectdetect-coral-  99%[==================> ] 342.41M  12.4MB/s    eta 0s     
20:27:55:ObjectDetectionCoral: objectdetect-coral- 100%[===================>] 342.59M  12.4MB/s    in 29s     
20:27:55:ObjectDetectionCoral: 2024-01-22 19:27:55 (12.0 MB/s) - '/app/downloads/ObjectDetectionCoral/objectdetect-coral-multitpu-models.zip' saved [359229695/359229695]
20:27:55:ObjectDetectionCoral: Downloading MobileNet models...Expanding...Archive:  objectdetect-coral-multitpu-models.zip
20:27:55:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_1_of_4.tflite  
20:27:55:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_1_of_4_edgetpu.tflite  
20:27:55:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_2_of_4.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_2_of_4_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_3_of_4.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_3_of_4_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5n-int8.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5n-int8_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5s-int8.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/yolov5s-int8_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/coco_labels.txt  
20:27:56:ObjectDetectionCoral:   inflating: assets/coco80_labels.txt  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite1_384_ptq.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite1_384_ptq_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq_segment_0_of_2.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq_segment_0_of_2_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq_segment_1_of_2.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite2_448_ptq_segment_1_of_2_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3_512_ptq.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3_512_ptq_edgetpu.tflite  
20:27:56:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3_512_ptq_labels.txt  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_0_of_3.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_0_of_3_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_1_of_3.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_1_of_3_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_2_of_3.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/efficientdet_lite3x_640_ptq_segment_2_of_3_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/ssd_mobilenet_v2_coco_quant_postprocess.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/ssd_mobilenet_v2_coco_quant_postprocess_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/ssd_mobilenet_v2_coco_quant_postprocess_labels.txt  
20:27:57:ObjectDetectionCoral:   inflating: assets/ssdlite_mobiledet_coco_qat_postprocess.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/ssdlite_mobiledet_coco_qat_postprocess_edgetpu.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/tf2_ssd_mobilenet_v2_coco17_labels.txt  
20:27:57:ObjectDetectionCoral:   inflating: assets/tf2_ssd_mobilenet_v2_coco17_ptq.tflite  
20:27:57:ObjectDetectionCoral:   inflating: assets/tf2_ssd_mobilenet_v2_coco17_ptq_edgetpu.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_edgetpu.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_0_of_7.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_0_of_7_edgetpu.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_1_of_7.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_1_of_7_edgetpu.tflite  
20:27:58:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_2_of_7.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_2_of_7_edgetpu.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_3_of_7.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_3_of_7_edgetpu.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_4_of_7.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_4_of_7_edgetpu.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_5_of_7.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_5_of_7_edgetpu.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_6_of_7.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5l-int8_segment_6_of_7_edgetpu.tflite  
20:27:59:ObjectDetectionCoral:   inflating: assets/yolov5m-int8.tflite  
20:28:00:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_edgetpu.tflite  
20:28:00:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_0_of_4.tflite  
20:28:00:ObjectDetectionCoral:   inflating: assets/yolov5m-int8_segment_0_of_4_edgetpu.tflite  
20:28:00:ObjectDetectionCoral: Done.
20:28:00:ObjectDetectionCoral: Moving contents of objectdetect-coral-multitpu-models.zip to assets...done.
20:28:00:ObjectDetectionCoral: Installing Python packages for Object Detection (Coral)
20:28:00:ObjectDetectionCoral: Installing GPU-enabled libraries: If available
20:28:00:ObjectDetectionCoral: Ensuring PIP is installed and up to date...
20:28:00:ObjectDetectionCoral: Searching for installed dependencies:
20:28:01:ObjectDetectionCoral:  -> python3-pip Done
20:28:01:ObjectDetectionCoral: All dependencies already installed.
20:28:01:ObjectDetectionCoral: Ensuring PIP compatibility ...
20:28:02:ObjectDetectionCoral: Looking in links: /tmp/tmppppcu0zv
20:28:02:ObjectDetectionCoral: Requirement already satisfied: setuptools in ./bin/linux/python39/venv/lib/python3.9/site-packages (69.0.3)
20:28:02:ObjectDetectionCoral: Requirement already satisfied: pip in ./bin/linux/python39/venv/lib/python3.9/site-packages (23.3.2)
20:28:02:ObjectDetectionCoral: Python packages will be specified by requirements.txt
20:28:03:ObjectDetectionCoral:   - Installing Tensorflow Lite...Installing https://github.com/google-coral/pycoral/releases/download/v2.0.0/tflite_runtime-2.5.0.post1-cp39-cp39-linux_x86_64.whl...Collecting tflite-runtime==2.5.0.post1
20:28:03:ObjectDetectionCoral:   Downloading https://github.com/google-coral/pycoral/releases/download/v2.0.0/tflite_runtime-2.5.0.post1-cp39-cp39-linux_x86_64.whl (1.5 MB)
20:28:04:ObjectDetectionCoral:      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 1.3 MB/s eta 0:00:00
20:28:05:ObjectDetectionCoral: Collecting numpy>=1.16.0 (from tflite-runtime==2.5.0.post1)
20:28:05:ObjectDetectionCoral:   Downloading numpy-1.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB)
20:28:05:ObjectDetectionCoral:      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 890.5 kB/s eta 0:00:00
20:28:05:ObjectDetectionCoral: Downloading numpy-1.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB)
20:28:07:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.2/18.2 MB 11.3 MB/s eta 0:00:00
20:28:07:ObjectDetectionCoral: Installing collected packages: numpy, tflite-runtime
20:28:09:ObjectDetectionCoral: Successfully installed numpy-1.26.3 tflite-runtime-2.5.0.post1
20:28:09:ObjectDetectionCoral: (not checked) Done
20:28:09:ObjectDetectionCoral:   - Installing PyCoral...Checking ...Check done...Installing pycoral~=2.0...Looking in indexes: https://pypi.org/simple, https://google-coral.github.io/py-repo/
20:28:10:ObjectDetectionCoral: Collecting pycoral~=2.0
20:28:10:ObjectDetectionCoral:   Downloading https://github.com/google-coral/pycoral/releases/download/v2.0.0/pycoral-2.0.0-cp39-cp39-linux_x86_64.whl (393 kB)
20:28:10:ObjectDetectionCoral:      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 393.8/393.8 kB 6.4 MB/s eta 0:00:00
20:28:11:ObjectDetectionCoral: Collecting Pillow>=4.0.0 (from pycoral~=2.0)
20:28:11:ObjectDetectionCoral:   Downloading pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl.metadata (9.7 kB)
20:28:11:ObjectDetectionCoral: Collecting numpy>=1.16.0 (from pycoral~=2.0)
20:28:11:ObjectDetectionCoral:   Using cached numpy-1.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB)
20:28:11:ObjectDetectionCoral: Collecting tflite-runtime==2.5.0.post1 (from pycoral~=2.0)
20:28:12:ObjectDetectionCoral:   Downloading https://github.com/google-coral/pycoral/releases/download/v2.0.0/tflite_runtime-2.5.0.post1-cp39-cp39-linux_x86_64.whl (1.5 MB)
20:28:12:ObjectDetectionCoral:      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 11.4 MB/s eta 0:00:00
20:28:12:ObjectDetectionCoral: Using cached numpy-1.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB)
20:28:12:ObjectDetectionCoral: Downloading pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl (4.5 MB)
20:28:12:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 10.1 MB/s eta 0:00:00
20:28:12:ObjectDetectionCoral: Installing collected packages: Pillow, numpy, tflite-runtime, pycoral
20:28:15:ObjectDetectionCoral: Successfully installed Pillow-10.2.0 numpy-1.26.3 pycoral-2.0.0 tflite-runtime-2.5.0.post1
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/tflite_runtime already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/numpy already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/numpy-1.26.3.dist-info already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/numpy.libs already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/tflite_runtime-2.5.0.post1.dist-info already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/bin already exists. Specify --upgrade to force replacement.
20:28:15:ObjectDetectionCoral: (failed check) Done
20:28:15:ObjectDetectionCoral:   - Installing NumPy, the fundamental package for array computing with Python...Checking ...Check done...Already installed
20:28:16:ObjectDetectionCoral:   - Installing Pillow, a Python Image Library...Checking ...Check done...Already installed
20:28:16:ObjectDetectionCoral: Installing Python packages for the CodeProject.AI Server SDK
20:28:16:ObjectDetectionCoral: Ensuring PIP is installed and up to date...
20:28:16:ObjectDetectionCoral: Searching for installed dependencies:
20:28:17:ObjectDetectionCoral:  -> python3-pip Done
20:28:17:ObjectDetectionCoral: All dependencies already installed.
20:28:17:ObjectDetectionCoral: Ensuring PIP compatibility ...
20:28:18:ObjectDetectionCoral: Looking in links: /tmp/tmpit1m13mh
20:28:18:ObjectDetectionCoral: Requirement already satisfied: setuptools in ./bin/linux/python39/venv/lib/python3.9/site-packages (69.0.3)
20:28:18:ObjectDetectionCoral: Requirement already satisfied: pip in ./bin/linux/python39/venv/lib/python3.9/site-packages (23.3.2)
20:28:18:ObjectDetectionCoral: Python packages will be specified by requirements.txt
20:28:19:ObjectDetectionCoral:   - Installing Pillow, a Python Image Library...Checking ...Check done...Already installed
20:28:19:ObjectDetectionCoral:   - Installing Charset normalizer...Checking ...Check done...Installing charset-normalizer...Collecting charset-normalizer
20:28:19:ObjectDetectionCoral:   Downloading charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
20:28:20:ObjectDetectionCoral: Downloading charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)
20:28:20:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 142.3/142.3 kB 6.6 MB/s eta 0:00:00
20:28:20:ObjectDetectionCoral: Installing collected packages: charset-normalizer
20:28:20:ObjectDetectionCoral: Successfully installed charset-normalizer-3.3.2
20:28:20:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/bin already exists. Specify --upgrade to force replacement.
20:28:20:ObjectDetectionCoral: (✔️ checked) Done
20:28:21:ObjectDetectionCoral:   - Installing aiohttp, the Async IO HTTP library...Checking ...Check done...Installing aiohttp...Collecting aiohttp
20:28:21:ObjectDetectionCoral:   Downloading aiohttp-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.4 kB)
20:28:21:ObjectDetectionCoral: Collecting attrs>=17.3.0 (from aiohttp)
20:28:21:ObjectDetectionCoral:   Downloading attrs-23.2.0-py3-none-any.whl.metadata (9.5 kB)
20:28:21:ObjectDetectionCoral: Collecting multidict<7.0,>=4.5 (from aiohttp)
20:28:21:ObjectDetectionCoral:   Downloading multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114 kB)
20:28:22:ObjectDetectionCoral:      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.2/114.2 kB 4.2 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Collecting yarl<2.0,>=1.0 (from aiohttp)
20:28:22:ObjectDetectionCoral:   Downloading yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (31 kB)
20:28:22:ObjectDetectionCoral: Collecting frozenlist>=1.1.1 (from aiohttp)
20:28:22:ObjectDetectionCoral:   Downloading frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
20:28:22:ObjectDetectionCoral: Collecting aiosignal>=1.1.2 (from aiohttp)
20:28:22:ObjectDetectionCoral:   Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
20:28:22:ObjectDetectionCoral: Collecting async-timeout<5.0,>=4.0 (from aiohttp)
20:28:22:ObjectDetectionCoral:   Downloading async_timeout-4.0.3-py3-none-any.whl.metadata (4.2 kB)
20:28:22:ObjectDetectionCoral: Collecting idna>=2.0 (from yarl<2.0,>=1.0->aiohttp)
20:28:22:ObjectDetectionCoral:   Downloading idna-3.6-py3-none-any.whl.metadata (9.9 kB)
20:28:22:ObjectDetectionCoral: Downloading aiohttp-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB)
20:28:22:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 11.9 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Downloading async_timeout-4.0.3-py3-none-any.whl (5.7 kB)
20:28:22:ObjectDetectionCoral: Downloading attrs-23.2.0-py3-none-any.whl (60 kB)
20:28:22:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.8/60.8 kB 9.1 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Downloading frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240 kB)
20:28:22:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 240.7/240.7 kB 11.8 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Downloading yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304 kB)
20:28:22:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 304.3/304.3 kB 10.3 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Downloading idna-3.6-py3-none-any.whl (61 kB)
20:28:22:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.6/61.6 kB 8.8 MB/s eta 0:00:00
20:28:22:ObjectDetectionCoral: Installing collected packages: multidict, idna, frozenlist, attrs, async-timeout, yarl, aiosignal, aiohttp
20:28:23:ObjectDetectionCoral: Successfully installed aiohttp-3.9.1 aiosignal-1.3.1 async-timeout-4.0.3 attrs-23.2.0 frozenlist-1.4.1 idna-3.6 multidict-6.0.4 yarl-1.9.4
20:28:23:ObjectDetectionCoral: (✔️ checked) Done
20:28:24:ObjectDetectionCoral:   - Installing aiofiles, the Async IO Files library...Checking ...Check done...Installing aiofiles...Collecting aiofiles
20:28:24:ObjectDetectionCoral:   Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB)
20:28:24:ObjectDetectionCoral: Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB)
20:28:24:ObjectDetectionCoral: Installing collected packages: aiofiles
20:28:24:ObjectDetectionCoral: Successfully installed aiofiles-23.2.1
20:28:25:ObjectDetectionCoral: (✔️ checked) Done
20:28:25:ObjectDetectionCoral:   - Installing py-cpuinfo to allow us to query CPU info...Checking ...Check done...Installing py-cpuinfo...Collecting py-cpuinfo
20:28:25:ObjectDetectionCoral:   Downloading py_cpuinfo-9.0.0-py3-none-any.whl (22 kB)
20:28:26:ObjectDetectionCoral: Installing collected packages: py-cpuinfo
20:28:26:ObjectDetectionCoral: Successfully installed py-cpuinfo-9.0.0
20:28:26:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/bin already exists. Specify --upgrade to force replacement.
20:28:26:ObjectDetectionCoral: (✔️ checked) Done
20:28:27:ObjectDetectionCoral:   - Installing Requests, the HTTP library...Checking ...Check done...Installing requests...Collecting requests
20:28:27:ObjectDetectionCoral:   Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)
20:28:27:ObjectDetectionCoral: Collecting charset-normalizer<4,>=2 (from requests)
20:28:27:ObjectDetectionCoral:   Using cached charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (33 kB)
20:28:27:ObjectDetectionCoral: Collecting idna<4,>=2.5 (from requests)
20:28:27:ObjectDetectionCoral:   Using cached idna-3.6-py3-none-any.whl.metadata (9.9 kB)
20:28:27:ObjectDetectionCoral: Collecting urllib3<3,>=1.21.1 (from requests)
20:28:27:ObjectDetectionCoral:   Downloading urllib3-2.1.0-py3-none-any.whl.metadata (6.4 kB)
20:28:27:ObjectDetectionCoral: Collecting certifi>=2017.4.17 (from requests)
20:28:27:ObjectDetectionCoral:   Downloading certifi-2023.11.17-py3-none-any.whl.metadata (2.2 kB)
20:28:27:ObjectDetectionCoral: Downloading requests-2.31.0-py3-none-any.whl (62 kB)
20:28:27:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.6/62.6 kB 2.9 MB/s eta 0:00:00
20:28:27:ObjectDetectionCoral: Downloading certifi-2023.11.17-py3-none-any.whl (162 kB)
20:28:27:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 162.5/162.5 kB 10.6 MB/s eta 0:00:00
20:28:27:ObjectDetectionCoral: Using cached charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)
20:28:27:ObjectDetectionCoral: Using cached idna-3.6-py3-none-any.whl (61 kB)
20:28:27:ObjectDetectionCoral: Downloading urllib3-2.1.0-py3-none-any.whl (104 kB)
20:28:27:ObjectDetectionCoral:    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.6/104.6 kB 9.8 MB/s eta 0:00:00
20:28:27:ObjectDetectionCoral: Installing collected packages: urllib3, idna, charset-normalizer, certifi, requests
20:28:28:ObjectDetectionCoral: Successfully installed certifi-2023.11.17 charset-normalizer-3.3.2 idna-3.6 requests-2.31.0 urllib3-2.1.0
20:28:28:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/idna already exists. Specify --upgrade to force replacement.
20:28:28:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/charset_normalizer already exists. Specify --upgrade to force replacement.
20:28:28:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/idna-3.6.dist-info already exists. Specify --upgrade to force replacement.
20:28:28:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/charset_normalizer-3.3.2.dist-info already exists. Specify --upgrade to force replacement.
20:28:28:ObjectDetectionCoral: WARNING: Target directory /app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/bin already exists. Specify --upgrade to force replacement.
20:28:28:ObjectDetectionCoral: (✔️ checked) Done
20:28:28:ObjectDetectionCoral: SELF TEST START ======================================================
20:28:30:ObjectDetectionCoral: Exception ignored in: 
20:28:30:ObjectDetectionCoral: Traceback (most recent call last):
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/tflite_runtime/interpreter.py", line 124, in __del__
20:28:30:ObjectDetectionCoral:     if self._library is not None:
20:28:30:ObjectDetectionCoral: AttributeError: 'Delegate' object has no attribute '_library'
20:28:30:ObjectDetectionCoral: Debug: MODULE_PATH:    /app/modules/ObjectDetectionCoral
20:28:30:ObjectDetectionCoral: Debug: MODELS_DIR:     /app/modules/ObjectDetectionCoral/assets
20:28:30:ObjectDetectionCoral: Traceback (most recent call last):
20:28:30:ObjectDetectionCoral: Debug: MODEL_SIZE:     small
20:28:30:ObjectDetectionCoral: Debug: CPU_MODEL_NAME: efficientdet_lite1_384_ptq.tflite
20:28:30:ObjectDetectionCoral: Debug: TPU_MODEL_NAME: efficientdet_lite1_384_ptq_edgetpu.tflite
20:28:30:ObjectDetectionCoral: Using CPU
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/objectdetection_coral_adapter.py", line 163, in 
20:28:30:ObjectDetectionCoral:     CoralObjectDetector_adapter().start_loop()
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/../../SDK/Python/module_runner.py", line 231, in start_loop
20:28:30:ObjectDetectionCoral:     self.initialise()
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/objectdetection_coral_adapter.py", line 49, in initialise
20:28:30:ObjectDetectionCoral:     import objectdetection_coral as odc
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/objectdetection_coral.py", line 60, in 
20:28:30:ObjectDetectionCoral:     from pycoral.utils.edgetpu import make_interpreter
20:28:30:ObjectDetectionCoral:   File "/app/modules/ObjectDetectionCoral/bin/linux/python39/venv/lib/python3.9/site-packages/pycoral/utils/edgetpu.py", line 24, in 
20:28:30:ObjectDetectionCoral:     from pycoral.pybind._pywrap_coral import GetRuntimeVersion as get_runtime_version
20:28:30:ObjectDetectionCoral: ImportError: libedgetpu.so.1: cannot open shared object file: No such file or directory
20:28:30:ObjectDetectionCoral: Self-test failed
20:28:30:ObjectDetectionCoral: SELF TEST END   ======================================================
20:28:30:ObjectDetectionCoral: Module setup time 00:01:20
20:28:30:ObjectDetectionCoral:                 Setup complete                                        
20:28:30:ObjectDetectionCoral: Total setup time 00:01:23
20:28:30:Module ObjectDetectionCoral installed successfully.
20:28:30:Module ObjectDetectionCoral not configured to AutoStart.
20:28:30:Installer exited with code 0

AnswerRe: 2.5.1 RC1 Coral Install Error Pin
mpl133722-Jan-24 10:41
mpl133722-Jan-24 10:41 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Chris Maunder23-Jan-24 3:06
cofounderChris Maunder23-Jan-24 3:06 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Member 1609783723-Jan-24 5:23
Member 1609783723-Jan-24 5:23 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Chris Maunder23-Jan-24 5:28
cofounderChris Maunder23-Jan-24 5:28 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Member 1609783723-Jan-24 5:34
Member 1609783723-Jan-24 5:34 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Chris Maunder23-Jan-24 5:39
cofounderChris Maunder23-Jan-24 5:39 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
mailseth223-Jan-24 5:31
mailseth223-Jan-24 5:31 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Member 1609783723-Jan-24 5:33
Member 1609783723-Jan-24 5:33 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Chris Maunder23-Jan-24 5:39
cofounderChris Maunder23-Jan-24 5:39 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
mailseth223-Jan-24 6:25
mailseth223-Jan-24 6:25 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Member 1609783723-Jan-24 7:56
Member 1609783723-Jan-24 7:56 
GeneralRe: 2.5.1 RC1 Coral Install Error Pin
Member 1608578117-Feb-24 13:54
Member 1608578117-Feb-24 13:54 
QuestionGPU: Tesla P4 Pin
Member 1587624122-Jan-24 4:38
Member 1587624122-Jan-24 4:38 
AnswerRe: GPU: Tesla P4 Pin
Chris Maunder22-Jan-24 5:24
cofounderChris Maunder22-Jan-24 5:24 
GeneralRe: GPU: Tesla P4 Pin
Member 1587624122-Jan-24 17:17
Member 1587624122-Jan-24 17:17 
GeneralRe: GPU: Tesla P4 Pin
Chris Maunder23-Jan-24 3:38
cofounderChris Maunder23-Jan-24 3:38 
GeneralRe: GPU: Tesla P4 Pin
Member 1587624123-Jan-24 14:59
Member 1587624123-Jan-24 14:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: Need more infoFixed

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.