Click here to Skip to main content
15,899,754 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (92 votes)
29 Feb 202416 min read 3.8M   500.4K   272   6.9K
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

 
QuestionCodeProject AI on Jetson Nano Pin
Steve Winn10-Nov-22 6:16
Steve Winn10-Nov-22 6:16 
AnswerRe: CodeProject AI on Jetson Nano Pin
Chris Maunder10-Nov-22 15:12
cofounderChris Maunder10-Nov-22 15:12 
GeneralRe: CodeProject AI on Jetson Nano Pin
Member 1567224020-Jan-23 3:28
Member 1567224020-Jan-23 3:28 
GeneralRe: CodeProject AI on Jetson Nano Pin
miljume4-May-23 0:51
miljume4-May-23 0:51 
GeneralRe: CodeProject AI on Jetson Nano Pin
Chris Maunder5-May-23 0:57
cofounderChris Maunder5-May-23 0:57 
Questionissues running yolo with blue iris Pin
swilliams7636010-Nov-22 6:16
swilliams7636010-Nov-22 6:16 
AnswerRe: issues running yolo with blue iris Pin
Chris Maunder10-Nov-22 15:15
cofounderChris Maunder10-Nov-22 15:15 
GeneralRe: issues running yolo with blue iris Pin
swilliams7636010-Nov-22 17:25
swilliams7636010-Nov-22 17:25 
Just did a fresh install of everything including windows and it generated 2 alerts before going into the reboot cycle. I stopped yolo and went with .net again and it errors out with what i pasted to the bottom of this.
2022-11-10 21:36:39: ** Operating System: Microsoft Windows 10.0.19045
2022-11-10 21:36:39: ** Architecture:     X64
2022-11-10 21:36:39: ** Environment:
2022-11-10 21:36:39: ** Platform:         windows
2022-11-10 21:36:39: ** In Docker:        False
2022-11-10 21:36:39: ** App DataDir:      C:\ProgramData\CodeProject\AI
2022-11-10 21:36:47: Video adapter info:
2022-11-10 21:36:47: Name               - Intel(R) UHD Graphics 630
2022-11-10 21:36:47: Device ID          - VideoController1
2022-11-10 21:36:47: Adapter RAM        - 1,024 MB
2022-11-10 21:36:47: Adapter DAC Type   - Internal
2022-11-10 21:36:47: Driver Version     - 31.0.101.2111
2022-11-10 21:36:47: Video Processor    - Intel(R) UHD Graphics Family
2022-11-10 21:36:47: Video Architecture - VGA
2022-11-10 21:36:47: Video Memory Type  - Unknown
2022-11-10 21:36:47: GPU 3D Usage       - 4%
2022-11-10 21:36:47: GPU RAM Usage      - 2.1 GB
2022-11-10 21:36:47: Name               - NVIDIA GeForce RTX 2060
2022-11-10 21:36:47: Device ID          - VideoController2
2022-11-10 21:36:47: Adapter RAM        - 4 GB
2022-11-10 21:36:47: Adapter DAC Type   - Integrated RAMDAC
2022-11-10 21:36:47: Driver Version     - 31.0.15.2206
2022-11-10 21:36:47: Video Processor    - NVIDIA GeForce RTX 2060
2022-11-10 21:36:47: Video Architecture - VGA
2022-11-10 21:36:47: Video Memory Type  - Unknown
2022-11-10 21:36:47: GPU 3D Usage       - 3%
2022-11-10 21:36:47: GPU RAM Usage      - 2.1 GB
2022-11-10 21:36:47: ------------------------------------------------------------------
2022-11-10 21:36:47: Expanded ROOT_PATH         = C:\Program Files\CodeProject\AI
2022-11-10 21:36:47: Expanded MODULES_PATH      = C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:36:47: Expanded Alt. MODULES_PATH = C:\Program Files\CodeProject\AI\modules
2022-11-10 21:36:47: Expanded PYTHON_BASEPATH   = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv
2022-11-10 21:36:47: Expanded PYTHON_PATH       = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:36:47: ------------------------------------------------------------------
2022-11-10 21:36:47: BackendProcessRunner Start
2022-11-10 21:36:47: Starting Background AI Modules
2022-11-10 21:36:48: Queued: 'detect' request, id 6bcf10ac-ff40-443d-ab7a-a61dd8b5b601
2022-11-10 21:36:49: Queued: 'detect' request, id 58991f2c-5f1f-409e-9eb3-5d1a6cb40ee5
2022-11-10 21:36:49: Queued: 'detect' request, id 131b12e6-3d4f-4bb9-9411-9ed2405e09ef
2022-11-10 21:36:50: Root Path:   C:\Program Files\CodeProject\AI
2022-11-10 21:36:50: Module Path: C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:36:50:       (alt): C:\Program Files\CodeProject\AI\modules
2022-11-10 21:36:50: Python Path: C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:36:50: Temp Dir:    C:\Windows\TEMP\
2022-11-10 21:36:50: Data Dir:    C:\ProgramData\CodeProject\AI
2022-11-10 21:36:50: Attempting to start Portrait Filter
2022-11-10 21:36:50:   Runtime: execute, FilePath: PortraitFilter\PortraitFilter.exe
2022-11-10 21:36:50: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:36:50: 
2022-11-10 21:36:50: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:36:50: ** Active:      True
2022-11-10 21:36:50: ** GPU:         Support enabled
2022-11-10 21:36:50: ** Parallelism: 0
2022-11-10 21:36:50: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:36:50: ** Runtime:     execute
2022-11-10 21:36:50: ** Queue:       portraitfilter_queue
2022-11-10 21:36:50: ** Start pause: 1 sec
2022-11-10 21:36:50: ** Valid:       True
2022-11-10 21:36:50: ** Environment Variables
2022-11-10 21:36:50: 
2022-11-10 21:36:50: Started Portrait Filter backend
2022-11-10 21:36:51: Attempting to start Face Processing
2022-11-10 21:36:51:   Runtime: python37, FilePath: Vision\intelligencelayer\face.py
2022-11-10 21:36:51: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:36:51: 
2022-11-10 21:36:51: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:36:51: ** Active:      True
2022-11-10 21:36:51: ** GPU:         Support enabled
2022-11-10 21:36:51: ** Parallelism: 0
2022-11-10 21:36:51: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:36:51: ** Runtime:     python37
2022-11-10 21:36:51: ** Queue:       face_queue
2022-11-10 21:36:51: ** Start pause: 1 sec
2022-11-10 21:36:51: ** Valid:       True
2022-11-10 21:36:51: ** Environment Variables
2022-11-10 21:36:51: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:36:51: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:36:51: ** MODE           = MEDIUM
2022-11-10 21:36:51: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:36:51: ** PROFILE        = desktop_gpu
2022-11-10 21:36:51: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:36:51: ** USE_CUDA       = True
2022-11-10 21:36:51: ** VISION-FACE    = True
2022-11-10 21:36:51: ** YOLOv5_VERBOSE = false
2022-11-10 21:36:51: 
2022-11-10 21:36:51: Started Face Processing backend
2022-11-10 21:36:52: Attempting to start Scene Classification
2022-11-10 21:36:52:   Runtime: python37, FilePath: Vision\intelligencelayer\scene.py
2022-11-10 21:36:52: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:36:52: 
2022-11-10 21:36:52: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:36:52: ** Active:      True
2022-11-10 21:36:52: ** GPU:         Support enabled
2022-11-10 21:36:52: ** Parallelism: 1
2022-11-10 21:36:52: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:36:52: ** Runtime:     python37
2022-11-10 21:36:52: ** Queue:       scene_queue
2022-11-10 21:36:52: ** Start pause: 1 sec
2022-11-10 21:36:52: ** Valid:       True
2022-11-10 21:36:52: ** Environment Variables
2022-11-10 21:36:52: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:36:52: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:36:52: ** MODE           = MEDIUM
2022-11-10 21:36:52: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:36:52: ** PROFILE        = desktop_gpu
2022-11-10 21:36:52: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:36:52: ** USE_CUDA       = True
2022-11-10 21:36:52: ** VISION-SCENE   = True
2022-11-10 21:36:52: ** YOLOv5_VERBOSE = false
2022-11-10 21:36:52: 
2022-11-10 21:36:52: Started Scene Classification backend
2022-11-10 21:36:53: Latest version available is 1.6.7-Beta
2022-11-10 21:36:53: Current Version is 1.6.8-Beta
2022-11-10 21:36:53: Server: This is a new, unreleased version
2022-11-10 21:36:53: Attempting to start Object Detection (YOLO)
2022-11-10 21:36:53:   Runtime: python37, FilePath: ObjectDetectionYolo\detect_adapter.py
2022-11-10 21:36:53: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:36:53: 
2022-11-10 21:36:53: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:36:53: ** Active:      True
2022-11-10 21:36:53: ** GPU:         Support enabled
2022-11-10 21:36:53: ** Parallelism: 0
2022-11-10 21:36:53: ** Platforms:   all
2022-11-10 21:36:53: ** Runtime:     python37
2022-11-10 21:36:53: ** Queue:       detection_queue
2022-11-10 21:36:53: ** Start pause: 1 sec
2022-11-10 21:36:53: ** Valid:       True
2022-11-10 21:36:53: ** Environment Variables
2022-11-10 21:36:53: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:36:53: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:36:53: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:36:53: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:36:53: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:36:53: ** MODEL_SIZE           = Medium
2022-11-10 21:36:53: ** USE_CUDA             = True
2022-11-10 21:36:53: ** YOLOv5_VERBOSE       = false
2022-11-10 21:36:53: 
2022-11-10 21:36:53: Started Object Detection (YOLO) backend
2022-11-10 21:36:54: Attempting to start Object Detection (.NET)
2022-11-10 21:36:54:   Runtime: execute, FilePath: ObjectDetectionNet\ObjectDetectionNet.exe
2022-11-10 21:36:54: Attempting to start Background Remover
2022-11-10 21:36:54:   Runtime: python39, FilePath: BackgroundRemover\rembg_adapter.py
2022-11-10 21:36:54: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\rembg_adapter.py"
2022-11-10 21:36:54: 
2022-11-10 21:36:54: ** Module 'Background Remover' (ID: BackgroundRemover)
2022-11-10 21:36:54: ** Active:      True
2022-11-10 21:36:54: ** GPU:         Support disabled
2022-11-10 21:36:54: ** Parallelism: 1
2022-11-10 21:36:54: ** Platforms:   windows,linux,docker,macos,macos-arm
2022-11-10 21:36:54: ** Runtime:     python39
2022-11-10 21:36:54: ** Queue:       removebackground_queue
2022-11-10 21:36:54: ** Start pause: 0 sec
2022-11-10 21:36:54: ** Valid:       True
2022-11-10 21:36:54: ** Environment Variables
2022-11-10 21:36:54: ** U2NET_HOME = %MODULES_PATH%/BackgroundRemover/models
2022-11-10 21:36:54: 
2022-11-10 21:36:54: Started Background Remover backend
2022-11-10 21:36:56: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:36:56: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:36:56: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:36:57: Portrait Filter: Portrait Filter module started. in Portrait Filter
2022-11-10 21:36:59: scene.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:36:59: scene.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:36:59: Scene Classification: Scene Classification started. in Scene Classification
2022-11-10 21:37:02: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo
2022-11-10 21:37:02: detect_adapter.py: CPAI_PORT:   32168
2022-11-10 21:37:02: detect_adapter.py: MODEL_SIZE:  medium
2022-11-10 21:37:02: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets
2022-11-10 21:37:02: detect_adapter.py: support_GPU: True
2022-11-10 21:37:02: detect_adapter.py: use_CUDA:    True
2022-11-10 21:37:02: Object Detection (YOLO): Running init for Object Detection (YOLO) in Object Detection (YOLO)
2022-11-10 21:37:02: Dequeued 'detect' request, id 6bcf10ac-ff40-443d-ab7a-a61dd8b5b601
2022-11-10 21:37:02: Dequeued 'detect' request, id 58991f2c-5f1f-409e-9eb3-5d1a6cb40ee5
2022-11-10 21:37:02: face.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:37:02: face.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:37:02: Face Processing: Face Processing started. in Face Processing
2022-11-10 21:37:02: Dequeued 'detect' request, id 131b12e6-3d4f-4bb9-9411-9ed2405e09ef
2022-11-10 21:37:02: Object Detection (YOLO): Object Detection (YOLO) started. in Object Detection (YOLO)
2022-11-10 21:37:02: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:37:02: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:37:02: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:37:05: Object Detection (YOLO): Model Path is C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets\yolov5m.pt in Object Detection (YOLO)
2022-11-10 21:37:05: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 2976ms (command timing) in Object Detection (YOLO)
2022-11-10 21:37:05: Response received (id 58991f2c-5f1f-409e-9eb3-5d1a6cb40ee5)
2022-11-10 21:37:05: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 2980ms (command timing) in Object Detection (YOLO)
2022-11-10 21:37:05: Response received (id 131b12e6-3d4f-4bb9-9411-9ed2405e09ef)
2022-11-10 21:37:05: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 2978ms (command timing) in Object Detection (YOLO)
2022-11-10 21:37:18: Background Remover: Background Remover started. in Background Remover
2022-11-10 21:37:47: PortraitFilter.exe:       Application is shutting down...
2022-11-10 21:37:47: PortraitFilter: Shutting down PortraitFilter in PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:37:47: PortraitFilter.exe: has exited
2022-11-10 21:37:52: BackendProcessRunner Stop
2022-11-10 21:37:52: PortraitFilter has left the building
2022-11-10 21:37:52: Sending shutdown request to python/SceneClassification
2022-11-10 21:37:52: Sending shutdown request to python/BackgroundRemover
2022-11-10 21:37:52: Queued: 'Quit' request, id 62cc9a3e-fdbf-4144-9106-b166fe7e6784
2022-11-10 21:37:52: Queued: 'Quit' request, id 1c525cf8-b30e-4b81-8f58-6835d0de3069
2022-11-10 21:37:53: Sending shutdown request to python/FaceProcessing
2022-11-10 21:37:53: Queued: 'Quit' request, id abe57f9d-ec3e-413c-bb1f-c309c28e8e17
2022-11-10 21:38:14: ** Operating System: Microsoft Windows 10.0.19045
2022-11-10 21:38:14: ** Architecture:     X64
2022-11-10 21:38:14: ** Environment:
2022-11-10 21:38:14: ** Platform:         windows
2022-11-10 21:38:14: ** In Docker:        False
2022-11-10 21:38:14: ** App DataDir:      C:\ProgramData\CodeProject\AI
2022-11-10 21:38:22: Video adapter info:
2022-11-10 21:38:22: Name               - Intel(R) UHD Graphics 630
2022-11-10 21:38:22: Device ID          - VideoController1
2022-11-10 21:38:22: Adapter RAM        - 1,024 MB
2022-11-10 21:38:22: Adapter DAC Type   - Internal
2022-11-10 21:38:22: Driver Version     - 31.0.101.2111
2022-11-10 21:38:22: Video Processor    - Intel(R) UHD Graphics Family
2022-11-10 21:38:22: Video Architecture - VGA
2022-11-10 21:38:22: Video Memory Type  - Unknown
2022-11-10 21:38:22: GPU 3D Usage       - 0%
2022-11-10 21:38:22: GPU RAM Usage      - 236.31 MB
2022-11-10 21:38:22: Name               - NVIDIA GeForce RTX 2060
2022-11-10 21:38:22: Device ID          - VideoController2
2022-11-10 21:38:22: Adapter RAM        - 4 GB
2022-11-10 21:38:22: Adapter DAC Type   - Integrated RAMDAC
2022-11-10 21:38:22: Driver Version     - 31.0.15.2206
2022-11-10 21:38:22: Video Processor    - NVIDIA GeForce RTX 2060
2022-11-10 21:38:22: Video Architecture - VGA
2022-11-10 21:38:22: Video Memory Type  - Unknown
2022-11-10 21:38:22: GPU 3D Usage       - 0%
2022-11-10 21:38:22: GPU RAM Usage      - 232.61 MB
2022-11-10 21:38:22: ------------------------------------------------------------------
2022-11-10 21:38:22: Expanded ROOT_PATH         = C:\Program Files\CodeProject\AI
2022-11-10 21:38:22: Expanded MODULES_PATH      = C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:38:22: Expanded Alt. MODULES_PATH = C:\Program Files\CodeProject\AI\modules
2022-11-10 21:38:22: Expanded PYTHON_BASEPATH   = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv
2022-11-10 21:38:22: Expanded PYTHON_PATH       = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:38:22: ------------------------------------------------------------------
2022-11-10 21:38:22: BackendProcessRunner Start
2022-11-10 21:38:22: Starting Background AI Modules
2022-11-10 21:38:24: Latest version available is 1.6.7-Beta
2022-11-10 21:38:25: Root Path:   C:\Program Files\CodeProject\AI
2022-11-10 21:38:25: Module Path: C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:38:25:       (alt): C:\Program Files\CodeProject\AI\modules
2022-11-10 21:38:25: Python Path: C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:38:25: Temp Dir:    C:\Windows\TEMP\
2022-11-10 21:38:25: Data Dir:    C:\ProgramData\CodeProject\AI
2022-11-10 21:38:25: Attempting to start Object Detection (YOLO)
2022-11-10 21:38:25:   Runtime: python37, FilePath: ObjectDetectionYolo\detect_adapter.py
2022-11-10 21:38:25: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:38:25: 
2022-11-10 21:38:25: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:38:25: ** Active:      True
2022-11-10 21:38:25: ** GPU:         Support enabled
2022-11-10 21:38:25: ** Parallelism: 0
2022-11-10 21:38:25: ** Platforms:   all
2022-11-10 21:38:25: ** Runtime:     python37
2022-11-10 21:38:25: ** Queue:       detection_queue
2022-11-10 21:38:25: ** Start pause: 1 sec
2022-11-10 21:38:25: ** Valid:       True
2022-11-10 21:38:25: ** Environment Variables
2022-11-10 21:38:25: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:38:25: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:38:25: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:38:25: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:38:25: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:38:25: ** MODEL_SIZE           = Medium
2022-11-10 21:38:25: ** USE_CUDA             = True
2022-11-10 21:38:25: ** YOLOv5_VERBOSE       = false
2022-11-10 21:38:25: 
2022-11-10 21:38:25: Started Object Detection (YOLO) backend
2022-11-10 21:38:26: Attempting to start Background Remover
2022-11-10 21:38:26:   Runtime: python39, FilePath: BackgroundRemover\rembg_adapter.py
2022-11-10 21:38:26: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\rembg_adapter.py"
2022-11-10 21:38:26: 
2022-11-10 21:38:26: ** Module 'Background Remover' (ID: BackgroundRemover)
2022-11-10 21:38:26: ** Active:      True
2022-11-10 21:38:26: ** GPU:         Support disabled
2022-11-10 21:38:26: ** Parallelism: 1
2022-11-10 21:38:26: ** Platforms:   windows,linux,docker,macos,macos-arm
2022-11-10 21:38:26: ** Runtime:     python39
2022-11-10 21:38:26: ** Queue:       removebackground_queue
2022-11-10 21:38:26: ** Start pause: 0 sec
2022-11-10 21:38:26: ** Valid:       True
2022-11-10 21:38:26: ** Environment Variables
2022-11-10 21:38:26: ** U2NET_HOME = %MODULES_PATH%/BackgroundRemover/models
2022-11-10 21:38:26: 
2022-11-10 21:38:26: Started Background Remover backend
2022-11-10 21:38:26: Attempting to start Face Processing
2022-11-10 21:38:26:   Runtime: python37, FilePath: Vision\intelligencelayer\face.py
2022-11-10 21:38:26: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:38:26: 
2022-11-10 21:38:26: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:38:26: ** Active:      True
2022-11-10 21:38:26: ** GPU:         Support enabled
2022-11-10 21:38:26: ** Parallelism: 0
2022-11-10 21:38:26: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:38:26: ** Runtime:     python37
2022-11-10 21:38:26: ** Queue:       face_queue
2022-11-10 21:38:26: ** Start pause: 1 sec
2022-11-10 21:38:26: ** Valid:       True
2022-11-10 21:38:26: ** Environment Variables
2022-11-10 21:38:26: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:38:26: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:38:26: ** MODE           = MEDIUM
2022-11-10 21:38:26: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:38:26: ** PROFILE        = desktop_gpu
2022-11-10 21:38:26: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:38:26: ** USE_CUDA       = True
2022-11-10 21:38:26: ** VISION-FACE    = True
2022-11-10 21:38:26: ** YOLOv5_VERBOSE = false
2022-11-10 21:38:26: 
2022-11-10 21:38:26: Started Face Processing backend
2022-11-10 21:38:27: Attempting to start Scene Classification
2022-11-10 21:38:27:   Runtime: python37, FilePath: Vision\intelligencelayer\scene.py
2022-11-10 21:38:27: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:38:27: 
2022-11-10 21:38:27: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:38:27: ** Active:      True
2022-11-10 21:38:27: ** GPU:         Support enabled
2022-11-10 21:38:27: ** Parallelism: 1
2022-11-10 21:38:27: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:38:27: ** Runtime:     python37
2022-11-10 21:38:27: ** Queue:       scene_queue
2022-11-10 21:38:27: ** Start pause: 1 sec
2022-11-10 21:38:27: ** Valid:       True
2022-11-10 21:38:27: ** Environment Variables
2022-11-10 21:38:27: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:38:27: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:38:27: ** MODE           = MEDIUM
2022-11-10 21:38:27: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:38:27: ** PROFILE        = desktop_gpu
2022-11-10 21:38:27: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:38:27: ** USE_CUDA       = True
2022-11-10 21:38:27: ** VISION-SCENE   = True
2022-11-10 21:38:27: ** YOLOv5_VERBOSE = false
2022-11-10 21:38:27: 
2022-11-10 21:38:27: Started Scene Classification backend
2022-11-10 21:38:27: Latest version available is 1.6.7-Beta
2022-11-10 21:38:27: Current Version is 1.6.8-Beta
2022-11-10 21:38:27: Server: This is a new, unreleased version
2022-11-10 21:38:28: Queued: 'detect' request, id abfb576d-ff8e-4167-a3dc-2cd3e1eae669
2022-11-10 21:38:28: Queued: 'detect' request, id 9f6d8c12-57bf-424f-9768-b158d61703c4
2022-11-10 21:38:28: Queued: 'detect' request, id a579f51e-58c2-4f78-8249-6d0f1c132aee
2022-11-10 21:38:28: Attempting to start Portrait Filter
2022-11-10 21:38:28:   Runtime: execute, FilePath: PortraitFilter\PortraitFilter.exe
2022-11-10 21:38:28: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:38:28: 
2022-11-10 21:38:28: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:38:28: ** Active:      True
2022-11-10 21:38:28: ** GPU:         Support enabled
2022-11-10 21:38:28: ** Parallelism: 0
2022-11-10 21:38:28: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:38:28: ** Runtime:     execute
2022-11-10 21:38:28: ** Queue:       portraitfilter_queue
2022-11-10 21:38:28: ** Start pause: 1 sec
2022-11-10 21:38:28: ** Valid:       True
2022-11-10 21:38:28: ** Environment Variables
2022-11-10 21:38:28: 
2022-11-10 21:38:28: Started Portrait Filter backend
2022-11-10 21:38:29: Attempting to start Object Detection (.NET)
2022-11-10 21:38:29:   Runtime: execute, FilePath: ObjectDetectionNet\ObjectDetectionNet.exe
2022-11-10 21:38:33: Background Remover: Background Remover started. in Background Remover
2022-11-10 21:38:33: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:38:33: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:38:33: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:38:34: Portrait Filter: Portrait Filter module started. in Portrait Filter
2022-11-10 21:38:35: scene.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:38:35: scene.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:38:35: Scene Classification: Scene Classification started. in Scene Classification
2022-11-10 21:38:38: face.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:38:38: face.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:38:38: Face Processing: Face Processing started. in Face Processing
2022-11-10 21:38:38: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo
2022-11-10 21:38:38: detect_adapter.py: CPAI_PORT:   32168
2022-11-10 21:38:38: detect_adapter.py: MODEL_SIZE:  medium
2022-11-10 21:38:38: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets
2022-11-10 21:38:38: detect_adapter.py: support_GPU: True
2022-11-10 21:38:38: detect_adapter.py: use_CUDA:    True
2022-11-10 21:38:38: Object Detection (YOLO): Running init for Object Detection (YOLO) in Object Detection (YOLO)
2022-11-10 21:38:38: Dequeued 'detect' request, id abfb576d-ff8e-4167-a3dc-2cd3e1eae669
2022-11-10 21:38:38: Dequeued 'detect' request, id 9f6d8c12-57bf-424f-9768-b158d61703c4
2022-11-10 21:38:38: Dequeued 'detect' request, id a579f51e-58c2-4f78-8249-6d0f1c132aee
2022-11-10 21:38:38: Object Detection (YOLO): Object Detection (YOLO) started. in Object Detection (YOLO)
2022-11-10 21:38:38: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:38:38: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:38:38: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:38:45: Object Detection (YOLO): Model Path is C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets\yolov5m.pt in Object Detection (YOLO)
2022-11-10 21:38:45: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 6677ms (command timing) in Object Detection (YOLO)
2022-11-10 21:38:45: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 6686ms (command timing) in Object Detection (YOLO)
2022-11-10 21:38:45: Response received (id abfb576d-ff8e-4167-a3dc-2cd3e1eae669)
2022-11-10 21:38:45: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 6689ms (command timing) in Object Detection (YOLO)
2022-11-10 21:38:45: Response received (id a579f51e-58c2-4f78-8249-6d0f1c132aee)
2022-11-10 21:38:46: Latest version available is 1.6.7-Beta
2022-11-10 21:40:28: Dequeued 'detect' request, id f5f2ebd2-34a7-483e-8dbf-b79e696f2d1c
2022-11-10 21:40:28: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:40:29: Dequeued 'detect' request, id ecb00e44-6301-4e41-84eb-4e68781e0d4e
2022-11-10 21:40:29: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:40:29: Dequeued 'detect' request, id 4148021a-2402-4039-bc52-9ea123a210db
2022-11-10 21:40:29: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 156ms (command timing) in Object Detection (YOLO)
2022-11-10 21:40:29: Response received (id f5f2ebd2-34a7-483e-8dbf-b79e696f2d1c)
2022-11-10 21:40:29: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:40:29: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 184ms (command timing) in Object Detection (YOLO)
2022-11-10 21:40:29: Response received (id ecb00e44-6301-4e41-84eb-4e68781e0d4e)
2022-11-10 21:40:29: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 172ms (command timing) in Object Detection (YOLO)
2022-11-10 21:40:29: Response received (id 4148021a-2402-4039-bc52-9ea123a210db)
2022-11-10 21:40:55: Latest version available is 1.6.7-Beta
2022-11-10 21:42:29: Queued: 'detect' request, id 97cecbe8-204c-4f37-8ab6-cab3b03ca3df
2022-11-10 21:42:29: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:42:29: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 148ms (command timing) in Object Detection (YOLO)
2022-11-10 21:42:29: Response received (id 97cecbe8-204c-4f37-8ab6-cab3b03ca3df)
2022-11-10 21:42:30: Dequeued 'detect' request, id b528680d-1898-4dd3-a3e7-d08fad1d195c
2022-11-10 21:42:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:42:30: Queued: 'detect' request, id d2d390eb-7acb-472c-a8ea-cb98176267ba
2022-11-10 21:42:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:42:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 130ms (command timing) in Object Detection (YOLO)
2022-11-10 21:42:30: Response received (id b528680d-1898-4dd3-a3e7-d08fad1d195c)
2022-11-10 21:42:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 127ms (command timing) in Object Detection (YOLO)
2022-11-10 21:42:30: Response received (id d2d390eb-7acb-472c-a8ea-cb98176267ba)
2022-11-10 21:42:59: Queued: 'detect' request, id c992db1c-b80e-4d54-95a9-4be3e38fcd7f
2022-11-10 21:42:59: Queued: 'detect' request, id 1221f868-6d0d-4a84-aa98-722c66d3aa7d
2022-11-10 21:42:59: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:42:59: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:42:59: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 106ms (command timing) in Object Detection (YOLO)
2022-11-10 21:42:59: Response received (id c992db1c-b80e-4d54-95a9-4be3e38fcd7f)
2022-11-10 21:42:59: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 109ms (command timing) in Object Detection (YOLO)
2022-11-10 21:42:59: Response received (id 1221f868-6d0d-4a84-aa98-722c66d3aa7d)
2022-11-10 21:43:00: Dequeued 'detect' request, id 574e31fe-28d6-464b-9c82-e3e8a59c923a
2022-11-10 21:43:00: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:43:00: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 89ms (command timing) in Object Detection (YOLO)
2022-11-10 21:43:00: Response received (id 574e31fe-28d6-464b-9c82-e3e8a59c923a)
2022-11-10 21:44:30: Dequeued 'detect' request, id 0ad97243-fa42-49a1-ac7c-adbfcc183534
2022-11-10 21:44:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:44:30: Dequeued 'detect' request, id 2e2792eb-2bc1-4da0-bd4b-2e9bef68c410
2022-11-10 21:44:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:44:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 204ms (command timing) in Object Detection (YOLO)
2022-11-10 21:44:30: Response received (id 0ad97243-fa42-49a1-ac7c-adbfcc183534)
2022-11-10 21:44:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 153ms (command timing) in Object Detection (YOLO)
2022-11-10 21:44:30: Response received (id 2e2792eb-2bc1-4da0-bd4b-2e9bef68c410)
2022-11-10 21:44:59: Queued: 'detect' request, id 11ecc3f1-47f9-411e-8b7b-e1edba1e6e1c
2022-11-10 21:44:59: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:44:59: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 175ms (command timing) in Object Detection (YOLO)
2022-11-10 21:44:59: Response received (id 11ecc3f1-47f9-411e-8b7b-e1edba1e6e1c)
2022-11-10 21:45:30: Queued: 'detect' request, id ed485630-0db6-4a3c-b2ec-a2f41c65b774
2022-11-10 21:45:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:45:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 167ms (command timing) in Object Detection (YOLO)
2022-11-10 21:45:30: Response received (id ed485630-0db6-4a3c-b2ec-a2f41c65b774)
2022-11-10 21:46:00: Dequeued 'detect' request, id bdea470d-bed5-41e0-ac20-dd7c75e6979e
2022-11-10 21:46:00: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:00: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 168ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:00: Response received (id bdea470d-bed5-41e0-ac20-dd7c75e6979e)
2022-11-10 21:46:29: Queued: 'detect' request, id 8f55204c-218c-479e-a342-dc2af06e514d
2022-11-10 21:46:29: Dequeued 'detect' request, id 8f55204c-218c-479e-a342-dc2af06e514d
2022-11-10 21:46:29: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 160ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:30: Response received (id 8f55204c-218c-479e-a342-dc2af06e514d)
2022-11-10 21:46:30: Dequeued 'detect' request, id 1b1bf905-54d8-44cc-ae9e-cbbd511cdf63
2022-11-10 21:46:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 128ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:30: Response received (id 1b1bf905-54d8-44cc-ae9e-cbbd511cdf63)
2022-11-10 21:46:30: Dequeued 'detect' request, id fcec9b63-015e-4007-8827-68a4b7eac671
2022-11-10 21:46:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 84ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:30: Response received (id fcec9b63-015e-4007-8827-68a4b7eac671)
2022-11-10 21:46:43: Queued: 'detect' request, id 2ee241f3-d721-4a06-844f-e6589cbb9abd
2022-11-10 21:46:43: Queued: 'detect' request, id 65b82e3a-4b68-4ec3-b783-c77149fb919b
2022-11-10 21:46:43: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:43: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:43: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 111ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:43: Response received (id 2ee241f3-d721-4a06-844f-e6589cbb9abd)
2022-11-10 21:46:43: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 105ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:43: Response received (id 65b82e3a-4b68-4ec3-b783-c77149fb919b)
2022-11-10 21:46:44: Queued: 'detect' request, id 05dcbb0d-4468-4b04-a293-e580e7e70dbf
2022-11-10 21:46:44: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:44: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 88ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:44: Response received (id 05dcbb0d-4468-4b04-a293-e580e7e70dbf)
2022-11-10 21:46:55: Queued: 'detect' request, id b529901e-e59a-4dc4-bbf8-159ee07e4a7b
2022-11-10 21:46:55: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:55: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 79ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:55: Response received (id b529901e-e59a-4dc4-bbf8-159ee07e4a7b)
2022-11-10 21:46:55: Queued: 'detect' request, id fc77d0ec-47a1-4ae5-b36e-78e4a2404e7f
2022-11-10 21:46:55: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:56: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 77ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:56: Response received (id fc77d0ec-47a1-4ae5-b36e-78e4a2404e7f)
2022-11-10 21:46:56: Dequeued 'detect' request, id 487f889b-a56f-4c3b-9a8c-a2fdef2e8940
2022-11-10 21:46:56: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:56: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 74ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:56: Response received (id 487f889b-a56f-4c3b-9a8c-a2fdef2e8940)
2022-11-10 21:46:57: Queued: 'detect' request, id 9dc60e88-0cf3-48fa-95c8-94d868e1055a
2022-11-10 21:46:57: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:57: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 79ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:57: Response received (id 9dc60e88-0cf3-48fa-95c8-94d868e1055a)
2022-11-10 21:46:58: Queued: 'detect' request, id 57dd8a32-2c53-4126-b702-29e7f629bfa4
2022-11-10 21:46:58: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:58: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 76ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:58: Response received (id 57dd8a32-2c53-4126-b702-29e7f629bfa4)
2022-11-10 21:46:59: Queued: 'detect' request, id 72004912-fd60-4d70-956a-9ad7f4703f44
2022-11-10 21:46:59: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:46:59: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 97ms (command timing) in Object Detection (YOLO)
2022-11-10 21:46:59: Response received (id 72004912-fd60-4d70-956a-9ad7f4703f44)
2022-11-10 21:47:00: Queued: 'detect' request, id 85e76485-0376-4c56-9e52-16856764aae4
2022-11-10 21:47:00: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:00: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 118ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:00: Response received (id 85e76485-0376-4c56-9e52-16856764aae4)
2022-11-10 21:47:01: Dequeued 'detect' request, id ea4a5e9c-1b7d-4dd2-8a88-f68106a62f18
2022-11-10 21:47:01: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:01: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 119ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:01: Response received (id ea4a5e9c-1b7d-4dd2-8a88-f68106a62f18)
2022-11-10 21:47:27: Dequeued 'detect' request, id bf4d48a8-c57d-4589-b24b-d9056cbd505c
2022-11-10 21:47:27: Dequeued 'detect' request, id 313c96c0-8bb0-4535-9d92-258f99d9c7c0
2022-11-10 21:47:27: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:27: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:27: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 120ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:27: Response received (id bf4d48a8-c57d-4589-b24b-d9056cbd505c)
2022-11-10 21:47:27: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 120ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:27: Response received (id 313c96c0-8bb0-4535-9d92-258f99d9c7c0)
2022-11-10 21:47:28: Queued: 'detect' request, id 0f895208-e1cf-4c6a-93a1-228d8dccebdb
2022-11-10 21:47:28: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:28: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 84ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:28: Response received (id 0f895208-e1cf-4c6a-93a1-228d8dccebdb)
2022-11-10 21:47:30: Queued: 'detect' request, id 16ff08b3-8859-4f93-9a4f-52ae9c66d132
2022-11-10 21:47:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:30: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 83ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:30: Response received (id 16ff08b3-8859-4f93-9a4f-52ae9c66d132)
2022-11-10 21:47:32: Dequeued 'detect' request, id a4ad593c-ea86-434f-be47-18f117cd4809
2022-11-10 21:47:32: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:47:32: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 133ms (command timing) in Object Detection (YOLO)
2022-11-10 21:47:32: Response received (id a4ad593c-ea86-434f-be47-18f117cd4809)
                                                                                                                                                                                                                                                                                                                                                                                                                                                          2022-11-10 21:49:07: ** Operating System: Microsoft Windows 10.0.19045
2022-11-10 21:49:07: ** Architecture:     X64
2022-11-10 21:49:07: ** Environment:
2022-11-10 21:49:07: ** Platform:         windows
2022-11-10 21:49:07: ** In Docker:        False
2022-11-10 21:49:07: ** App DataDir:      C:\ProgramData\CodeProject\AI
2022-11-10 21:49:14: Video adapter info:
2022-11-10 21:49:14: Name               - Intel(R) UHD Graphics 630
2022-11-10 21:49:14: Device ID          - VideoController1
2022-11-10 21:49:14: Adapter RAM        - 1,024 MB
2022-11-10 21:49:14: Adapter DAC Type   - Internal
2022-11-10 21:49:14: Driver Version     - 31.0.101.2111
2022-11-10 21:49:14: Video Processor    - Intel(R) UHD Graphics Family
2022-11-10 21:49:14: Video Architecture - VGA
2022-11-10 21:49:14: Video Memory Type  - Unknown
2022-11-10 21:49:14: GPU 3D Usage       - 0%
2022-11-10 21:49:14: GPU RAM Usage      - 154.18 MB
2022-11-10 21:49:14: Name               - NVIDIA GeForce RTX 2060
2022-11-10 21:49:14: Device ID          - VideoController2
2022-11-10 21:49:14: Adapter RAM        - 4 GB
2022-11-10 21:49:14: Adapter DAC Type   - Integrated RAMDAC
2022-11-10 21:49:14: Driver Version     - 31.0.15.2206
2022-11-10 21:49:14: Video Processor    - NVIDIA GeForce RTX 2060
2022-11-10 21:49:14: Video Architecture - VGA
2022-11-10 21:49:14: Video Memory Type  - Unknown
2022-11-10 21:49:14: GPU 3D Usage       - 0%
2022-11-10 21:49:14: GPU RAM Usage      - 150.55 MB
2022-11-10 21:49:14: ------------------------------------------------------------------
2022-11-10 21:49:14: Expanded ROOT_PATH         = C:\Program Files\CodeProject\AI
2022-11-10 21:49:14: Expanded MODULES_PATH      = C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:49:14: Expanded Alt. MODULES_PATH = C:\Program Files\CodeProject\AI\modules
2022-11-10 21:49:14: Expanded PYTHON_BASEPATH   = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv
2022-11-10 21:49:14: Expanded PYTHON_PATH       = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:49:14: ------------------------------------------------------------------
2022-11-10 21:49:14: BackendProcessRunner Start
2022-11-10 21:49:14: Starting Background AI Modules
2022-11-10 21:49:17: Root Path:   C:\Program Files\CodeProject\AI
2022-11-10 21:49:17: Module Path: C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:49:17:       (alt): C:\Program Files\CodeProject\AI\modules
2022-11-10 21:49:17: Python Path: C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:49:17: Temp Dir:    C:\Windows\TEMP\
2022-11-10 21:49:17: Data Dir:    C:\ProgramData\CodeProject\AI
2022-11-10 21:49:17: Attempting to start Object Detection (.NET)
2022-11-10 21:49:17:   Runtime: execute, FilePath: ObjectDetectionNet\ObjectDetectionNet.exe
2022-11-10 21:49:17: Attempting to start Face Processing
2022-11-10 21:49:17:   Runtime: python37, FilePath: Vision\intelligencelayer\face.py
2022-11-10 21:49:17: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:49:17: 
2022-11-10 21:49:17: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:49:17: ** Active:      True
2022-11-10 21:49:17: ** GPU:         Support enabled
2022-11-10 21:49:17: ** Parallelism: 0
2022-11-10 21:49:17: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:49:17: ** Runtime:     python37
2022-11-10 21:49:17: ** Queue:       face_queue
2022-11-10 21:49:17: ** Start pause: 1 sec
2022-11-10 21:49:17: ** Valid:       True
2022-11-10 21:49:17: ** Environment Variables
2022-11-10 21:49:17: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:49:17: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:49:17: ** MODE           = MEDIUM
2022-11-10 21:49:17: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:49:17: ** PROFILE        = desktop_gpu
2022-11-10 21:49:17: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:49:17: ** USE_CUDA       = True
2022-11-10 21:49:17: ** VISION-FACE    = True
2022-11-10 21:49:17: ** YOLOv5_VERBOSE = false
2022-11-10 21:49:17: 
2022-11-10 21:49:17: Started Face Processing backend
2022-11-10 21:49:18: Attempting to start Scene Classification
2022-11-10 21:49:18:   Runtime: python37, FilePath: Vision\intelligencelayer\scene.py
2022-11-10 21:49:18: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:49:18: 
2022-11-10 21:49:18: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:49:18: ** Active:      True
2022-11-10 21:49:18: ** GPU:         Support enabled
2022-11-10 21:49:18: ** Parallelism: 1
2022-11-10 21:49:18: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:49:18: ** Runtime:     python37
2022-11-10 21:49:18: ** Queue:       scene_queue
2022-11-10 21:49:18: ** Start pause: 1 sec
2022-11-10 21:49:18: ** Valid:       True
2022-11-10 21:49:18: ** Environment Variables
2022-11-10 21:49:18: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:49:18: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:49:18: ** MODE           = MEDIUM
2022-11-10 21:49:18: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:49:18: ** PROFILE        = desktop_gpu
2022-11-10 21:49:18: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:49:18: ** USE_CUDA       = True
2022-11-10 21:49:18: ** VISION-SCENE   = True
2022-11-10 21:49:18: ** YOLOv5_VERBOSE = false
2022-11-10 21:49:18: 
2022-11-10 21:49:18: Started Scene Classification backend
2022-11-10 21:49:19: Latest version available is 1.6.7-Beta
2022-11-10 21:49:20: Attempting to start Object Detection (YOLO)
2022-11-10 21:49:20:   Runtime: python37, FilePath: ObjectDetectionYolo\detect_adapter.py
2022-11-10 21:49:20: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:49:20: 
2022-11-10 21:49:20: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:49:20: ** Active:      True
2022-11-10 21:49:20: ** GPU:         Support enabled
2022-11-10 21:49:20: ** Parallelism: 0
2022-11-10 21:49:20: ** Platforms:   all
2022-11-10 21:49:20: ** Runtime:     python37
2022-11-10 21:49:20: ** Queue:       detection_queue
2022-11-10 21:49:20: ** Start pause: 1 sec
2022-11-10 21:49:20: ** Valid:       True
2022-11-10 21:49:20: ** Environment Variables
2022-11-10 21:49:20: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:49:20: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:49:20: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:49:20: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:49:20: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:49:20: ** MODEL_SIZE           = Medium
2022-11-10 21:49:20: ** USE_CUDA             = True
2022-11-10 21:49:20: ** YOLOv5_VERBOSE       = false
2022-11-10 21:49:20: 
2022-11-10 21:49:20: Started Object Detection (YOLO) backend
2022-11-10 21:49:20: Latest version available is 1.6.7-Beta
2022-11-10 21:49:20: Current Version is 1.6.8-Beta
2022-11-10 21:49:20: Server: This is a new, unreleased version
2022-11-10 21:49:21: Attempting to start Background Remover
2022-11-10 21:49:21:   Runtime: python39, FilePath: BackgroundRemover\rembg_adapter.py
2022-11-10 21:49:21: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\rembg_adapter.py"
2022-11-10 21:49:21: 
2022-11-10 21:49:21: ** Module 'Background Remover' (ID: BackgroundRemover)
2022-11-10 21:49:21: ** Active:      True
2022-11-10 21:49:21: ** GPU:         Support disabled
2022-11-10 21:49:21: ** Parallelism: 1
2022-11-10 21:49:21: ** Platforms:   windows,linux,docker,macos,macos-arm
2022-11-10 21:49:21: ** Runtime:     python39
2022-11-10 21:49:21: ** Queue:       removebackground_queue
2022-11-10 21:49:21: ** Start pause: 0 sec
2022-11-10 21:49:21: ** Valid:       True
2022-11-10 21:49:21: ** Environment Variables
2022-11-10 21:49:21: ** U2NET_HOME = %MODULES_PATH%/BackgroundRemover/models
2022-11-10 21:49:21: 
2022-11-10 21:49:21: Started Background Remover backend
2022-11-10 21:49:21: Attempting to start Portrait Filter
2022-11-10 21:49:21:   Runtime: execute, FilePath: PortraitFilter\PortraitFilter.exe
2022-11-10 21:49:21: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:49:21: 
2022-11-10 21:49:21: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:49:21: ** Active:      True
2022-11-10 21:49:21: ** GPU:         Support enabled
2022-11-10 21:49:21: ** Parallelism: 0
2022-11-10 21:49:21: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:49:21: ** Runtime:     execute
2022-11-10 21:49:21: ** Queue:       portraitfilter_queue
2022-11-10 21:49:21: ** Start pause: 1 sec
2022-11-10 21:49:21: ** Valid:       True
2022-11-10 21:49:21: ** Environment Variables
2022-11-10 21:49:21: 
2022-11-10 21:49:21: Started Portrait Filter backend
2022-11-10 21:49:21: Latest version available is 1.6.7-Beta
2022-11-10 21:49:22: Queued: 'detect' request, id 1922c2e9-67e8-471d-b04d-6c46c91648d4
2022-11-10 21:49:26: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:49:26: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:49:26: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:49:27: Background Remover: Background Remover started. in Background Remover
2022-11-10 21:49:27: Portrait Filter: Portrait Filter module started. in Portrait Filter
2022-11-10 21:49:27: scene.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:49:27: scene.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:49:27: Scene Classification: Scene Classification started. in Scene Classification
2022-11-10 21:49:30: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo
2022-11-10 21:49:30: detect_adapter.py: CPAI_PORT:   32168
2022-11-10 21:49:30: detect_adapter.py: MODEL_SIZE:  medium
2022-11-10 21:49:30: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets
2022-11-10 21:49:30: detect_adapter.py: support_GPU: True
2022-11-10 21:49:30: detect_adapter.py: use_CUDA:    True
2022-11-10 21:49:30: Object Detection (YOLO): Running init for Object Detection (YOLO) in Object Detection (YOLO)
2022-11-10 21:49:30: Dequeued 'detect' request, id 6f4e5987-a2b4-4d38-bd21-a0637ab04f56
2022-11-10 21:49:30: Dequeued 'detect' request, id 1922c2e9-67e8-471d-b04d-6c46c91648d4
2022-11-10 21:49:30: Dequeued 'detect' request, id d1ae3362-a40c-4a20-aca0-efe11bd24c1d
2022-11-10 21:49:30: face.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:49:30: face.py: GPU in use: NVIDIA GeForce RTX 2060
2022-11-10 21:49:30: Object Detection (YOLO): Object Detection (YOLO) started. in Object Detection (YOLO)
2022-11-10 21:49:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:49:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:49:30: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:49:30: Face Processing: Face Processing started. in Face Processing
2022-11-10 21:49:36: Object Detection (YOLO): Model Path is C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets\yolov5m.pt in Object Detection (YOLO)
2022-11-10 21:49:36: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 5975ms (command timing) in Object Detection (YOLO)
2022-11-10 21:49:36: Response received (id 6f4e5987-a2b4-4d38-bd21-a0637ab04f56)
2022-11-10 21:49:36: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 5973ms (command timing) in Object Detection (YOLO)
2022-11-10 21:49:36: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 5974ms (command timing) in Object Detection (YOLO)
2022-11-10 21:49:44: Sending shutdown request to python/ObjectDetectionYolo
2022-11-10 21:49:44: Queued: 'Quit' request, id a90c92c0-f451-4d79-b4e3-1dc00bb46d41
2022-11-10 21:49:44: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:49:50: detect_adapter.py: Not using half-precision for the device 'NVIDIA GeForce RTX 2060'
2022-11-10 21:49:50: detect_adapter.py: Inference processing will occur on device 'NVIDIA GeForce RTX 2060'
2022-11-10 21:49:51: detect_adapter.py: has exited
2022-11-10 21:50:01: Queued: 'detect' request, id b5c8f034-d157-44d4-94e0-b5d29803c42d
2022-11-10 21:50:01: Queued: 'detect' request, id f6df64e8-f481-483a-ab27-cdbfac68f468
2022-11-10 21:50:02: Queued: 'detect' request, id b32b7379-869a-46d6-8585-75db4aabc9da
2022-11-10 21:50:15: ObjectDetectionYolo went quietly
2022-11-10 21:50:15: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:50:15: 
2022-11-10 21:50:15: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:50:15: ** Active:      True
2022-11-10 21:50:15: ** GPU:         Support disabled
2022-11-10 21:50:15: ** Parallelism: 0
2022-11-10 21:50:15: ** Platforms:   all
2022-11-10 21:50:15: ** Runtime:     python37
2022-11-10 21:50:15: ** Queue:       detection_queue
2022-11-10 21:50:15: ** Start pause: 1 sec
2022-11-10 21:50:15: ** Valid:       True
2022-11-10 21:50:15: ** Environment Variables
2022-11-10 21:50:15: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:50:15: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:50:15: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:50:15: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:50:15: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:50:15: ** MODEL_SIZE           = Medium
2022-11-10 21:50:15: ** USE_CUDA             = True
2022-11-10 21:50:15: ** YOLOv5_VERBOSE       = false
2022-11-10 21:50:15: 
2022-11-10 21:50:15: Started Object Detection (YOLO) backend
2022-11-10 21:50:21: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo
2022-11-10 21:50:21: detect_adapter.py: CPAI_PORT:   32168
2022-11-10 21:50:21: detect_adapter.py: MODEL_SIZE:  medium
2022-11-10 21:50:21: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets
2022-11-10 21:50:21: detect_adapter.py: support_GPU: False
2022-11-10 21:50:21: detect_adapter.py: use_CUDA:    False
2022-11-10 21:50:21: Object Detection (YOLO): Running init for Object Detection (YOLO) in Object Detection (YOLO)
2022-11-10 21:50:21: Dequeued 'detect' request, id b5c8f034-d157-44d4-94e0-b5d29803c42d
2022-11-10 21:50:21: Dequeued 'detect' request, id f6df64e8-f481-483a-ab27-cdbfac68f468
2022-11-10 21:50:21: Dequeued 'detect' request, id b32b7379-869a-46d6-8585-75db4aabc9da
2022-11-10 21:50:21: Object Detection (YOLO): Object Detection (YOLO) started. in Object Detection (YOLO)
2022-11-10 21:50:21: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:50:21: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:50:21: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:50:21: Object Detection (YOLO): Model Path is C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets\yolov5m.pt in Object Detection (YOLO)
2022-11-10 21:50:21: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 666ms (command timing) in Object Detection (YOLO)
2022-11-10 21:50:21: Response received (id f6df64e8-f481-483a-ab27-cdbfac68f468)
2022-11-10 21:50:21: Response received (id b32b7379-869a-46d6-8585-75db4aabc9da)
2022-11-10 21:50:21: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 675ms (command timing) in Object Detection (YOLO)
2022-11-10 21:50:21: Response received (id b5c8f034-d157-44d4-94e0-b5d29803c42d)
2022-11-10 21:50:21: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 675ms (command timing) in Object Detection (YOLO)
2022-11-10 21:51:13: Sending shutdown request to PortraitFilter/PortraitFilter
2022-11-10 21:51:13: Dequeued 'Quit' request, id 846f3139-2013-4ecc-a401-b85858aa79dd
2022-11-10 21:51:13: PortraitFilter: Shutting down PortraitFilter in PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Unable to get request from portraitfilter_queue for PortraitFilter
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:13: PortraitFilter.exe: Shutdown signal recieved. Ending loop
2022-11-10 21:51:44: Forcing shutdown of PortraitFilter/PortraitFilter
2022-11-10 21:51:44: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:51:44: 
2022-11-10 21:51:44: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:51:44: ** Active:      True
2022-11-10 21:51:44: ** GPU:         Support disabled
2022-11-10 21:51:44: ** Parallelism: 0
2022-11-10 21:51:44: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:51:44: ** Runtime:     execute
2022-11-10 21:51:44: ** Queue:       portraitfilter_queue
2022-11-10 21:51:44: ** Start pause: 1 sec
2022-11-10 21:51:44: ** Valid:       True
2022-11-10 21:51:44: ** Environment Variables
2022-11-10 21:51:44: 
2022-11-10 21:51:44: Started Portrait Filter backend
2022-11-10 21:51:44: PortraitFilter.exe: has exited
2022-11-10 21:51:44: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:51:44: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:51:44: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:51:46: Portrait Filter: Portrait Filter module started. in Portrait Filter
2022-11-10 21:52:00: Dequeued 'detect' request, id e24a9eaa-5a65-4ed8-a8f9-29b188f04b40
2022-11-10 21:52:00: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:52:00: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 200ms (command timing) in Object Detection (YOLO)
2022-11-10 21:52:00: Response received (id e24a9eaa-5a65-4ed8-a8f9-29b188f04b40)
2022-11-10 21:52:01: Queued: 'detect' request, id 9154524d-7818-4011-90bf-1bff19a7e8a3
2022-11-10 21:52:01: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:52:01: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 203ms (command timing) in Object Detection (YOLO)
2022-11-10 21:52:01: Response received (id 9154524d-7818-4011-90bf-1bff19a7e8a3)
2022-11-10 21:52:01: Queued: 'detect' request, id 7fd89d68-eb88-4948-bbe1-935957c85b26
2022-11-10 21:52:01: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:52:01: Object Detection (YOLO): Queue and Processing Object Detection (YOLO) command 'detect' took 146ms (command timing) in Object Detection (YOLO)
2022-11-10 21:52:01: Response received (id 7fd89d68-eb88-4948-bbe1-935957c85b26)
2022-11-10 21:52:03: Sending shutdown request to python/SceneClassification
2022-11-10 21:52:03: Dequeued 'Quit' request, id b9a25adb-aebb-43aa-abc7-eb2ecef7ed80
2022-11-10 21:52:03: Scene Classification: Retrieved scene_queue command in Scene Classification
2022-11-10 21:52:07: scene.py: has exited
2022-11-10 21:52:34: SceneClassification went quietly
2022-11-10 21:52:34: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:52:34: 
2022-11-10 21:52:34: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:52:34: ** Active:      True
2022-11-10 21:52:34: ** GPU:         Support disabled
2022-11-10 21:52:34: ** Parallelism: 1
2022-11-10 21:52:34: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:52:34: ** Runtime:     python37
2022-11-10 21:52:34: ** Queue:       scene_queue
2022-11-10 21:52:34: ** Start pause: 1 sec
2022-11-10 21:52:34: ** Valid:       True
2022-11-10 21:52:34: ** Environment Variables
2022-11-10 21:52:34: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:52:34: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:52:34: ** MODE           = MEDIUM
2022-11-10 21:52:34: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:52:34: ** PROFILE        = desktop_gpu
2022-11-10 21:52:34: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:52:34: ** USE_CUDA       = True
2022-11-10 21:52:34: ** VISION-SCENE   = True
2022-11-10 21:52:34: ** YOLOv5_VERBOSE = false
2022-11-10 21:52:34: 
2022-11-10 21:52:34: Started Scene Classification backend
2022-11-10 21:52:38: scene.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:52:38: Scene Classification: Scene Classification started. in Scene Classification
2022-11-10 21:52:54: Sending shutdown request to python/FaceProcessing
2022-11-10 21:52:54: Queued: 'Quit' request, id 34b4fca8-ad9f-44a5-91bf-a1a1ee7113b6
2022-11-10 21:52:54: Dequeued 'Quit' request, id 34b4fca8-ad9f-44a5-91bf-a1a1ee7113b6
2022-11-10 21:52:54: Face Processing: Retrieved face_queue command in Face Processing
2022-11-10 21:53:25: Forcing shutdown of python/FaceProcessing
2022-11-10 21:53:25: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:53:25: 
2022-11-10 21:53:25: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:53:25: ** Active:      True
2022-11-10 21:53:25: ** GPU:         Support disabled
2022-11-10 21:53:25: ** Parallelism: 0
2022-11-10 21:53:25: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:53:25: ** Runtime:     python37
2022-11-10 21:53:25: ** Queue:       face_queue
2022-11-10 21:53:25: ** Start pause: 1 sec
2022-11-10 21:53:25: face.py: has exited
2022-11-10 21:53:25: ** Valid:       True
2022-11-10 21:53:25: ** Environment Variables
2022-11-10 21:53:25: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:53:25: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:53:25: ** MODE           = MEDIUM
2022-11-10 21:53:25: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:53:25: ** PROFILE        = desktop_gpu
2022-11-10 21:53:25: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:53:25: ** USE_CUDA       = True
2022-11-10 21:53:25: ** VISION-FACE    = True
2022-11-10 21:53:25: ** YOLOv5_VERBOSE = false
2022-11-10 21:53:25: 
2022-11-10 21:53:25: Started Face Processing backend
2022-11-10 21:53:30: face.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:53:30: Face Processing: Face Processing started. in Face Processing
2022-11-10 21:54:30: ** Operating System: Microsoft Windows 10.0.19045
2022-11-10 21:54:30: ** Architecture:     X64
2022-11-10 21:54:30: ** Environment:
2022-11-10 21:54:30: ** Platform:         windows
2022-11-10 21:54:30: ** In Docker:        False
2022-11-10 21:54:30: ** App DataDir:      C:\ProgramData\CodeProject\AI
2022-11-10 21:54:38: Video adapter info:
2022-11-10 21:54:38: Name               - Intel(R) UHD Graphics 630
2022-11-10 21:54:38: Device ID          - VideoController1
2022-11-10 21:54:38: Adapter RAM        - 1,024 MB
2022-11-10 21:54:38: Adapter DAC Type   - Internal
2022-11-10 21:54:38: Driver Version     - 31.0.101.2111
2022-11-10 21:54:38: Video Processor    - Intel(R) UHD Graphics Family
2022-11-10 21:54:38: Video Architecture - VGA
2022-11-10 21:54:38: Video Memory Type  - Unknown
2022-11-10 21:54:38: GPU 3D Usage       - 0%
2022-11-10 21:54:38: GPU RAM Usage      - 266.12 MB
2022-11-10 21:54:38: Name               - NVIDIA GeForce RTX 2060
2022-11-10 21:54:38: Device ID          - VideoController2
2022-11-10 21:54:38: Adapter RAM        - 4 GB
2022-11-10 21:54:38: Adapter DAC Type   - Integrated RAMDAC
2022-11-10 21:54:38: Driver Version     - 31.0.15.2206
2022-11-10 21:54:38: Video Processor    - NVIDIA GeForce RTX 2060
2022-11-10 21:54:38: Video Architecture - VGA
2022-11-10 21:54:38: Video Memory Type  - Unknown
2022-11-10 21:54:38: GPU 3D Usage       - 0%
2022-11-10 21:54:38: GPU RAM Usage      - 262.48 MB
2022-11-10 21:54:38: ------------------------------------------------------------------
2022-11-10 21:54:38: Expanded ROOT_PATH         = C:\Program Files\CodeProject\AI
2022-11-10 21:54:38: Expanded MODULES_PATH      = C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:54:38: Expanded Alt. MODULES_PATH = C:\Program Files\CodeProject\AI\modules
2022-11-10 21:54:38: Expanded PYTHON_BASEPATH   = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv
2022-11-10 21:54:38: Expanded PYTHON_PATH       = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:54:38: ------------------------------------------------------------------
2022-11-10 21:54:38: BackendProcessRunner Start
2022-11-10 21:54:38: Starting Background AI Modules
2022-11-10 21:54:41: Latest version available is 1.6.7-Beta
2022-11-10 21:54:41: Root Path:   C:\Program Files\CodeProject\AI
2022-11-10 21:54:41: Module Path: C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:54:41:       (alt): C:\Program Files\CodeProject\AI\modules
2022-11-10 21:54:41: Python Path: C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:54:41: Temp Dir:    C:\Windows\TEMP\
2022-11-10 21:54:41: Data Dir:    C:\ProgramData\CodeProject\AI
2022-11-10 21:54:41: Attempting to start Object Detection (.NET)
2022-11-10 21:54:41:   Runtime: execute, FilePath: ObjectDetectionNet\ObjectDetectionNet.exe
2022-11-10 21:54:41: Attempting to start Scene Classification
2022-11-10 21:54:41:   Runtime: python37, FilePath: Vision\intelligencelayer\scene.py
2022-11-10 21:54:41: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:54:41: 
2022-11-10 21:54:41: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:54:41: ** Active:      True
2022-11-10 21:54:41: ** GPU:         Support disabled
2022-11-10 21:54:41: ** Parallelism: 1
2022-11-10 21:54:41: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:54:41: ** Runtime:     python37
2022-11-10 21:54:41: ** Queue:       scene_queue
2022-11-10 21:54:41: ** Start pause: 1 sec
2022-11-10 21:54:41: ** Valid:       True
2022-11-10 21:54:41: ** Environment Variables
2022-11-10 21:54:41: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:54:41: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:54:41: ** MODE           = MEDIUM
2022-11-10 21:54:41: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:54:41: ** PROFILE        = desktop_gpu
2022-11-10 21:54:41: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:54:41: ** USE_CUDA       = True
2022-11-10 21:54:41: ** VISION-SCENE   = True
2022-11-10 21:54:41: ** YOLOv5_VERBOSE = false
2022-11-10 21:54:41: 
2022-11-10 21:54:41: Started Scene Classification backend
2022-11-10 21:54:42: Attempting to start Face Processing
2022-11-10 21:54:42:   Runtime: python37, FilePath: Vision\intelligencelayer\face.py
2022-11-10 21:54:42: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:54:42: 
2022-11-10 21:54:42: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:54:42: ** Active:      True
2022-11-10 21:54:42: ** GPU:         Support disabled
2022-11-10 21:54:42: ** Parallelism: 0
2022-11-10 21:54:42: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:54:42: ** Runtime:     python37
2022-11-10 21:54:42: ** Queue:       face_queue
2022-11-10 21:54:42: ** Start pause: 1 sec
2022-11-10 21:54:42: ** Valid:       True
2022-11-10 21:54:42: ** Environment Variables
2022-11-10 21:54:42: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:54:42: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:54:42: ** MODE           = MEDIUM
2022-11-10 21:54:42: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:54:42: ** PROFILE        = desktop_gpu
2022-11-10 21:54:42: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:54:42: ** USE_CUDA       = True
2022-11-10 21:54:42: ** VISION-FACE    = True
2022-11-10 21:54:42: ** YOLOv5_VERBOSE = false
2022-11-10 21:54:42: 
2022-11-10 21:54:42: Started Face Processing backend
2022-11-10 21:54:43: Attempting to start Portrait Filter
2022-11-10 21:54:43:   Runtime: execute, FilePath: PortraitFilter\PortraitFilter.exe
2022-11-10 21:54:43: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:54:43: 
2022-11-10 21:54:43: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:54:43: ** Active:      True
2022-11-10 21:54:43: ** GPU:         Support disabled
2022-11-10 21:54:43: ** Parallelism: 0
2022-11-10 21:54:43: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:54:43: ** Runtime:     execute
2022-11-10 21:54:43: ** Queue:       portraitfilter_queue
2022-11-10 21:54:43: ** Start pause: 1 sec
2022-11-10 21:54:43: ** Valid:       True
2022-11-10 21:54:43: ** Environment Variables
2022-11-10 21:54:43: 
2022-11-10 21:54:43: Started Portrait Filter backend
2022-11-10 21:54:43: Latest version available is 1.6.7-Beta
2022-11-10 21:54:43: Current Version is 1.6.8-Beta
2022-11-10 21:54:43: Server: This is a new, unreleased version
2022-11-10 21:54:44: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:54:44: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:54:44: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:54:44: Queued: 'detect' request, id 817d24fa-f14f-4f01-9724-4704600325f5
2022-11-10 21:54:44: Queued: 'detect' request, id 6f4e3027-9128-44da-a211-9127d7f1f6ac
2022-11-10 21:54:44: Queued: 'detect' request, id 2ba8a31d-f2f3-4590-b83f-9d3e9ab6b073
2022-11-10 21:54:44: Attempting to start Background Remover
2022-11-10 21:54:44:   Runtime: python39, FilePath: BackgroundRemover\rembg_adapter.py
2022-11-10 21:54:44: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\rembg_adapter.py"
2022-11-10 21:54:44: 
2022-11-10 21:54:44: ** Module 'Background Remover' (ID: BackgroundRemover)
2022-11-10 21:54:44: ** Active:      True
2022-11-10 21:54:44: ** GPU:         Support disabled
2022-11-10 21:54:44: ** Parallelism: 1
2022-11-10 21:54:44: ** Platforms:   windows,linux,docker,macos,macos-arm
2022-11-10 21:54:44: ** Runtime:     python39
2022-11-10 21:54:44: ** Queue:       removebackground_queue
2022-11-10 21:54:44: ** Start pause: 0 sec
2022-11-10 21:54:44: ** Valid:       True
2022-11-10 21:54:44: ** Environment Variables
2022-11-10 21:54:44: ** U2NET_HOME = %MODULES_PATH%/BackgroundRemover/models
2022-11-10 21:54:44: 
2022-11-10 21:54:44: Started Background Remover backend
2022-11-10 21:54:44: Attempting to start Object Detection (YOLO)
2022-11-10 21:54:44:   Runtime: python37, FilePath: ObjectDetectionYolo\detect_adapter.py
2022-11-10 21:54:44: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:54:44: 
2022-11-10 21:54:44: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:54:44: ** Active:      True
2022-11-10 21:54:44: ** GPU:         Support disabled
2022-11-10 21:54:44: ** Parallelism: 0
2022-11-10 21:54:44: ** Platforms:   all
2022-11-10 21:54:44: ** Runtime:     python37
2022-11-10 21:54:44: ** Queue:       detection_queue
2022-11-10 21:54:44: ** Start pause: 1 sec
2022-11-10 21:54:44: ** Valid:       True
2022-11-10 21:54:44: ** Environment Variables
2022-11-10 21:54:44: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:54:44: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:54:44: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:54:44: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:54:44: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:54:44: ** MODEL_SIZE           = Medium
2022-11-10 21:54:44: ** USE_CUDA             = True
2022-11-10 21:54:44: ** YOLOv5_VERBOSE       = false
2022-11-10 21:54:44: 
2022-11-10 21:54:44: Started Object Detection (YOLO) backend
2022-11-10 21:54:45: Portrait Filter: Portrait Filter module started. in Portrait Filter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   2022-11-10 21:55:41: ** Operating System: Microsoft Windows 10.0.19045
2022-11-10 21:55:41: ** Architecture:     X64
2022-11-10 21:55:41: ** Environment:
2022-11-10 21:55:41: ** Platform:         windows
2022-11-10 21:55:41: ** In Docker:        False
2022-11-10 21:55:41: ** App DataDir:      C:\ProgramData\CodeProject\AI
2022-11-10 21:55:48: Video adapter info:
2022-11-10 21:55:48: Name               - Intel(R) UHD Graphics 630
2022-11-10 21:55:48: Device ID          - VideoController1
2022-11-10 21:55:48: Adapter RAM        - 1,024 MB
2022-11-10 21:55:48: Adapter DAC Type   - Internal
2022-11-10 21:55:48: Driver Version     - 31.0.101.2111
2022-11-10 21:55:48: Video Processor    - Intel(R) UHD Graphics Family
2022-11-10 21:55:48: Video Architecture - VGA
2022-11-10 21:55:48: Video Memory Type  - Unknown
2022-11-10 21:55:48: GPU 3D Usage       - 0%
2022-11-10 21:55:48: GPU RAM Usage      - 154.75 MB
2022-11-10 21:55:48: Name               - NVIDIA GeForce RTX 2060
2022-11-10 21:55:48: Device ID          - VideoController2
2022-11-10 21:55:48: Adapter RAM        - 4 GB
2022-11-10 21:55:48: Adapter DAC Type   - Integrated RAMDAC
2022-11-10 21:55:48: Driver Version     - 31.0.15.2206
2022-11-10 21:55:48: Video Processor    - NVIDIA GeForce RTX 2060
2022-11-10 21:55:48: Video Architecture - VGA
2022-11-10 21:55:48: Video Memory Type  - Unknown
2022-11-10 21:55:48: GPU 3D Usage       - 0%
2022-11-10 21:55:48: GPU RAM Usage      - 151.11 MB
2022-11-10 21:55:49: ------------------------------------------------------------------
2022-11-10 21:55:49: Expanded ROOT_PATH         = C:\Program Files\CodeProject\AI
2022-11-10 21:55:49: Expanded MODULES_PATH      = C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:55:49: Expanded Alt. MODULES_PATH = C:\Program Files\CodeProject\AI\modules
2022-11-10 21:55:49: Expanded PYTHON_BASEPATH   = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv
2022-11-10 21:55:49: Expanded PYTHON_PATH       = C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:55:49: ------------------------------------------------------------------
2022-11-10 21:55:49: BackendProcessRunner Start
2022-11-10 21:55:49: Starting Background AI Modules
2022-11-10 21:55:52: Error checking for latest version: No such host is known. (www.codeproject.com:443)
2022-11-10 21:55:52: Error checking for latest version: No such host is known. (www.codeproject.com:443)
2022-11-10 21:55:52: Error checking for latest version: No such host is known. (www.codeproject.com:443)
2022-11-10 21:55:52: Root Path:   C:\Program Files\CodeProject\AI
2022-11-10 21:55:52: Module Path: C:\Program Files\CodeProject\AI\AnalysisLayer
2022-11-10 21:55:52:       (alt): C:\Program Files\CodeProject\AI\modules
2022-11-10 21:55:52: Python Path: C:\Program Files\CodeProject\AI\AnalysisLayer\bin\%PYTHON_RUNTIME%\venv\scripts\Python
2022-11-10 21:55:52: Temp Dir:    C:\Windows\TEMP\
2022-11-10 21:55:52: Data Dir:    C:\ProgramData\CodeProject\AI
2022-11-10 21:55:52: Attempting to start Object Detection (.NET)
2022-11-10 21:55:52:   Runtime: execute, FilePath: ObjectDetectionNet\ObjectDetectionNet.exe
2022-11-10 21:55:52: Attempting to start Scene Classification
2022-11-10 21:55:52:   Runtime: python37, FilePath: Vision\intelligencelayer\scene.py
2022-11-10 21:55:52: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\scene.py"
2022-11-10 21:55:52: 
2022-11-10 21:55:52: ** Module 'Scene Classification' (ID: SceneClassification)
2022-11-10 21:55:52: ** Active:      True
2022-11-10 21:55:52: ** GPU:         Support disabled
2022-11-10 21:55:52: ** Parallelism: 1
2022-11-10 21:55:52: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:55:52: ** Runtime:     python37
2022-11-10 21:55:52: ** Queue:       scene_queue
2022-11-10 21:55:52: ** Start pause: 1 sec
2022-11-10 21:55:52: ** Valid:       True
2022-11-10 21:55:52: ** Environment Variables
2022-11-10 21:55:52: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:55:52: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:55:52: ** MODE           = MEDIUM
2022-11-10 21:55:52: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:55:52: ** PROFILE        = desktop_gpu
2022-11-10 21:55:52: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:55:52: ** USE_CUDA       = True
2022-11-10 21:55:52: ** VISION-SCENE   = True
2022-11-10 21:55:52: ** YOLOv5_VERBOSE = false
2022-11-10 21:55:52: 
2022-11-10 21:55:52: Started Scene Classification backend
2022-11-10 21:55:53: Attempting to start Object Detection (YOLO)
2022-11-10 21:55:53:   Runtime: python37, FilePath: ObjectDetectionYolo\detect_adapter.py
2022-11-10 21:55:53: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\detect_adapter.py"
2022-11-10 21:55:53: 
2022-11-10 21:55:53: ** Module 'Object Detection (YOLO)' (ID: ObjectDetectionYolo)
2022-11-10 21:55:53: ** Active:      True
2022-11-10 21:55:53: ** GPU:         Support disabled
2022-11-10 21:55:53: ** Parallelism: 0
2022-11-10 21:55:53: ** Platforms:   all
2022-11-10 21:55:53: ** Runtime:     python37
2022-11-10 21:55:53: ** Queue:       detection_queue
2022-11-10 21:55:53: ** Start pause: 1 sec
2022-11-10 21:55:53: ** Valid:       True
2022-11-10 21:55:53: ** Environment Variables
2022-11-10 21:55:53: ** APPDIR               = %MODULES_PATH%\ObjectDetectionYolo
2022-11-10 21:55:53: ** CPAI_CUDA_DEVICE_NUM = 0
2022-11-10 21:55:53: ** CPAI_HALF_PRECISION  = Enable
2022-11-10 21:55:53: ** CUSTOM_MODELS_DIR    = %MODULES_PATH%\ObjectDetectionYolo\custom-models
2022-11-10 21:55:53: ** MODELS_DIR           = %MODULES_PATH%\ObjectDetectionYolo\assets
2022-11-10 21:55:53: ** MODEL_SIZE           = Medium
2022-11-10 21:55:53: ** USE_CUDA             = True
2022-11-10 21:55:53: ** YOLOv5_VERBOSE       = false
2022-11-10 21:55:53: 
2022-11-10 21:55:53: Started Object Detection (YOLO) backend
2022-11-10 21:55:54: Attempting to start Background Remover
2022-11-10 21:55:54:   Runtime: python39, FilePath: BackgroundRemover\rembg_adapter.py
2022-11-10 21:55:54: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\rembg_adapter.py"
2022-11-10 21:55:54: 
2022-11-10 21:55:54: ** Module 'Background Remover' (ID: BackgroundRemover)
2022-11-10 21:55:54: ** Active:      True
2022-11-10 21:55:54: ** GPU:         Support disabled
2022-11-10 21:55:54: ** Parallelism: 1
2022-11-10 21:55:54: ** Platforms:   windows,linux,docker,macos,macos-arm
2022-11-10 21:55:54: ** Runtime:     python39
2022-11-10 21:55:54: ** Queue:       removebackground_queue
2022-11-10 21:55:54: ** Start pause: 0 sec
2022-11-10 21:55:54: ** Valid:       True
2022-11-10 21:55:54: ** Environment Variables
2022-11-10 21:55:54: ** U2NET_HOME = %MODULES_PATH%/BackgroundRemover/models
2022-11-10 21:55:54: 
2022-11-10 21:55:54: Started Background Remover backend
2022-11-10 21:55:54: Attempting to start Portrait Filter
2022-11-10 21:55:54:   Runtime: execute, FilePath: PortraitFilter\PortraitFilter.exe
2022-11-10 21:55:54: Starting "C:\Program Files...\PortraitFilter.exe" 
2022-11-10 21:55:54: 
2022-11-10 21:55:54: ** Module 'Portrait Filter' (ID: PortraitFilter)
2022-11-10 21:55:54: ** Active:      True
2022-11-10 21:55:54: ** GPU:         Support disabled
2022-11-10 21:55:54: ** Parallelism: 0
2022-11-10 21:55:54: ** Platforms:   windows,linux,docker,macos
2022-11-10 21:55:54: ** Runtime:     execute
2022-11-10 21:55:54: ** Queue:       portraitfilter_queue
2022-11-10 21:55:54: ** Start pause: 1 sec
2022-11-10 21:55:54: ** Valid:       True
2022-11-10 21:55:54: ** Environment Variables
2022-11-10 21:55:54: 
2022-11-10 21:55:54: Started Portrait Filter backend
2022-11-10 21:55:54: Latest version available is 1.6.7-Beta
2022-11-10 21:55:54: Current Version is 1.6.8-Beta
2022-11-10 21:55:54: Server: This is a new, unreleased version
2022-11-10 21:55:54: PortraitFilter.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:55:54: PortraitFilter.exe:       Hosting environment: Production
2022-11-10 21:55:54: PortraitFilter.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\PortraitFilter
2022-11-10 21:55:55: Attempting to start Face Processing
2022-11-10 21:55:55:   Runtime: python37, FilePath: Vision\intelligencelayer\face.py
2022-11-10 21:55:55: Starting C:\Program Files...\CodeProject\AI\Python "C:\Program Files...\CodeProject\AI\face.py"
2022-11-10 21:55:55: 
2022-11-10 21:55:55: ** Module 'Face Processing' (ID: FaceProcessing)
2022-11-10 21:55:55: ** Active:      True
2022-11-10 21:55:55: ** GPU:         Support disabled
2022-11-10 21:55:55: ** Parallelism: 0
2022-11-10 21:55:55: ** Platforms:   windows,linux,macos,macos-arm,docker
2022-11-10 21:55:55: ** Runtime:     python37
2022-11-10 21:55:55: ** Queue:       face_queue
2022-11-10 21:55:55: ** Start pause: 1 sec
2022-11-10 21:55:55: ** Valid:       True
2022-11-10 21:55:55: ** Environment Variables
2022-11-10 21:55:55: ** APPDIR         = %MODULES_PATH%\Vision\intelligencelayer
2022-11-10 21:55:55: ** DATA_DIR       = %DATA_DIR%
2022-11-10 21:55:55: ** MODE           = MEDIUM
2022-11-10 21:55:55: ** MODELS_DIR     = %MODULES_PATH%\Vision\assets
2022-11-10 21:55:55: ** PROFILE        = desktop_gpu
2022-11-10 21:55:55: ** TEMP_PATH      = %MODULES_PATH%\Vision\tempstore
2022-11-10 21:55:55: ** USE_CUDA       = True
2022-11-10 21:55:55: ** VISION-FACE    = True
2022-11-10 21:55:55: ** YOLOv5_VERBOSE = false
2022-11-10 21:55:55: 
2022-11-10 21:55:55: Started Face Processing backend
2022-11-10 21:55:55: Queued: 'detect' request, id 0c46e47c-252d-4f24-a27c-da66e2067dc2
2022-11-10 21:55:56: Portrait Filter: Portrait Filter module started. in Portrait Filter
2022-11-10 21:55:56: Latest version available is 1.6.7-Beta
2022-11-10 21:56:00: Background Remover: Background Remover started. in Background Remover
2022-11-10 21:56:02: scene.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:56:02: Scene Classification: Scene Classification started. in Scene Classification
2022-11-10 21:56:04: Sending shutdown request to python/ObjectDetectionYolo
2022-11-10 21:56:04: Queued: 'Quit' request, id e6cb7761-a483-4ba3-a530-189dad6f8ea7
2022-11-10 21:56:05: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo
2022-11-10 21:56:05: detect_adapter.py: CPAI_PORT:   32168
2022-11-10 21:56:05: detect_adapter.py: MODEL_SIZE:  medium
2022-11-10 21:56:05: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionYolo\assets
2022-11-10 21:56:05: detect_adapter.py: support_GPU: False
2022-11-10 21:56:05: detect_adapter.py: use_CUDA:    False
2022-11-10 21:56:05: Object Detection (YOLO): Running init for Object Detection (YOLO) in Object Detection (YOLO)
2022-11-10 21:56:05: Dequeued 'detect' request, id 47504971-a968-4c0c-8b4f-0d584c34d08e
2022-11-10 21:56:05: Dequeued 'detect' request, id 0c46e47c-252d-4f24-a27c-da66e2067dc2
2022-11-10 21:56:05: face.py: Vision AI services setup: Retrieving environment variables...
2022-11-10 21:56:05: Dequeued 'detect' request, id e83b0a80-8a7d-4ab7-ae3f-f65d946a4ebd
2022-11-10 21:56:05: Object Detection (YOLO): Object Detection (YOLO) started. in Object Detection (YOLO)
2022-11-10 21:56:05: Face Processing: Face Processing started. in Face Processing
2022-11-10 21:56:05: Object Detection (YOLO): Retrieved detection_queue command in Object Detection (YOLO)
2022-11-10 21:56:06: Response received (id 0c46e47c-252d-4f24-a27c-da66e2067dc2)
2022-11-10 21:56:15: detect_adapter.py: Inference processing will occur on device 'CPU'
2022-11-10 21:56:15: detect_adapter.py: has exited
2022-11-10 21:56:33: Queued: 'detect' request, id 7fd60603-97eb-4896-9c18-72514e2518c1
2022-11-10 21:56:33: Queued: 'detect' request, id 8a73138a-6c15-4a26-bf5c-0ae654f3f520
2022-11-10 21:56:34: Queued: 'detect' request, id e0e1c961-b3cf-462f-a2dd-d686504ab8db
2022-11-10 21:56:35: ObjectDetectionYolo went quietly
2022-11-10 21:56:41: Starting "C:\Program Files...\ObjectDetectionNet.exe" 
2022-11-10 21:56:41: 
2022-11-10 21:56:41: ** Module 'Object Detection (.NET)' (ID: ObjectDetectionNet)
2022-11-10 21:56:41: ** Active:      True
2022-11-10 21:56:41: ** GPU:         Support enabled
2022-11-10 21:56:41: ** Parallelism: 0
2022-11-10 21:56:41: ** Platforms:   windows,linux
2022-11-10 21:56:41: ** Runtime:     execute
2022-11-10 21:56:41: ** Queue:       detection_queue
2022-11-10 21:56:41: ** Start pause: 1 sec
2022-11-10 21:56:41: ** Valid:       True
2022-11-10 21:56:41: ** Environment Variables
2022-11-10 21:56:41: ** MODEL_SIZE = MEDIUM
2022-11-10 21:56:41: 
2022-11-10 21:56:41: Started Object Detection (.NET) backend
2022-11-10 21:56:48: ObjectDetectionNet.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:56:48: ObjectDetectionNet.exe:       Hosting environment: Production
2022-11-10 21:56:48: ObjectDetectionNet.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionNet
2022-11-10 21:56:49: Object Detection (Net): Object Detection (Net) module started. in Object Detection (Net)
2022-11-10 21:56:49: ObjectDetectionNet.exe:       Please ensure you don't enable this module along side any other Object Detection module using the 'vision/detection' route and 'detection_queue' queue (eg. ObjectDetectionYolo). There will be conflicts
2022-11-10 21:56:49: Dequeued 'detect' request, id 7fd60603-97eb-4896-9c18-72514e2518c1
2022-11-10 21:56:49: Dequeued 'detect' request, id 8a73138a-6c15-4a26-bf5c-0ae654f3f520
2022-11-10 21:56:49: Dequeued 'detect' request, id e0e1c961-b3cf-462f-a2dd-d686504ab8db
2022-11-10 21:56:49: Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
2022-11-10 21:56:49: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ExtractPixels>b__1(Int32) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:56:49: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ForWorker>b__1(System.Threading.Tasks.RangeWorker ByRef, Int32, Boolean ByRef) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:56:49:    at System.Threading.Tasks.TaskReplicator+Replica.Execute()
2022-11-10 21:56:49:    at System.Threading.Tasks.TaskReplicator+Replica+<>c.<.ctor>b__4_0(System.Object)
2022-11-10 21:56:49:    at System.Threading.Tasks.Task.InnerInvoke()
2022-11-10 21:56:49:    at System.Threading.Tasks.Task+<>c.<.cctor>b__272_0(System.Object)
2022-11-10 21:56:49:    at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
2022-11-10 21:56:49:    at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef, System.Threading.Thread)
2022-11-10 21:56:49:    at System.Threading.Tasks.Task.ExecuteEntryUnsafe(System.Threading.Thread)
2022-11-10 21:56:49:    at System.Threading.ThreadPoolWorkQueue.Dispatch()
2022-11-10 21:56:49:    at System.Threading.PortableThreadPool+WorkerThread.WorkerThreadStart()
2022-11-10 21:56:49:    at System.Threading.Thread.StartCallback()
2022-11-10 21:56:49: ObjectDetectionNet.exe: has exited
2022-11-10 21:57:03: ObjectDetectionNet has left the building
2022-11-10 21:57:03: Starting "C:\Program Files...\ObjectDetectionNet.exe" 
2022-11-10 21:57:03: 
2022-11-10 21:57:03: ** Module 'Object Detection (.NET)' (ID: ObjectDetectionNet)
2022-11-10 21:57:03: ** Active:      True
2022-11-10 21:57:03: ** GPU:         Support disabled
2022-11-10 21:57:03: ** Parallelism: 0
2022-11-10 21:57:03: ** Platforms:   windows,linux
2022-11-10 21:57:03: ** Runtime:     execute
2022-11-10 21:57:03: ** Queue:       detection_queue
2022-11-10 21:57:03: ** Start pause: 1 sec
2022-11-10 21:57:03: ** Valid:       True
2022-11-10 21:57:03: ** Environment Variables
2022-11-10 21:57:03: ** MODEL_SIZE = MEDIUM
2022-11-10 21:57:03: 
2022-11-10 21:57:03: Started Object Detection (.NET) backend
2022-11-10 21:57:03: ObjectDetectionNet.exe:       Application started. Press Ctrl+C to shut down.
2022-11-10 21:57:03: ObjectDetectionNet.exe:       Hosting environment: Production
2022-11-10 21:57:03: ObjectDetectionNet.exe:       Content root path: C:\Program Files\CodeProject\AI\AnalysisLayer\ObjectDetectionNet
2022-11-10 21:57:05: Object Detection (Net): Object Detection (Net) module started. in Object Detection (Net)
2022-11-10 21:57:05: ObjectDetectionNet.exe:       Please ensure you don't enable this module along side any other Object Detection module using the 'vision/detection' route and 'detection_queue' queue (eg. ObjectDetectionYolo). There will be conflicts
2022-11-10 21:57:51: Dequeued 'detect' request, id f2895042-dfe6-40a5-bbe9-f470145caca6
2022-11-10 21:57:51: Queued: 'detect' request, id cb37dbeb-0280-4ecd-b462-314ab01e3577
2022-11-10 21:57:51: Dequeued 'detect' request, id cb37dbeb-0280-4ecd-b462-314ab01e3577
2022-11-10 21:57:51: Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
2022-11-10 21:57:51: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ExtractPixels>b__1(Int32) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:57:51: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ForWorker>b__1(System.Threading.Tasks.RangeWorker ByRef, Int32, Boolean ByRef) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:57:51:    at System.Threading.Tasks.TaskReplicator+Replica.Execute()
2022-11-10 21:57:51:    at System.Threading.Tasks.TaskReplicator+Replica+<>c.<.ctor>b__4_0(System.Object)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.InnerInvoke()
2022-11-10 21:57:51:    at System.Threading.Tasks.Task+<>c.<.cctor>b__272_0(System.Object)
2022-11-10 21:57:51:    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef, System.Threading.Thread)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.ExecuteEntryUnsafe(System.Threading.Thread)
2022-11-10 21:57:51:    at System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean)
2022-11-10 21:57:51:    at System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.InternalRunSynchronously(System.Threading.Tasks.TaskScheduler, Boolean)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.RunSynchronously(System.Threading.Tasks.TaskScheduler)
2022-11-10 21:57:51: System.Threading.Tasks.RangeWorker, System.Threading.Tasks.Parallel, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a: (ReplicatableUserAction`1<System.Threading.Tasks.RangeWorker>, System.Threading.Tasks.ParallelOptions, Boolean) in System.Threading.Tasks.RangeWorker, System.Threading.Tasks.Parallel, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
2022-11-10 21:57:51: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: (Int32, Int32, System.Threading.Tasks.ParallelOptions, System.Action`1<Int32>, System.Action`2<Int32,System.Threading.Tasks.ParallelLoopState>, System.Func`4<Int32,System.Threading.Tasks.ParallelLoopState,System.__Canon,System.__Canon>, System.Func`1<System.__Canon>, System.Action`1<System.__Canon>) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:57:51:    at System.Threading.Tasks.Parallel.For(Int32, Int32, System.Action`1<Int32>)
2022-11-10 21:57:51: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ExtractPixels>b__0(Int32) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:57:51: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .<ForWorker>b__1(System.Threading.Tasks.RangeWorker ByRef, Int32, Boolean ByRef) in System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
2022-11-10 21:57:51:    at System.Threading.Tasks.TaskReplicator+Replica.Execute()
2022-11-10 21:57:51:    at System.Threading.Tasks.TaskReplicator+Replica+<>c.<.ctor>b__4_0(System.Object)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.InnerInvoke()
2022-11-10 21:57:51:    at System.Threading.Tasks.Task+<>c.<.cctor>b__272_0(System.Object)
2022-11-10 21:57:51:    at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef, System.Threading.Thread)
2022-11-10 21:57:51:    at System.Threading.Tasks.Task.ExecuteEntryUnsafe(System.Threading.Thread)
2022-11-10 21:57:51:    at System.Threading.ThreadPoolWorkQueue.Dispatch()
2022-11-10 21:57:51:    at System.Threading.PortableThreadPool+WorkerThread.WorkerThreadStart()
2022-11-10 21:57:51:    at System.Threading.Thread.StartCallback()
2022-11-10 21:57:51: ObjectDetectionNet.exe: has exited
2022-11-10 21:57:53: Queued: 'detect' request, id 9ca82f8a-8dee-4f25-9847-eb0a381add47
2022-11-10 21:57:55: Queued: 'detect' request, id f8b19eeb-f8da-487a-a81f-54f6bd10c32d
2022-11-10 21:57:57: Queued: 'detect' request, id 1acf148c-479e-4336-89bc-dd42a1ecf8e4
2022-11-10 21:57:59: Queued: 'detect' request, id ffdd9bad-642d-441e-812c-43eb15760bb6
2022-11-10 21:58:01: Queued: 'detect' request, id b87c60da-a24e-430f-8c8d-a15c5437471f
2022-11-10 21:58:03: Queued: 'detect' request, id a37fed59-d82e-4b33-8289-fd1066a200a6
2022-11-10 21:58:05: Queued: 'detect' request, id 6d067d42-061b-42b5-8808-90afa5bdfac6
2022-11-10 21:58:07: Queued: 'detect' request, id 5742cb41-1930-4b02-b3d2-fedb4ef5d899
2022-11-10 21:58:32: Queued: 'detect' request, id 82892612-0070-4c8e-8ae8-ff19c3cd3f52
2022-11-10 21:58:33: Queued: 'detect' request, id 44d00383-c4f0-4e82-bda3-df3d9ede36ac

9:57:51 PM: Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
9:57:51 PM: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .b__1(Int32)
9:57:51 PM: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .b__1(System.Threading.Tasks.RangeWorker ByRef, Int32, Boolean ByRef)
9:57:51 PM:    at System.Threading.Tasks.TaskReplicator+Replica.Execute()
9:57:51 PM:    at System.Threading.Tasks.TaskReplicator+Replica+<>c.<.ctor>b__4_0(System.Object)
9:57:51 PM:    at System.Threading.Tasks.Task.InnerInvoke()
9:57:51 PM:    at System.Threading.Tasks.Task+<>c.<.cctor>b__272_0(System.Object)
9:57:51 PM:    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
9:57:51 PM:    at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef, System.Threading.Thread)
9:57:51 PM:    at System.Threading.Tasks.Task.ExecuteEntryUnsafe(System.Threading.Thread)
9:57:51 PM:    at System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean)
9:57:51 PM:    at System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean)
9:57:51 PM:    at System.Threading.Tasks.Task.InternalRunSynchronously(System.Threading.Tasks.TaskScheduler, Boolean)
9:57:51 PM:    at System.Threading.Tasks.Task.RunSynchronously(System.Threading.Tasks.TaskScheduler)
9:57:51 PM: System.Threading.Tasks.RangeWorker, System.Threading.Tasks.Parallel, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a: (ReplicatableUserAction`1, System.Threading.Tasks.ParallelOptions, Boolean)
9:57:51 PM: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: (Int32, Int32, System.Threading.Tasks.ParallelOptions, System.Action`1, System.Action`2, System.Func`4, System.Func`1, System.Action`1)
9:57:51 PM:    at System.Threading.Tasks.Parallel.For(Int32, Int32, System.Action`1)
9:57:51 PM: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .b__0(Int32)
9:57:51 PM: System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e: .b__1(System.Threading.Tasks.RangeWorker ByRef, Int32, Boolean ByRef)
9:57:51 PM:    at System.Threading.Tasks.TaskReplicator+Replica.Execute()
9:57:51 PM:    at System.Threading.Tasks.TaskReplicator+Replica+<>c.<.ctor>b__4_0(System.Object)
9:57:51 PM:    at System.Threading.Tasks.Task.InnerInvoke()
9:57:51 PM:    at System.Threading.Tasks.Task+<>c.<.cctor>b__272_0(System.Object)
9:57:51 PM:    at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
9:57:51 PM:    at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef, System.Threading.Thread)
9:57:51 PM:    at System.Threading.Tasks.Task.ExecuteEntryUnsafe(System.Threading.Thread)
9:57:51 PM:    at System.Threading.ThreadPoolWorkQueue.Dispatch()
9:57:51 PM:    at System.Threading.PortableThreadPool+WorkerThread.WorkerThreadStart()
9:57:51 PM:    at System.Threading.Thread.StartCallback()
9:57:51 PM: ObjectDetectionNet.exe: has exited

GeneralRe: issues running yolo with blue iris Pin
Chris Maunder11-Nov-22 2:21
cofounderChris Maunder11-Nov-22 2:21 
GeneralRe: issues running yolo with blue iris Pin
swilliams7636011-Nov-22 2:31
swilliams7636011-Nov-22 2:31 
GeneralRe: issues running yolo with blue iris Pin
Chris Maunder11-Nov-22 3:42
cofounderChris Maunder11-Nov-22 3:42 
GeneralRe: issues running yolo with blue iris Pin
swilliams7636015-Nov-22 1:14
swilliams7636015-Nov-22 1:14 
GeneralRe: issues running yolo with blue iris Pin
swilliams7636010-Nov-22 17:11
swilliams7636010-Nov-22 17:11 
AnswerRe: issues running yolo with blue iris Pin
Mike Lud10-Nov-22 17:38
communityengineerMike Lud10-Nov-22 17:38 
AnswerRe: issues running yolo with blue iris Pin
swilliams7636015-Dec-22 3:29
swilliams7636015-Dec-22 3:29 
QuestionUnable to create YOLO detector for model yolov5m Pin
Member 1567240710-Nov-22 1:38
Member 1567240710-Nov-22 1:38 
AnswerRe: Unable to create YOLO detector for model yolov5m Pin
Chris Maunder10-Nov-22 15:17
cofounderChris Maunder10-Nov-22 15:17 
QuestionCodeProject.AI as a Docker in Unraid Pin
Member 158206824-Nov-22 11:51
Member 158206824-Nov-22 11:51 
AnswerRe: CodeProject.AI as a Docker in Unraid Pin
theoldfool5-Nov-22 1:17
professionaltheoldfool5-Nov-22 1:17 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
Member 158206825-Nov-22 7:48
Member 158206825-Nov-22 7:48 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
theoldfool5-Nov-22 8:13
professionaltheoldfool5-Nov-22 8:13 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
DeadpoolW8-Nov-22 9:18
DeadpoolW8-Nov-22 9:18 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
Mike Lud8-Nov-22 9:39
communityengineerMike Lud8-Nov-22 9:39 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
Chris Maunder10-Nov-22 15:19
cofounderChris Maunder10-Nov-22 15:19 
GeneralRe: CodeProject.AI as a Docker in Unraid Pin
theoldfool8-Nov-22 10:10
professionaltheoldfool8-Nov-22 10:10 

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

Flags: AnsweredNeed more info

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