Click here to Skip to main content
15,890,579 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

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

Image 1

Previous

Quick Links

CodeProject.AI Server: An Artificial Intelligence Server

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

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

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

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

What Does It Do?

Image 11

The CodeProject.AI Server's Dashboard

Currently CodeProject.AI Server contains AI modules that provide:

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

How Do I Use It?

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

Guides, Help, FAQs

CodeProject.AI Server Home Assistant Blue Iris

Image 12

The CodeProject.AI Server's Explorer in action

Why We Built CodeProject.AI Server

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

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

    We want your contributions!

  • AI coding examples have too many moving parts

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

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

  • AI solutions often require the use of cloud services

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

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

1: Running and Playing With the Features

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

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

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

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

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

2: Running and Debugging the Code

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

3. Using CodeProject.AI Server in My Application

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

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

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

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

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

See the API documentation for a complete rundown of functionality.

Notes on the installers

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

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

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

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

Notes on CUDA and Nvidia Support

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

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

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

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

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

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

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

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

What Does It Include?

CodeProject.AI Server includes:

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

CodeProject.AI Server can currently

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

The development environment also provides modules that can

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

We will be constantly expanding the feature list.

Our Goals

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

License

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

Release Notes

What's New - 2.6

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

Previous Versions

Release 2.5

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

Release 2.4

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

Release 2.3

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

Release 2.2.0

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

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

Release 2.1.x Beta

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

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

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

Release 2.0.x Beta

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

Release 1.6.x Beta

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

Release 1.5.6.2 Beta

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

Release 1.5.6 Beta

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

Release 1.5 Beta

  • Support for custom models

Release 1.3.x Beta

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

Release 1.2.x Beta

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

Previous

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

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

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

4 members

Comments and Discussions

 
GeneralRe: In faceprocessing/modulesettings.json Pin
Jebus5923-Dec-23 13:32
Jebus5923-Dec-23 13:32 
QuestionModule info window and copy button location Pin
Steve Winn23-Dec-23 4:26
Steve Winn23-Dec-23 4:26 
AnswerRe: Module info window and copy button location Pin
Chris Maunder23-Dec-23 12:38
cofounderChris Maunder23-Dec-23 12:38 
QuestionRuntime Error (Most recent callback) Pin
Member 1616901323-Dec-23 4:18
Member 1616901323-Dec-23 4:18 
AnswerRe: Runtime Error (Most recent callback) Pin
Chris Maunder23-Dec-23 12:34
cofounderChris Maunder23-Dec-23 12:34 
GeneralRe: Runtime Error (Most recent callback) Pin
Member 1616901324-Dec-23 1:30
Member 1616901324-Dec-23 1:30 
GeneralRe: Runtime Error (Most recent callback) Pin
Member 1616901327-Dec-23 0:37
Member 1616901327-Dec-23 0:37 
QuestionCodeProject.AI-Server-win-x64-2.4.6_RC2 Win 7 Pin
Jebus5922-Dec-23 13:08
Jebus5922-Dec-23 13:08 
Just observations and a question. I know I am unsupported.

Still can not download from the bitbucket during setup. Command prompt or powershell running setup.

I can download any of the zips from the bit bucket from a locked down Firefox.

Sorry for the length of this,

2023-12-22 14:08:27: ** System:           Windows
2023-12-22 14:08:27: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 14:08:27: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 14:08:27: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 14:08:27: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 14:08:27: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 14:08:27: ** System RAM:       48 GiB
2023-12-22 14:08:27: ** Platform:         Windows
2023-12-22 14:08:27: ** BuildConfig:      Release
2023-12-22 14:08:27: ** Execution Env:    Native
2023-12-22 14:08:27: ** Runtime Env:      Production
2023-12-22 14:08:27: ** .NET framework:   .NET 7.0.5
2023-12-22 14:08:27: ** Default Python:
2023-12-22 14:08:27: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 14:08:27: Video adapter info:
2023-12-22 14:08:27:   NVIDIA GeForce RTX 3060:
2023-12-22 14:08:27:     Driver Version     30.0.14.7411
2023-12-22 14:08:27:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 14:08:27: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 14:08:27: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 14:08:27: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 14:08:27: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 14:08:27: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 14:08:27: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 14:08:27: ** Server version:   2.4.6-Beta
2023-12-22 14:08:27: ModuleRunner Start
2023-12-22 14:08:27: Starting Background AI Modules
2023-12-22 14:08:30: ** Setting up initial modules. Please be patient...
2023-12-22 14:08:30: ** Installing initial module FaceProcessing.
2023-12-22 14:08:30: Preparing to install module 'FaceProcessing'
2023-12-22 14:08:31: Downloading module 'FaceProcessing'
2023-12-22 14:08:32: Installing module 'FaceProcessing'
2023-12-22 14:08:32: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:08:32: FaceProcessing:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:08:32: FaceProcessing: ======================================================================
2023-12-22 14:08:32: FaceProcessing:                    CodeProject.AI Installer                           
2023-12-22 14:08:32: FaceProcessing: ======================================================================
2023-12-22 14:08:32: FaceProcessing: General CodeProject.AI setup                                          
2023-12-22 14:08:32: FaceProcessing: Creating Directories...Done
2023-12-22 14:08:32: FaceProcessing: GPU support                                                           
2023-12-22 14:08:32: FaceProcessing: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:08:32: FaceProcessing: ROCm Present...No
2023-12-22 14:08:32: Current Version is 2.4.6-Beta
2023-12-22 14:08:32: *** Server: This is a new, unreleased version
2023-12-22 14:09:45: FaceProcessing: Reading FaceProcessing settings.......Done
2023-12-22 14:09:45: FaceProcessing: Installing module Face Processing 1.8.5                               
2023-12-22 14:09:45: FaceProcessing: Installing Python 3.7
2023-12-22 14:09:46: FaceProcessing: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:09:46: FaceProcessing: access rights to the requested server object.
2023-12-22 14:09:46: FaceProcessing: At line:1 char:1
2023-12-22 14:09:46: FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:09:46: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:09:46: FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:09:46: FaceProcessing:    ption
2023-12-22 14:09:46: FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:09:46: FaceProcessing:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:09:47: FaceProcessing: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:09:47: FaceProcessing: access rights to the requested server object.
2023-12-22 14:09:47: FaceProcessing: At line:1 char:1
2023-12-22 14:09:47: FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:09:47: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:09:47: FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:09:47: FaceProcessing:    ption
2023-12-22 14:09:47: FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:09:47: FaceProcessing:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:09:47: FaceProcessing: Downloading Python 3.7 interpreter...BITS transfer failed. Trying Powershell....
2023-12-22 14:09:48: FaceProcessing: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 14:09:48: FaceProcessing: At line:1 char:1
2023-12-22 14:09:48: FaceProcessing: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 14:09:48: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:09:48: FaceProcessing:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 14:09:48: FaceProcessing:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 14:09:48: FaceProcessing:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 14:09:48: FaceProcessing:    ll.Commands.InvokeWebRequestCommand
2023-12-22 14:09:48: FaceProcessing: Download failed. Sorry.
2023-12-22 14:09:48: FaceProcessing: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:09:48: FaceProcessing: operable program or batch file.
2023-12-22 14:09:48: FaceProcessing: Creating Virtual Environment (Shared)...Done
2023-12-22 14:09:48: FaceProcessing: The system cannot find the path specified.
2023-12-22 14:09:48: FaceProcessing: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 14:09:48: Module FaceProcessing installed successfully.
2023-12-22 14:09:48: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:09:48: 
2023-12-22 14:09:48: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 14:09:48: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 14:09:48: 
2023-12-22 14:09:48: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 14:09:48: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 14:09:48: ** AutoStart:     True
2023-12-22 14:09:48: ** Queue:         faceprocessing_queue
2023-12-22 14:09:48: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:09:48: ** GPU Libraries: installed if available
2023-12-22 14:09:48: ** GPU Enabled:   enabled
2023-12-22 14:09:48: ** Parallelism:   0
2023-12-22 14:09:48: ** Accelerator:
2023-12-22 14:09:48: ** Half Precis.:  enable
2023-12-22 14:09:48: ** Runtime:       python3.7
2023-12-22 14:09:48: ** Runtime Loc:   Shared
2023-12-22 14:09:48: ** FilePath:      intelligencelayer/face.py
2023-12-22 14:09:48: ** Pre installed: False
2023-12-22 14:09:48: ** Start pause:   3 sec
2023-12-22 14:09:48: ** LogVerbosity:
2023-12-22 14:09:48: ** Valid:         True
2023-12-22 14:09:48: ** Environment Variables
2023-12-22 14:09:48: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 14:09:48: ** DATA_DIR           = %DATA_DIR%
2023-12-22 14:09:48: ** MODE               = MEDIUM
2023-12-22 14:09:48: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 14:09:48: ** PROFILE            = desktop_gpu
2023-12-22 14:09:48: ** USE_CUDA           = True
2023-12-22 14:09:48: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:09:48: ** YOLOv5_VERBOSE     = false
2023-12-22 14:09:48: 
2023-12-22 14:09:48 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 14:09:48: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 14:09:48:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:09:48: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:09:48: Module FaceProcessing started successfully.
2023-12-22 14:09:48: Installer exited with code 255
2023-12-22 14:09:48: ** Installing initial module ObjectDetectionYOLOv5-6.2.
2023-12-22 14:09:48: Preparing to install module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:09:48: Downloading module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:09:49: Installing module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:09:49: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2:                    CodeProject.AI Installer                           
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: General CodeProject.AI setup                                          
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: Creating Directories...Done
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: GPU support                                                           
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:09:49: ObjectDetectionYOLOv5-6.2: ROCm Present...No
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: Reading ObjectDetectionYOLOv5-6.2 settings.......Done
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: Installing module Object Detection (YOLOv5 6.2) 1.7.5                 
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: Installing Python 3.7
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: operable program or batch file.
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: Creating Virtual Environment (Shared)...Done
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: The system cannot find the path specified.
2023-12-22 14:11:02: ObjectDetectionYOLOv5-6.2: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 14:11:02: Module ObjectDetectionYOLOv5-6.2 installed successfully.
2023-12-22 14:11:02: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:11:02: 
2023-12-22 14:11:02: Attempting to start ObjectDetectionYOLOv5-6.2 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:11:02: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...nYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:11:02: 
2023-12-22 14:11:02: ** Module 'Object Detection (YOLOv5 6.2)' 1.7.5 (ID: ObjectDetectionYOLOv5-6.2)
2023-12-22 14:11:02: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2
2023-12-22 14:11:02: ** AutoStart:     True
2023-12-22 14:11:02: ** Queue:         objectdetection_queue
2023-12-22 14:11:02: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:11:02: ** GPU Libraries: installed if available
2023-12-22 14:11:02: ** GPU Enabled:   enabled
2023-12-22 14:11:02: ** Parallelism:   0
2023-12-22 14:11:02: ** Accelerator:
2023-12-22 14:11:02: ** Half Precis.:  enable
2023-12-22 14:11:02: ** Runtime:       python3.7
2023-12-22 14:11:02: ** Runtime Loc:   Shared
2023-12-22 14:11:02: ** FilePath:      detect_adapter.py
2023-12-22 14:11:02: ** Pre installed: False
2023-12-22 14:11:02: ** Start pause:   1 sec
2023-12-22 14:11:02: ** LogVerbosity:
2023-12-22 14:11:02: ** Valid:         True
2023-12-22 14:11:02: ** Environment Variables
2023-12-22 14:11:02: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 14:11:02: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 14:11:02: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 14:11:02: ** MODEL_SIZE         = Medium
2023-12-22 14:11:02: ** USE_CUDA           = True
2023-12-22 14:11:02: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:11:02: ** YOLOv5_VERBOSE     = false
2023-12-22 14:11:02: 
2023-12-22 14:11:02 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Object Detection (YOLOv5 6.2) (detect_adapter.py)
2023-12-22 14:11:02: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
2023-12-22 14:11:02:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:11:02: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:11:02: Module ObjectDetectionYOLOv5-6.2 started successfully.
2023-12-22 14:11:02: Installer exited with code 255
2023-12-22 14:11:02: ** Installing initial module ObjectDetectionYOLOv5Net.
2023-12-22 14:11:02: Preparing to install module 'ObjectDetectionYOLOv5Net'
2023-12-22 14:11:02: Downloading module 'ObjectDetectionYOLOv5Net'
2023-12-22 14:11:03: Installing module 'ObjectDetectionYOLOv5Net'
2023-12-22 14:11:03: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: ======================================================================
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net:                    CodeProject.AI Installer                           
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: ======================================================================
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: General CodeProject.AI setup                                          
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: Creating Directories...Done
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: GPU support                                                           
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:11:03: ObjectDetectionYOLOv5Net: ROCm Present...No
2023-12-22 14:12:13: ObjectDetectionYOLOv5Net: Reading ObjectDetectionYOLOv5Net settings.......Done
2023-12-22 14:12:13: ObjectDetectionYOLOv5Net: Installing module Object Detection (YOLOv5 .NET) 1.7.7                
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:14: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:15: ObjectDetectionYOLOv5Net: Downloading ObjectDetectionYOLOv5Net-DirectML-1.7.7.zip...BITS transfer failed. Trying Powershell....
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net:    ll.Commands.InvokeWebRequestCommand
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: Download failed. Sorry.
2023-12-22 14:12:16: ObjectDetectionYOLOv5Net: Failed to download and extract ObjectDetectionYOLOv5Net-DirectML-1.7.7.zip
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:17: ObjectDetectionYOLOv5Net: Downloading YOLO ONNX models...BITS transfer failed. Trying Powershell....
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:    ll.Commands.InvokeWebRequestCommand
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: Download failed. Sorry.
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: Failed to download and extract yolonet-models.zip
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:18: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: access rights to the requested server object.
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net:    ption
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:12:19: ObjectDetectionYOLOv5Net: Downloading Custom YOLO ONNX models...BITS transfer failed. Trying Powershell....
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: At line:1 char:1
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net:    ll.Commands.InvokeWebRequestCommand
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: Download failed. Sorry.
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: Failed to download and extract yolonet-custom-models.zip
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: Self test: .\bin\ObjectDetectionYOLOv5Net.exe does not exist
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: No self-test available
2023-12-22 14:12:20: ObjectDetectionYOLOv5Net: Setup complete                                                        
2023-12-22 14:12:20: Module ObjectDetectionYOLOv5Net installed successfully.
2023-12-22 14:12:20: Module ObjectDetectionYOLOv5Net not configured to AutoStart.
2023-12-22 14:12:20: Installer exited with code 0
2023-12-22 14:12:38: ObjectDetectionYOLOv5Net doesn't appear in the Process list, so can't stop it.
2023-12-22 14:37:34: ** System:           Windows
2023-12-22 14:37:34: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 14:37:34: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 14:37:34: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 14:37:34: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 14:37:34: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 14:37:34: ** System RAM:       48 GiB
2023-12-22 14:37:34: ** Platform:         Windows
2023-12-22 14:37:34: ** BuildConfig:      Release
2023-12-22 14:37:34: ** Execution Env:    Native
2023-12-22 14:37:34: ** Runtime Env:      Production
2023-12-22 14:37:34: ** .NET framework:   .NET 7.0.5
2023-12-22 14:37:34: ** Default Python:
2023-12-22 14:37:34: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 14:37:34: Video adapter info:
2023-12-22 14:37:34:   NVIDIA GeForce RTX 3060:
2023-12-22 14:37:34:     Driver Version     30.0.14.7411
2023-12-22 14:37:34:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 14:37:34: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 14:37:34: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 14:37:34: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 14:37:34: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 14:37:34: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 14:37:34: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 14:37:34: ** Server version:   2.4.6-Beta
2023-12-22 14:37:34: ModuleRunner Start
2023-12-22 14:37:34: Starting Background AI Modules
2023-12-22 14:37:37: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:37:37: 
2023-12-22 14:37:37: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 14:37:37: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 14:37:37: 
2023-12-22 14:37:37: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 14:37:37: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 14:37:37: ** AutoStart:     True
2023-12-22 14:37:37: ** Queue:         faceprocessing_queue
2023-12-22 14:37:37: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:37:37: ** GPU Libraries: installed if available
2023-12-22 14:37:37: ** GPU Enabled:   enabled
2023-12-22 14:37:37: ** Parallelism:   0
2023-12-22 14:37:37: ** Accelerator:
2023-12-22 14:37:37: ** Half Precis.:  enable
2023-12-22 14:37:37: ** Runtime:       python3.7
2023-12-22 14:37:37: ** Runtime Loc:   Shared
2023-12-22 14:37:37: ** FilePath:      intelligencelayer/face.py
2023-12-22 14:37:37: ** Pre installed: False
2023-12-22 14:37:37: ** Start pause:   3 sec
2023-12-22 14:37:37: ** LogVerbosity:
2023-12-22 14:37:37: ** Valid:         True
2023-12-22 14:37:37: ** Environment Variables
2023-12-22 14:37:37: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 14:37:37: ** DATA_DIR           = %DATA_DIR%
2023-12-22 14:37:37: ** MODE               = MEDIUM
2023-12-22 14:37:37: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 14:37:37: ** PROFILE            = desktop_gpu
2023-12-22 14:37:37: ** USE_CUDA           = True
2023-12-22 14:37:37: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:37:37: ** YOLOv5_VERBOSE     = false
2023-12-22 14:37:37: 
2023-12-22 14:37:37 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 14:37:37: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 14:37:37:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:37:37: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:37:37: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:37:37: 
2023-12-22 14:37:37: Attempting to start ObjectDetectionYOLOv5-6.2 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:37:37: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...nYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:37:37: 
2023-12-22 14:37:37: ** Module 'Object Detection (YOLOv5 6.2)' 1.7.5 (ID: ObjectDetectionYOLOv5-6.2)
2023-12-22 14:37:37: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2
2023-12-22 14:37:37: ** AutoStart:     True
2023-12-22 14:37:37: ** Queue:         objectdetection_queue
2023-12-22 14:37:37: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:37:37: ** GPU Libraries: installed if available
2023-12-22 14:37:37: ** GPU Enabled:   enabled
2023-12-22 14:37:37: ** Parallelism:   0
2023-12-22 14:37:37: ** Accelerator:
2023-12-22 14:37:37: ** Half Precis.:  enable
2023-12-22 14:37:37: ** Runtime:       python3.7
2023-12-22 14:37:37: ** Runtime Loc:   Shared
2023-12-22 14:37:37: ** FilePath:      detect_adapter.py
2023-12-22 14:37:37: ** Pre installed: False
2023-12-22 14:37:37: ** Start pause:   1 sec
2023-12-22 14:37:37: ** LogVerbosity:
2023-12-22 14:37:37: ** Valid:         True
2023-12-22 14:37:37: ** Environment Variables
2023-12-22 14:37:37: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 14:37:37: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 14:37:37: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 14:37:37: ** MODEL_SIZE         = Medium
2023-12-22 14:37:37: ** USE_CUDA           = True
2023-12-22 14:37:37: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:37:37: ** YOLOv5_VERBOSE     = false
2023-12-22 14:37:37: 
2023-12-22 14:37:37 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Object Detection (YOLOv5 6.2) (detect_adapter.py)
2023-12-22 14:37:37: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
2023-12-22 14:37:37:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:37:37: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:37:40: Current Version is 2.4.6-Beta
2023-12-22 14:37:40: *** Server: This is a new, unreleased version
2023-12-22 14:38:51: ObjectDetectionYOLOv5-6.2 has left the building
2023-12-22 14:38:52: Unable to delete install folder for ObjectDetectionYOLOv5-6.2
2023-12-22 14:39:04: FaceProcessing has left the building
2023-12-22 14:43:04: Preparing to install module 'FaceProcessing'
2023-12-22 14:43:04: Downloading module 'FaceProcessing'
2023-12-22 14:43:05: Installing module 'FaceProcessing'
2023-12-22 14:43:05: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:43:05: FaceProcessing:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:43:05: FaceProcessing: ======================================================================
2023-12-22 14:43:05: FaceProcessing:                    CodeProject.AI Installer                           
2023-12-22 14:43:05: FaceProcessing: ======================================================================
2023-12-22 14:43:05: FaceProcessing: General CodeProject.AI setup                                          
2023-12-22 14:43:05: FaceProcessing: Creating Directories...Done
2023-12-22 14:43:05: FaceProcessing: GPU support                                                           
2023-12-22 14:43:05: FaceProcessing: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:43:05: FaceProcessing: ROCm Present...No
2023-12-22 14:44:14: FaceProcessing: Reading FaceProcessing settings.......Done
2023-12-22 14:44:14: FaceProcessing: Installing module Face Processing 1.8.5                               
2023-12-22 14:44:14: FaceProcessing: Installing Python 3.7
2023-12-22 14:44:14: FaceProcessing: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:44:14: FaceProcessing: operable program or batch file.
2023-12-22 14:44:14: FaceProcessing: Creating Virtual Environment (Shared)...Done
2023-12-22 14:44:14: FaceProcessing: The system cannot find the path specified.
2023-12-22 14:44:14: FaceProcessing: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 14:44:14: Module FaceProcessing installed successfully.
2023-12-22 14:44:14: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:44:14: 
2023-12-22 14:44:14: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 14:44:14: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 14:44:14: 
2023-12-22 14:44:14: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 14:44:14: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 14:44:14: ** AutoStart:     True
2023-12-22 14:44:14: ** Queue:         faceprocessing_queue
2023-12-22 14:44:14: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:44:14: ** GPU Libraries: installed if available
2023-12-22 14:44:14: ** GPU Enabled:   enabled
2023-12-22 14:44:14: ** Parallelism:   0
2023-12-22 14:44:14: ** Accelerator:
2023-12-22 14:44:14: ** Half Precis.:  enable
2023-12-22 14:44:14: ** Runtime:       python3.7
2023-12-22 14:44:14: ** Runtime Loc:   Shared
2023-12-22 14:44:14: ** FilePath:      intelligencelayer/face.py
2023-12-22 14:44:14: ** Pre installed: False
2023-12-22 14:44:14: ** Start pause:   3 sec
2023-12-22 14:44:14: ** LogVerbosity:
2023-12-22 14:44:14: ** Valid:         True
2023-12-22 14:44:14: ** Environment Variables
2023-12-22 14:44:14: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 14:44:14: ** DATA_DIR           = %DATA_DIR%
2023-12-22 14:44:14: ** MODE               = MEDIUM
2023-12-22 14:44:14: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 14:44:14: ** PROFILE            = desktop_gpu
2023-12-22 14:44:14: ** USE_CUDA           = True
2023-12-22 14:44:14: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:44:14: ** YOLOv5_VERBOSE     = false
2023-12-22 14:44:14: 
2023-12-22 14:44:14 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 14:44:14: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 14:44:14:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:44:14: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:44:14: Module FaceProcessing started successfully.
2023-12-22 14:44:14: Installer exited with code 255
2023-12-22 14:44:47: Preparing to install module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:44:47: Downloading module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:44:48: Installing module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 14:44:48: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2:                    CodeProject.AI Installer                           
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: General CodeProject.AI setup                                          
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: Creating Directories...Done
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: GPU support                                                           
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:44:48: ObjectDetectionYOLOv5-6.2: ROCm Present...No
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: Reading ObjectDetectionYOLOv5-6.2 settings.......Done
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: Installing module Object Detection (YOLOv5 6.2) 1.7.5                 
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: Installing Python 3.7
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: operable program or batch file.
2023-12-22 14:45:57: ObjectDetectionYOLOv5-6.2: Creating Virtual Environment (Shared)...Done
2023-12-22 14:45:58: ObjectDetectionYOLOv5-6.2: The system cannot find the path specified.
2023-12-22 14:45:58: ObjectDetectionYOLOv5-6.2: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 14:45:58: Module ObjectDetectionYOLOv5-6.2 installed successfully.
2023-12-22 14:45:58: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:45:58: 
2023-12-22 14:45:58: Attempting to start ObjectDetectionYOLOv5-6.2 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:45:58: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...nYOLOv5-6.2\detect_adapter.py"
2023-12-22 14:45:58: 
2023-12-22 14:45:58: ** Module 'Object Detection (YOLOv5 6.2)' 1.7.5 (ID: ObjectDetectionYOLOv5-6.2)
2023-12-22 14:45:58: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2
2023-12-22 14:45:58: ** AutoStart:     True
2023-12-22 14:45:58: ** Queue:         objectdetection_queue
2023-12-22 14:45:58: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:45:58: ** GPU Libraries: installed if available
2023-12-22 14:45:58: ** GPU Enabled:   enabled
2023-12-22 14:45:58: ** Parallelism:   0
2023-12-22 14:45:58: ** Accelerator:
2023-12-22 14:45:58: ** Half Precis.:  enable
2023-12-22 14:45:58: ** Runtime:       python3.7
2023-12-22 14:45:58: ** Runtime Loc:   Shared
2023-12-22 14:45:58: ** FilePath:      detect_adapter.py
2023-12-22 14:45:58: ** Pre installed: False
2023-12-22 14:45:58: ** Start pause:   1 sec
2023-12-22 14:45:58: ** LogVerbosity:
2023-12-22 14:45:58: ** Valid:         True
2023-12-22 14:45:58: ** Environment Variables
2023-12-22 14:45:58: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 14:45:58: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 14:45:58: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 14:45:58: ** MODEL_SIZE         = Medium
2023-12-22 14:45:58: ** USE_CUDA           = True
2023-12-22 14:45:58: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:45:58: ** YOLOv5_VERBOSE     = false
2023-12-22 14:45:58: 
2023-12-22 14:45:58 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Object Detection (YOLOv5 6.2) (detect_adapter.py)
2023-12-22 14:45:58: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2'. The system cannot find the file specified.
2023-12-22 14:45:58:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:45:58: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:45:58: Module ObjectDetectionYOLOv5-6.2 started successfully.
2023-12-22 14:45:58: Installer exited with code 255
2023-12-22 14:46:33: ObjectDetectionYOLOv5-6.2 has left the building
2023-12-22 14:46:50: FaceProcessing has left the building
2023-12-22 14:48:44: ** System:           Windows
2023-12-22 14:48:44: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 14:48:44: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 14:48:44: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 14:48:44: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 14:48:44: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 14:48:44: ** System RAM:       48 GiB
2023-12-22 14:48:44: ** Platform:         Windows
2023-12-22 14:48:44: ** BuildConfig:      Release
2023-12-22 14:48:44: ** Execution Env:    Native
2023-12-22 14:48:44: ** Runtime Env:      Production
2023-12-22 14:48:44: ** .NET framework:   .NET 7.0.5
2023-12-22 14:48:44: ** Default Python:
2023-12-22 14:48:44: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 14:48:44: Video adapter info:
2023-12-22 14:48:44:   NVIDIA GeForce RTX 3060:
2023-12-22 14:48:44:     Driver Version     30.0.14.7411
2023-12-22 14:48:44:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 14:48:44: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 14:48:44: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 14:48:44: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 14:48:44: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 14:48:44: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 14:48:44: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 14:48:44: ** Server version:   2.4.6-Beta
2023-12-22 14:48:44: ModuleRunner Start
2023-12-22 14:48:45: Starting Background AI Modules
2023-12-22 14:48:50: Current Version is 2.4.6-Beta
2023-12-22 14:48:50: *** Server: This is a new, unreleased version
2023-12-22 14:50:21: Preparing to install module 'FaceProcessing'
2023-12-22 14:50:21: Downloading module 'FaceProcessing'
2023-12-22 14:50:21: Installing module 'FaceProcessing'
2023-12-22 14:50:21: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:50:22: FaceProcessing:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:50:22: FaceProcessing: ======================================================================
2023-12-22 14:50:22: FaceProcessing:                    CodeProject.AI Installer                           
2023-12-22 14:50:22: FaceProcessing: ======================================================================
2023-12-22 14:50:22: FaceProcessing: os, arch             = windows x86_64
2023-12-22 14:50:22: FaceProcessing: systemName, platform = Windows, windows
2023-12-22 14:50:22: FaceProcessing: setupMode            = InstallModule
2023-12-22 14:50:22: FaceProcessing: executionEnvironment = Production
2023-12-22 14:50:22: FaceProcessing: rootDirPath          = C:\Program Files\CodeProject\AI
2023-12-22 14:50:22: FaceProcessing: appRootDirPath       = C:\Program Files\CodeProject\AI\
2023-12-22 14:50:22: FaceProcessing: setupScriptDirPath   = C:\Program Files\CodeProject\AI\
2023-12-22 14:50:22: FaceProcessing: sdkScriptsDirPath    = C:\Program Files\CodeProject\AI\SDK\Scripts
2023-12-22 14:50:22: FaceProcessing: runtimesDirPath      = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 14:50:22: FaceProcessing: modulesDirPath       = C:\Program Files\CodeProject\AI\modules
2023-12-22 14:50:22: FaceProcessing: downloadDirPath      = C:\Program Files\CodeProject\AI\downloads
2023-12-22 14:50:22: FaceProcessing: General CodeProject.AI setup                                          
2023-12-22 14:50:22: FaceProcessing: Creating Directories...Done
2023-12-22 14:50:22: FaceProcessing: GPU support                                                           
2023-12-22 14:50:22: FaceProcessing: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:50:22: FaceProcessing: ROCm Present...No
2023-12-22 14:51:31: FaceProcessing: Reading FaceProcessing settings.......Done
2023-12-22 14:51:31: FaceProcessing: Installing module Face Processing 1.8.5                               
2023-12-22 14:51:31: FaceProcessing: Variable Dump                                                         
2023-12-22 14:51:31: FaceProcessing: moduleName          = Face Processing
2023-12-22 14:51:31: FaceProcessing: moduleVersion       = 1.8.5
2023-12-22 14:51:31: FaceProcessing: runtime             = python3.7
2023-12-22 14:51:31: FaceProcessing: runtimeLocation     = Shared
2023-12-22 14:51:31: FaceProcessing: installGPU          = true
2023-12-22 14:51:31: FaceProcessing: pythonVersion       = 3.7
2023-12-22 14:51:31: FaceProcessing: virtualEnvDirPath   = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv
2023-12-22 14:51:31: FaceProcessing: venvPythonCmdPath   = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python.exe
2023-12-22 14:51:31: FaceProcessing: packagesDirPath     = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages
2023-12-22 14:51:31: FaceProcessing: moduleStartFilePath = intelligencelayer/face.py
2023-12-22 14:51:31: FaceProcessing: Installing Python 3.7
2023-12-22 14:51:31: FaceProcessing: Installing python37 in C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37
2023-12-22 14:51:31: FaceProcessing: Creating Virtual Environment (Shared)...Virtual Environment doesn't exist. Creating at C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv
2023-12-22 14:51:31: FaceProcessing: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:51:31: FaceProcessing: operable program or batch file.
2023-12-22 14:51:31: FaceProcessing: Done
2023-12-22 14:51:31: FaceProcessing: The system cannot find the path specified.
2023-12-22 14:51:31: FaceProcessing: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 14:51:31: Module FaceProcessing installed successfully.
2023-12-22 14:51:31: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 14:51:31: 
2023-12-22 14:51:31: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 14:51:31: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 14:51:31: 
2023-12-22 14:51:31: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 14:51:31: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 14:51:31: ** AutoStart:     True
2023-12-22 14:51:31: ** Queue:         faceprocessing_queue
2023-12-22 14:51:31: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 14:51:31: ** GPU Libraries: installed if available
2023-12-22 14:51:31: ** GPU Enabled:   enabled
2023-12-22 14:51:31: ** Parallelism:   0
2023-12-22 14:51:31: ** Accelerator:
2023-12-22 14:51:31: ** Half Precis.:  enable
2023-12-22 14:51:31: ** Runtime:       python3.7
2023-12-22 14:51:31: ** Runtime Loc:   Shared
2023-12-22 14:51:31: ** FilePath:      intelligencelayer/face.py
2023-12-22 14:51:31: ** Pre installed: False
2023-12-22 14:51:31: ** Start pause:   3 sec
2023-12-22 14:51:31: ** LogVerbosity:
2023-12-22 14:51:31: ** Valid:         True
2023-12-22 14:51:31: ** Environment Variables
2023-12-22 14:51:31: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 14:51:31: ** DATA_DIR           = %DATA_DIR%
2023-12-22 14:51:31: ** MODE               = MEDIUM
2023-12-22 14:51:31: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 14:51:31: ** PROFILE            = desktop_gpu
2023-12-22 14:51:31: ** USE_CUDA           = True
2023-12-22 14:51:31: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:51:31: ** YOLOv5_VERBOSE     = false
2023-12-22 14:51:31: 
2023-12-22 14:51:31 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 14:51:31: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 14:51:31:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:51:31: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:51:31: Module FaceProcessing started successfully.
2023-12-22 14:51:31: Installer exited with code 255
2023-12-22 14:53:35: Preparing to install module 'ObjectDetectionYOLOv8'
2023-12-22 14:53:35: Downloading module 'ObjectDetectionYOLOv8'
2023-12-22 14:53:36: Installing module 'ObjectDetectionYOLOv8'
2023-12-22 14:53:36: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 14:53:36: ObjectDetectionYOLOv8:              Installing CodeProject.AI Analysis Module                
2023-12-22 14:53:36: ObjectDetectionYOLOv8: ======================================================================
2023-12-22 14:53:36: ObjectDetectionYOLOv8:                    CodeProject.AI Installer                           
2023-12-22 14:53:36: ObjectDetectionYOLOv8: ======================================================================
2023-12-22 14:53:36: ObjectDetectionYOLOv8: os, arch             = windows x86_64
2023-12-22 14:53:36: ObjectDetectionYOLOv8: systemName, platform = Windows, windows
2023-12-22 14:53:36: ObjectDetectionYOLOv8: setupMode            = InstallModule
2023-12-22 14:53:36: ObjectDetectionYOLOv8: executionEnvironment = Production
2023-12-22 14:53:36: ObjectDetectionYOLOv8: rootDirPath          = C:\Program Files\CodeProject\AI
2023-12-22 14:53:36: ObjectDetectionYOLOv8: appRootDirPath       = C:\Program Files\CodeProject\AI\
2023-12-22 14:53:36: ObjectDetectionYOLOv8: setupScriptDirPath   = C:\Program Files\CodeProject\AI\
2023-12-22 14:53:36: ObjectDetectionYOLOv8: sdkScriptsDirPath    = C:\Program Files\CodeProject\AI\SDK\Scripts
2023-12-22 14:53:36: ObjectDetectionYOLOv8: runtimesDirPath      = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 14:53:36: ObjectDetectionYOLOv8: modulesDirPath       = C:\Program Files\CodeProject\AI\modules
2023-12-22 14:53:36: ObjectDetectionYOLOv8: downloadDirPath      = C:\Program Files\CodeProject\AI\downloads
2023-12-22 14:53:36: ObjectDetectionYOLOv8: General CodeProject.AI setup                                          
2023-12-22 14:53:36: ObjectDetectionYOLOv8: Creating Directories...Done
2023-12-22 14:53:36: ObjectDetectionYOLOv8: GPU support                                                           
2023-12-22 14:53:36: ObjectDetectionYOLOv8: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 14:53:36: ObjectDetectionYOLOv8: ROCm Present...No
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Reading ObjectDetectionYOLOv8 settings.......Done
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Installing module Object Detection (YOLOv8) 1.1.1                     
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Variable Dump                                                         
2023-12-22 14:54:45: ObjectDetectionYOLOv8: moduleName          = Object Detection (YOLOv8)
2023-12-22 14:54:45: ObjectDetectionYOLOv8: moduleVersion       = 1.1.1
2023-12-22 14:54:45: ObjectDetectionYOLOv8: runtime             = python3.9
2023-12-22 14:54:45: ObjectDetectionYOLOv8: runtimeLocation     = Shared
2023-12-22 14:54:45: ObjectDetectionYOLOv8: installGPU          = true
2023-12-22 14:54:45: ObjectDetectionYOLOv8: pythonVersion       = 3.9
2023-12-22 14:54:45: ObjectDetectionYOLOv8: virtualEnvDirPath   = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv
2023-12-22 14:54:45: ObjectDetectionYOLOv8: venvPythonCmdPath   = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python.exe
2023-12-22 14:54:45: ObjectDetectionYOLOv8: packagesDirPath     = C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Lib\site-packages
2023-12-22 14:54:45: ObjectDetectionYOLOv8: moduleStartFilePath = detect_adapter.py
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Installing Python 3.9
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Installing python39 in C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Downloading python39.zip to C:\Program Files\CodeProject\AI\downloads\windows\\python39
2023-12-22 14:54:45: ObjectDetectionYOLOv8: Downloading Python 3.9 interpreter...Checking 'C:\Program Files\CodeProject\AI\downloads\windows\\python39.zip'
2023-12-22 14:54:48: ObjectDetectionYOLOv8: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:54:48: ObjectDetectionYOLOv8: access rights to the requested server object.
2023-12-22 14:54:48: ObjectDetectionYOLOv8: At line:1 char:1
2023-12-22 14:54:48: ObjectDetectionYOLOv8: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:54:48: ObjectDetectionYOLOv8: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:54:48: ObjectDetectionYOLOv8:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:54:48: ObjectDetectionYOLOv8:    ption
2023-12-22 14:54:48: ObjectDetectionYOLOv8:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:54:48: ObjectDetectionYOLOv8:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:54:48: ObjectDetectionYOLOv8: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 14:54:48: ObjectDetectionYOLOv8: access rights to the requested server object.
2023-12-22 14:54:48: ObjectDetectionYOLOv8: At line:1 char:1
2023-12-22 14:54:48: ObjectDetectionYOLOv8: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 14:54:48: ObjectDetectionYOLOv8: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:54:48: ObjectDetectionYOLOv8:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 14:54:48: ObjectDetectionYOLOv8:    ption
2023-12-22 14:54:48: ObjectDetectionYOLOv8:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 14:54:48: ObjectDetectionYOLOv8:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 14:54:48: ObjectDetectionYOLOv8: BITS transfer failed. Trying Powershell....
2023-12-22 14:54:49: ObjectDetectionYOLOv8: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 14:54:49: ObjectDetectionYOLOv8: At line:1 char:1
2023-12-22 14:54:49: ObjectDetectionYOLOv8: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 14:54:49: ObjectDetectionYOLOv8: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 14:54:49: ObjectDetectionYOLOv8:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 14:54:49: ObjectDetectionYOLOv8:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 14:54:49: ObjectDetectionYOLOv8:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 14:54:49: ObjectDetectionYOLOv8:    ll.Commands.InvokeWebRequestCommand
2023-12-22 14:54:49: ObjectDetectionYOLOv8: Download failed. Sorry.
2023-12-22 14:54:49: ObjectDetectionYOLOv8: Creating Virtual Environment (Shared)...Virtual Environment doesn't exist. Creating at C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv
2023-12-22 14:54:49: ObjectDetectionYOLOv8: '"C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\python.exe"' is not recognized as an internal or external command,
2023-12-22 14:54:49: ObjectDetectionYOLOv8: operable program or batch file.
2023-12-22 14:54:49: ObjectDetectionYOLOv8: Done
2023-12-22 14:54:49: ObjectDetectionYOLOv8: The system cannot find the path specified.
2023-12-22 14:54:49: ObjectDetectionYOLOv8: Confirming we have Python 3.9 in our virtual environment...
2023-12-22 14:54:49: Module ObjectDetectionYOLOv8 installed successfully.
2023-12-22 14:54:49: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python
2023-12-22 14:54:49: 
2023-12-22 14:54:49: Attempting to start ObjectDetectionYOLOv8 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8\detect_adapter.py"
2023-12-22 14:54:49: Starting C:\Program Files...ws\python39\venv\Scripts\python "C:\Program Files...ctionYOLOv8\detect_adapter.py"
2023-12-22 14:54:49: 
2023-12-22 14:54:49: ** Module 'Object Detection (YOLOv8)' 1.1.1 (ID: ObjectDetectionYOLOv8)
2023-12-22 14:54:49: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8
2023-12-22 14:54:49: ** AutoStart:     True
2023-12-22 14:54:49: ** Queue:         objectdetection_queue
2023-12-22 14:54:49: ** Platforms:     all
2023-12-22 14:54:49: ** GPU Libraries: installed if available
2023-12-22 14:54:49: ** GPU Enabled:   enabled
2023-12-22 14:54:49: ** Parallelism:   0
2023-12-22 14:54:49: ** Accelerator:
2023-12-22 14:54:49: ** Half Precis.:  enable
2023-12-22 14:54:49: ** Runtime:       python3.9
2023-12-22 14:54:49: ** Runtime Loc:   Shared
2023-12-22 14:54:49: ** FilePath:      detect_adapter.py
2023-12-22 14:54:49: ** Pre installed: False
2023-12-22 14:54:49: ** Start pause:   1 sec
2023-12-22 14:54:49: ** LogVerbosity:
2023-12-22 14:54:49: ** Valid:         True
2023-12-22 14:54:49: ** Environment Variables
2023-12-22 14:54:49: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 14:54:49: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 14:54:49: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 14:54:49: ** MODEL_SIZE         = Medium
2023-12-22 14:54:49: ** USE_CUDA           = True
2023-12-22 14:54:49: ** YOLOv5_AUTOINSTALL = false
2023-12-22 14:54:49: ** YOLOv5_VERBOSE     = false
2023-12-22 14:54:49: 
2023-12-22 14:54:49 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Object Detection (YOLOv8) (detect_adapter.py)
2023-12-22 14:54:49: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8'. The system cannot find the file specified.
2023-12-22 14:54:49:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 14:54:49: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 14:54:49: Module ObjectDetectionYOLOv8 started successfully.
2023-12-22 14:54:49: Installer exited with code 255
2023-12-22 15:00:54: ** System:           Windows
2023-12-22 15:00:54: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 15:00:54: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 15:00:54: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 15:00:54: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 15:00:54: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 15:00:54: ** System RAM:       48 GiB
2023-12-22 15:00:54: ** Platform:         Windows
2023-12-22 15:00:54: ** BuildConfig:      Release
2023-12-22 15:00:54: ** Execution Env:    Native
2023-12-22 15:00:54: ** Runtime Env:      Production
2023-12-22 15:00:54: ** .NET framework:   .NET 7.0.5
2023-12-22 15:00:54: ** Default Python:
2023-12-22 15:00:54: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 15:00:54: Video adapter info:
2023-12-22 15:00:54:   NVIDIA GeForce RTX 3060:
2023-12-22 15:00:54:     Driver Version     30.0.14.7411
2023-12-22 15:00:54:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 15:00:54: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 15:00:54: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 15:00:54: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 15:00:54: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 15:00:54: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 15:00:54: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 15:00:54: ** Server version:   2.4.6-Beta
2023-12-22 15:00:54: ModuleRunner Start
2023-12-22 15:00:54: Starting Background AI Modules
2023-12-22 15:00:57: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python
2023-12-22 15:00:57: 
2023-12-22 15:00:57: Attempting to start ObjectDetectionYOLOv8 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8\detect_adapter.py"
2023-12-22 15:00:57: Starting C:\Program Files...ws\python39\venv\Scripts\python "C:\Program Files...ctionYOLOv8\detect_adapter.py"
2023-12-22 15:00:57: 
2023-12-22 15:00:57: ** Module 'Object Detection (YOLOv8)' 1.1.1 (ID: ObjectDetectionYOLOv8)
2023-12-22 15:00:57: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8
2023-12-22 15:00:57: ** AutoStart:     True
2023-12-22 15:00:57: ** Queue:         objectdetection_queue
2023-12-22 15:00:57: ** Platforms:     all
2023-12-22 15:00:57: ** GPU Libraries: installed if available
2023-12-22 15:00:57: ** GPU Enabled:   enabled
2023-12-22 15:00:57: ** Parallelism:   0
2023-12-22 15:00:57: ** Accelerator:
2023-12-22 15:00:57: ** Half Precis.:  enable
2023-12-22 15:00:57: ** Runtime:       python3.9
2023-12-22 15:00:58: ** Runtime Loc:   Shared
2023-12-22 15:00:58: ** FilePath:      detect_adapter.py
2023-12-22 15:00:58: ** Pre installed: False
2023-12-22 15:00:58: ** Start pause:   1 sec
2023-12-22 15:00:58: ** LogVerbosity:
2023-12-22 15:00:58: ** Valid:         True
2023-12-22 15:00:58: ** Environment Variables
2023-12-22 15:00:58: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 15:00:58: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 15:00:58: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 15:00:58: ** MODEL_SIZE         = Medium
2023-12-22 15:00:58: ** USE_CUDA           = True
2023-12-22 15:00:58: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:00:58: ** YOLOv5_VERBOSE     = false
2023-12-22 15:00:58: 
2023-12-22 15:00:58 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Object Detection (YOLOv8) (detect_adapter.py)
2023-12-22 15:00:58: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python39\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv8'. The system cannot find the file specified.
2023-12-22 15:00:58:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 15:00:58: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 15:00:58: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 15:00:58: 
2023-12-22 15:00:58: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 15:00:58: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 15:00:58: 
2023-12-22 15:00:58: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 15:00:58: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 15:00:58: ** AutoStart:     True
2023-12-22 15:00:58: ** Queue:         faceprocessing_queue
2023-12-22 15:00:58: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 15:00:58: ** GPU Libraries: installed if available
2023-12-22 15:00:58: ** GPU Enabled:   enabled
2023-12-22 15:00:58: ** Parallelism:   0
2023-12-22 15:00:58: ** Accelerator:
2023-12-22 15:00:58: ** Half Precis.:  enable
2023-12-22 15:00:58: ** Runtime:       python3.7
2023-12-22 15:00:58: ** Runtime Loc:   Shared
2023-12-22 15:00:58: ** FilePath:      intelligencelayer/face.py
2023-12-22 15:00:58: ** Pre installed: False
2023-12-22 15:00:58: ** Start pause:   3 sec
2023-12-22 15:00:58: ** LogVerbosity:
2023-12-22 15:00:58: ** Valid:         True
2023-12-22 15:00:58: ** Environment Variables
2023-12-22 15:00:58: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 15:00:58: ** DATA_DIR           = %DATA_DIR%
2023-12-22 15:00:58: ** MODE               = MEDIUM
2023-12-22 15:00:58: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 15:00:58: ** PROFILE            = desktop_gpu
2023-12-22 15:00:58: ** USE_CUDA           = True
2023-12-22 15:00:58: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:00:58: ** YOLOv5_VERBOSE     = false
2023-12-22 15:00:58: 
2023-12-22 15:00:58 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 15:00:58: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 15:00:58:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 15:00:58: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 15:01:00: Current Version is 2.4.6-Beta
2023-12-22 15:01:00: *** Server: This is a new, unreleased version
2023-12-22 15:01:52: ObjectDetectionYOLOv8 has left the building
2023-12-22 15:01:52: Unable to delete install folder for ObjectDetectionYOLOv8
2023-12-22 15:04:22: ** System:           Windows
2023-12-22 15:04:22: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 15:04:22: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 15:04:22: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 15:04:22: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 15:04:22: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 15:04:22: ** System RAM:       48 GiB
2023-12-22 15:04:22: ** Platform:         Windows
2023-12-22 15:04:22: ** BuildConfig:      Release
2023-12-22 15:04:22: ** Execution Env:    Native
2023-12-22 15:04:22: ** Runtime Env:      Production
2023-12-22 15:04:22: ** .NET framework:   .NET 7.0.5
2023-12-22 15:04:22: ** Default Python:
2023-12-22 15:04:22: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 15:04:22: Video adapter info:
2023-12-22 15:04:22:   NVIDIA GeForce RTX 3060:
2023-12-22 15:04:22:     Driver Version     30.0.14.7411
2023-12-22 15:04:22:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 15:04:22: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 15:04:22: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 15:04:22: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 15:04:22: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 15:04:22: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 15:04:22: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 15:04:22: ** Server version:   2.4.6-Beta
2023-12-22 15:04:22: ModuleRunner Start
2023-12-22 15:04:22: Starting Background AI Modules
2023-12-22 15:04:25: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 15:04:25: 
2023-12-22 15:04:25: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 15:04:25: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 15:04:25: 
2023-12-22 15:04:25: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 15:04:25: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 15:04:25: ** AutoStart:     True
2023-12-22 15:04:25: ** Queue:         faceprocessing_queue
2023-12-22 15:04:25: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 15:04:25: ** GPU Libraries: installed if available
2023-12-22 15:04:25: ** GPU Enabled:   enabled
2023-12-22 15:04:25: ** Parallelism:   0
2023-12-22 15:04:25: ** Accelerator:
2023-12-22 15:04:25: ** Half Precis.:  enable
2023-12-22 15:04:25: ** Runtime:       python3.7
2023-12-22 15:04:25: ** Runtime Loc:   Shared
2023-12-22 15:04:25: ** FilePath:      intelligencelayer/face.py
2023-12-22 15:04:25: ** Pre installed: False
2023-12-22 15:04:25: ** Start pause:   3 sec
2023-12-22 15:04:25: ** LogVerbosity:
2023-12-22 15:04:25: ** Valid:         True
2023-12-22 15:04:25: ** Environment Variables
2023-12-22 15:04:25: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 15:04:25: ** DATA_DIR           = %DATA_DIR%
2023-12-22 15:04:25: ** MODE               = MEDIUM
2023-12-22 15:04:25: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 15:04:25: ** PROFILE            = desktop_gpu
2023-12-22 15:04:25: ** USE_CUDA           = True
2023-12-22 15:04:25: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:04:25: ** YOLOv5_VERBOSE     = false
2023-12-22 15:04:25: 
2023-12-22 15:04:25 [System.ComponentModel.Win32Exception (2): An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
   at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)]: Error trying to start Face Processing (intelligencelayer/face.py)
2023-12-22 15:04:25: An error occurred trying to start process 'C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python' with working directory 'C:\Program Files\CodeProject\AI\modules\FaceProcessing'. The system cannot find the file specified.
2023-12-22 15:04:25:    at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
   at CodeProject.AI.Server.Modules.ModuleProcessServices.StartProcess(ModuleConfig module)
2023-12-22 15:04:25: *** Please check the CodeProject.AI installation completed successfully
2023-12-22 15:04:28: Current Version is 2.4.6-Beta
2023-12-22 15:04:28: *** Server: This is a new, unreleased version
2023-12-22 15:04:35: FaceProcessing has left the building
2023-12-22 15:04:35: Unable to delete install folder for FaceProcessing
2023-12-22 15:05:01: Preparing to install module 'FaceProcessing'
2023-12-22 15:05:01: Downloading module 'FaceProcessing'
2023-12-22 15:05:01: Installing module 'FaceProcessing'
2023-12-22 15:05:01: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 15:05:01: FaceProcessing:              Installing CodeProject.AI Analysis Module                
2023-12-22 15:05:01: FaceProcessing: ======================================================================
2023-12-22 15:05:01: FaceProcessing:                    CodeProject.AI Installer                           
2023-12-22 15:05:01: FaceProcessing: ======================================================================
2023-12-22 15:05:01: FaceProcessing: General CodeProject.AI setup                                          
2023-12-22 15:05:01: FaceProcessing: Creating Directories...Done
2023-12-22 15:05:01: FaceProcessing: GPU support                                                           
2023-12-22 15:05:02: FaceProcessing: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 15:05:02: FaceProcessing: ROCm Present...No
2023-12-22 15:06:11: FaceProcessing: Reading FaceProcessing settings.......Done
2023-12-22 15:06:11: FaceProcessing: Installing module Face Processing 1.8.5                               
2023-12-22 15:06:11: FaceProcessing: Installing Python 3.7
2023-12-22 15:06:11: FaceProcessing: Python 3.7 is already installed
2023-12-22 15:06:14: FaceProcessing: Creating Virtual Environment (Shared)...Done
2023-12-22 15:06:14: FaceProcessing: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 15:06:14: FaceProcessing: -------------------------------------------------------------
2023-12-22 15:06:14: FaceProcessing: Error: Python not installed
2023-12-22 15:06:15: FaceProcessing: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:06:15: FaceProcessing: access rights to the requested server object.
2023-12-22 15:06:15: FaceProcessing: At line:1 char:1
2023-12-22 15:06:15: FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:06:15: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:06:15: FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:06:15: FaceProcessing:    ption
2023-12-22 15:06:15: FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:06:15: FaceProcessing:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:06:16: FaceProcessing: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:06:16: FaceProcessing: access rights to the requested server object.
2023-12-22 15:06:16: FaceProcessing: At line:1 char:1
2023-12-22 15:06:16: FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:06:16: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:06:16: FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:06:16: FaceProcessing:    ption
2023-12-22 15:06:16: FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:06:16: FaceProcessing:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:06:16: FaceProcessing: Downloading Face models...BITS transfer failed. Trying Powershell....
2023-12-22 15:06:17: FaceProcessing: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 15:06:17: FaceProcessing: At line:1 char:1
2023-12-22 15:06:17: FaceProcessing: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 15:06:17: FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:06:17: FaceProcessing:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 15:06:17: FaceProcessing:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 15:06:17: FaceProcessing:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 15:06:17: FaceProcessing:    ll.Commands.InvokeWebRequestCommand
2023-12-22 15:06:17: FaceProcessing: Download failed. Sorry.
2023-12-22 15:06:17: FaceProcessing: Failed to download and extract models-face-pt.zip
2023-12-22 15:06:17: FaceProcessing: Installing Python packages for Face Processing
2023-12-22 15:06:17: FaceProcessing: [0;Installing GPU-enabled libraries: If available
2023-12-22 15:06:18: FaceProcessing: Ensuring Python package manager (pip) is installed...Done
2023-12-22 15:06:25: FaceProcessing: Ensuring Python package manager (pip) is up to date...Done
2023-12-22 15:06:25: FaceProcessing: Python packages specified by requirements.windows.cuda.txt
2023-12-22 15:06:25: FaceProcessing: Not enough memory.
2023-12-22 15:06:25: FaceProcessing: Installing Python packages for the CodeProject.AI Server SDK
2023-12-22 15:06:26: FaceProcessing: Ensuring Python package manager (pip) is installed...Done
2023-12-22 15:06:28: FaceProcessing: Ensuring Python package manager (pip) is up to date...Done
2023-12-22 15:06:28: FaceProcessing: Python packages specified by requirements.txt
2023-12-22 15:06:28: FaceProcessing: Not enough memory.
2023-12-22 15:06:28: FaceProcessing: Traceback (most recent call last):
2023-12-22 15:06:28: FaceProcessing:   File "intelligencelayer/face.py", line 21, in <module>
2023-12-22 15:06:28: FaceProcessing:     from request_data import RequestData
2023-12-22 15:06:28: FaceProcessing:   File "../../SDK/Python\request_data.py", line 7, in <module>
2023-12-22 15:06:28: FaceProcessing:     from PIL import Image
2023-12-22 15:06:28: FaceProcessing: ModuleNotFoundError: No module named 'PIL'
2023-12-22 15:06:28: FaceProcessing: Self test: Self-test passed
2023-12-22 15:06:28: FaceProcessing: Setup complete                                                        
2023-12-22 15:06:28: Module FaceProcessing installed successfully.
2023-12-22 15:06:28: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 15:06:28: 
2023-12-22 15:06:28: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 15:06:28: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 15:06:28: 
2023-12-22 15:06:28: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 15:06:28: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 15:06:28: ** AutoStart:     True
2023-12-22 15:06:28: ** Queue:         faceprocessing_queue
2023-12-22 15:06:28: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 15:06:28: ** GPU Libraries: installed if available
2023-12-22 15:06:28: ** GPU Enabled:   enabled
2023-12-22 15:06:28: ** Parallelism:   0
2023-12-22 15:06:28: ** Accelerator:
2023-12-22 15:06:28: ** Half Precis.:  enable
2023-12-22 15:06:28: ** Runtime:       python3.7
2023-12-22 15:06:28: ** Runtime Loc:   Shared
2023-12-22 15:06:28: ** FilePath:      intelligencelayer/face.py
2023-12-22 15:06:28: ** Pre installed: False
2023-12-22 15:06:28: ** Start pause:   3 sec
2023-12-22 15:06:28: ** LogVerbosity:
2023-12-22 15:06:28: ** Valid:         True
2023-12-22 15:06:28: ** Environment Variables
2023-12-22 15:06:28: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 15:06:28: ** DATA_DIR           = %DATA_DIR%
2023-12-22 15:06:28: ** MODE               = MEDIUM
2023-12-22 15:06:28: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 15:06:28: ** PROFILE            = desktop_gpu
2023-12-22 15:06:28: ** USE_CUDA           = True
2023-12-22 15:06:28: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:06:28: ** YOLOv5_VERBOSE     = false
2023-12-22 15:06:28: 
2023-12-22 15:06:28: Started Face Processing module
2023-12-22 15:06:28: Installer exited with code 0
2023-12-22 15:06:28: face.py: Traceback (most recent call last):
2023-12-22 15:06:28: face.py:   File "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py", line 21, in <module>
2023-12-22 15:06:28: face.py:     from request_data import RequestData
2023-12-22 15:06:28: face.py:   File "../../SDK/Python\request_data.py", line 7, in <module>
2023-12-22 15:06:28: face.py:     from PIL import Image
2023-12-22 15:06:28: face.py: ModuleNotFoundError: No module named 'PIL'
2023-12-22 15:06:28: face.py: has exited
2023-12-22 15:06:28: ** Module FaceProcessing has shutdown
2023-12-22 15:06:31: Module FaceProcessing started successfully.
2023-12-22 15:10:08: ** System:           Windows
2023-12-22 15:10:08: ** Operating System: Windows (Microsoft Windows 6.1.7601 Service Pack 1)
2023-12-22 15:10:08: ** CPUs:             Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz (Intel)
2023-12-22 15:10:08: **                   1 CPU x 6 cores. 12 logical processors (x64)
2023-12-22 15:10:08: ** GPU (Primary):    NVIDIA GeForce RTX 3060 (12 GiB) (NVIDIA)
2023-12-22 15:10:08: **                   Driver: 474.11, CUDA: 11.4 (up to: 11.4), Compute: , cuDNN: 8.9
2023-12-22 15:10:08: ** System RAM:       48 GiB
2023-12-22 15:10:08: ** Platform:         Windows
2023-12-22 15:10:08: ** BuildConfig:      Release
2023-12-22 15:10:08: ** Execution Env:    Native
2023-12-22 15:10:08: ** Runtime Env:      Production
2023-12-22 15:10:08: ** .NET framework:   .NET 7.0.5
2023-12-22 15:10:08: ** Default Python:
2023-12-22 15:10:08: ** App DataDir:      C:\ProgramData\CodeProject\AI
2023-12-22 15:10:08: Video adapter info:
2023-12-22 15:10:08:   NVIDIA GeForce RTX 3060:
2023-12-22 15:10:08:     Driver Version     30.0.14.7411
2023-12-22 15:10:08:     Video Processor    NVIDIA GeForce RTX 3060
2023-12-22 15:10:08: *** STARTING CODEPROJECT.AI SERVER
2023-12-22 15:10:08: RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
2023-12-22 15:10:08: PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
2023-12-22 15:10:08: MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
2023-12-22 15:10:08: PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
2023-12-22 15:10:08: Data Dir                  = C:\ProgramData\CodeProject\AI
2023-12-22 15:10:08: ** Server version:   2.4.6-Beta
2023-12-22 15:10:08: ModuleRunner Start
2023-12-22 15:10:08: Starting Background AI Modules
2023-12-22 15:10:11: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 15:10:11: 
2023-12-22 15:10:11: Attempting to start FaceProcessing with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer\face.py"
2023-12-22 15:10:11: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...ing\intelligencelayer\face.py"
2023-12-22 15:10:11: 
2023-12-22 15:10:11: ** Module 'Face Processing' 1.8.5 (ID: FaceProcessing)
2023-12-22 15:10:11: ** Module Path:   C:\Program Files\CodeProject\AI\modules\FaceProcessing
2023-12-22 15:10:11: ** AutoStart:     True
2023-12-22 15:10:11: ** Queue:         faceprocessing_queue
2023-12-22 15:10:11: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 15:10:11: ** GPU Libraries: installed if available
2023-12-22 15:10:11: ** GPU Enabled:   enabled
2023-12-22 15:10:11: ** Parallelism:   0
2023-12-22 15:10:11: ** Accelerator:
2023-12-22 15:10:11: ** Half Precis.:  enable
2023-12-22 15:10:11: ** Runtime:       python3.7
2023-12-22 15:10:11: ** Runtime Loc:   Shared
2023-12-22 15:10:11: ** FilePath:      intelligencelayer/face.py
2023-12-22 15:10:11: ** Pre installed: False
2023-12-22 15:10:11: ** Start pause:   3 sec
2023-12-22 15:10:11: ** LogVerbosity:
2023-12-22 15:10:11: ** Valid:         True
2023-12-22 15:10:11: ** Environment Variables
2023-12-22 15:10:11: ** APPDIR             = %CURRENT_MODULE_PATH%\intelligencelayer
2023-12-22 15:10:11: ** DATA_DIR           = %DATA_DIR%
2023-12-22 15:10:11: ** MODE               = MEDIUM
2023-12-22 15:10:11: ** MODELS_DIR         = %CURRENT_MODULE_PATH%\assets
2023-12-22 15:10:11: ** PROFILE            = desktop_gpu
2023-12-22 15:10:11: ** USE_CUDA           = True
2023-12-22 15:10:11: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:10:11: ** YOLOv5_VERBOSE     = false
2023-12-22 15:10:11: 
2023-12-22 15:10:11: Started Face Processing module
2023-12-22 15:10:13: Current Version is 2.4.6-Beta
2023-12-22 15:10:13: *** Server: This is a new, unreleased version
2023-12-22 15:10:15: face.py: Vision AI services setup: Retrieving environment variables...
2023-12-22 15:10:15: face.py: GPU in use: NVIDIA GeForce RTX 3060
2023-12-22 15:10:15: face.py: APPDIR:       C:\Program Files\CodeProject\AI\modules\FaceProcessing\intelligencelayer
2023-12-22 15:10:15: face.py: PROFILE:      desktop_gpu
2023-12-22 15:10:15: face.py: USE_CUDA:     True
2023-12-22 15:10:15: face.py: DATA_DIR:     C:\ProgramData\CodeProject\AI
2023-12-22 15:10:15: face.py: MODELS_DIR:   C:\Program Files\CodeProject\AI\modules\FaceProcessing\assets
2023-12-22 15:10:15: face.py: MODE:         MEDIUM
2023-12-22 15:10:15: face.py: Running init for Face Processing
2023-12-22 15:10:16: Face Processing: Face Processing started. in Face Processing
2023-12-22 15:10:43: Preparing to install module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 15:10:43: Downloading module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 15:10:43: Installing module 'ObjectDetectionYOLOv5-6.2'
2023-12-22 15:10:43: Installer script at 'C:\Program Files\CodeProject\AI\setup.bat'
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2:              Installing CodeProject.AI Analysis Module                
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2:                    CodeProject.AI Installer                           
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2: ======================================================================
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2: General CodeProject.AI setup                                          
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2: Creating Directories...Done
2023-12-22 15:10:43: ObjectDetectionYOLOv5-6.2: GPU support                                                           
2023-12-22 15:10:44: ObjectDetectionYOLOv5-6.2: CUDA Present...Yes (CUDA 11.4, cuDNN 8.9)
2023-12-22 15:10:44: ObjectDetectionYOLOv5-6.2: ROCm Present...No
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Reading ObjectDetectionYOLOv5-6.2 settings.......Done
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Installing module Object Detection (YOLOv5 6.2) 1.7.5                 
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Installing Python 3.7
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Python 3.7 is already installed
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Creating Virtual Environment (Shared)...Virtual Environment already present
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Confirming we have Python 3.7 in our virtual environment...
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: -------------------------------------------------------------
2023-12-22 15:11:54: ObjectDetectionYOLOv5-6.2: Error: Python not installed
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2: access rights to the requested server object.
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2:    ption
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:11:55: ObjectDetectionYOLOv5-6.2:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: access rights to the requested server object.
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:    ption
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: Downloading Standard YOLO models...BITS transfer failed. Trying Powershell....
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2:    ll.Commands.InvokeWebRequestCommand
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: Download failed. Sorry.
2023-12-22 15:11:56: ObjectDetectionYOLOv5-6.2: Failed to download and extract models-yolo5-pt.zip
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2: access rights to the requested server object.
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2:    ption
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:11:57: ObjectDetectionYOLOv5-6.2:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : HTTP status 403: The client does not have sufficient 
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: access rights to the requested server object.
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exce 
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:    ption
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.Backgrou 
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:    ndIntelligentTransfer.Management.NewBitsTransferCommand
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Downloading Custom YOLO models...BITS transfer failed. Trying Powershell....
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Invoke-WebRequest : The remote server returned an error: (403) Forbidden.
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: At line:1 char:1
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:Htt 
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:    pWebRequest) [Invoke-WebRequest], WebException
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShe 
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2:    ll.Commands.InvokeWebRequestCommand
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Download failed. Sorry.
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Failed to download and extract custom-models-yolo5-pt.zip
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: Installing Python packages for Object Detection (YOLOv5 6.2)
2023-12-22 15:11:58: ObjectDetectionYOLOv5-6.2: [0;Installing GPU-enabled libraries: If available
2023-12-22 15:12:00: ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is installed...Done
2023-12-22 15:12:05: ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is up to date...Done
2023-12-22 15:12:05: ObjectDetectionYOLOv5-6.2: Python packages specified by requirements.windows.cuda.txt
2023-12-22 15:12:05: ObjectDetectionYOLOv5-6.2: Not enough memory.
2023-12-22 15:12:05: ObjectDetectionYOLOv5-6.2: Installing Python packages for the CodeProject.AI Server SDK
2023-12-22 15:12:06: ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is installed...Done
2023-12-22 15:12:09: ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is up to date...Done
2023-12-22 15:12:09: ObjectDetectionYOLOv5-6.2: Python packages specified by requirements.txt
2023-12-22 15:12:09: ObjectDetectionYOLOv5-6.2: Not enough memory.
2023-12-22 15:12:13: ObjectDetectionYOLOv5-6.2: Self test: Self-test passed
2023-12-22 15:12:13: ObjectDetectionYOLOv5-6.2: Setup complete                                                        
2023-12-22 15:12:13: Module ObjectDetectionYOLOv5-6.2 installed successfully.
2023-12-22 15:12:13: Running module using: C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python
2023-12-22 15:12:13: 
2023-12-22 15:12:13: Attempting to start ObjectDetectionYOLOv5-6.2 with C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Scripts\python "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\detect_adapter.py"
2023-12-22 15:12:13: Starting C:\Program Files...ws\python37\venv\Scripts\python "C:\Program Files...nYOLOv5-6.2\detect_adapter.py"
2023-12-22 15:12:13: 
2023-12-22 15:12:13: ** Module 'Object Detection (YOLOv5 6.2)' 1.7.5 (ID: ObjectDetectionYOLOv5-6.2)
2023-12-22 15:12:13: ** Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2
2023-12-22 15:12:13: ** AutoStart:     True
2023-12-22 15:12:13: ** Queue:         objectdetection_queue
2023-12-22 15:12:13: ** Platforms:     all,!raspberrypi,!jetson
2023-12-22 15:12:13: ** GPU Libraries: installed if available
2023-12-22 15:12:13: ** GPU Enabled:   enabled
2023-12-22 15:12:13: ** Parallelism:   0
2023-12-22 15:12:13: ** Accelerator:
2023-12-22 15:12:13: ** Half Precis.:  enable
2023-12-22 15:12:13: ** Runtime:       python3.7
2023-12-22 15:12:13: ** Runtime Loc:   Shared
2023-12-22 15:12:13: ** FilePath:      detect_adapter.py
2023-12-22 15:12:13: ** Pre installed: False
2023-12-22 15:12:13: ** Start pause:   1 sec
2023-12-22 15:12:13: ** LogVerbosity:
2023-12-22 15:12:13: ** Valid:         True
2023-12-22 15:12:13: ** Environment Variables
2023-12-22 15:12:13: ** APPDIR             = %CURRENT_MODULE_PATH%
2023-12-22 15:12:13: ** CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
2023-12-22 15:12:13: ** MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
2023-12-22 15:12:13: ** MODEL_SIZE         = Medium
2023-12-22 15:12:13: ** USE_CUDA           = True
2023-12-22 15:12:13: ** YOLOv5_AUTOINSTALL = false
2023-12-22 15:12:13: ** YOLOv5_VERBOSE     = false
2023-12-22 15:12:13: 
2023-12-22 15:12:13: Started Object Detection (YOLOv5 6.2) module
2023-12-22 15:12:13: Installer exited with code 0
2023-12-22 15:12:14: Module ObjectDetectionYOLOv5-6.2 started successfully.
2023-12-22 15:12:18: detect_adapter.py: APPDIR:      C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2
2023-12-22 15:12:18: detect_adapter.py: MODEL_SIZE:  medium
2023-12-22 15:12:18: detect_adapter.py: MODELS_DIR:  C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\assets
2023-12-22 15:12:18: detect_adapter.py: Running init for Object Detection (YOLOv5 6.2)
2023-12-22 15:12:18: Object Detection (YOLOv5 6.2): Object Detection (YOLOv5 6.2) started. in Object Detection (YOLOv5 6.2)
2023-12-22 15:13:23: ** Starting mesh broadcasting
2023-12-22 15:13:23: ** Starting mesh broadcast monitoring
2023-12-22 15:13:23: ** Starting known mesh server pinging
2023-12-22 15:19:47: Request 'list-custom' dequeued from 'objectdetection_queue' (#reqid 1dd71444-fe20-4378-87a2-96d90a29938b)
2023-12-22 15:19:47: Client request 'list-custom' in queue 'objectdetection_queue' (#reqid 1dd71444-fe20-4378-87a2-96d90a29938b)
2023-12-22 15:19:47: Client request 'list-custom' in queue 'objectdetection_queue' (#reqid 08517cd9-65e9-4518-9f2d-e8843d06232e)
2023-12-22 15:19:47: Request 'list-custom' dequeued from 'objectdetection_queue' (#reqid 08517cd9-65e9-4518-9f2d-e8843d06232e)
2023-12-22 15:19:47: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-12-22 15:19:47: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-12-22 15:19:47: Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'list-custom' (#reqid 08517cd9-65e9-4518-9f2d-e8843d06232e) took 3ms (command timing) in Object Detection (YOLOv5 6.2)
2023-12-22 15:19:47: Response received (#reqid 08517cd9-65e9-4518-9f2d-e8843d06232e)
2023-12-22 15:19:47: Response received (#reqid 1dd71444-fe20-4378-87a2-96d90a29938b)
2023-12-22 15:19:47: Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'list-custom' (#reqid 1dd71444-fe20-4378-87a2-96d90a29938b) took 2ms (command timing) in Object Detection (YOLOv5 6.2)
2023-12-22 15:19:58: Client request 'list' in queue 'faceprocessing_queue' (#reqid ccef792c-238e-4f2a-a203-da0f575e3a69)
2023-12-22 15:19:58: Request 'list' dequeued from 'faceprocessing_queue' (#reqid ccef792c-238e-4f2a-a203-da0f575e3a69)
2023-12-22 15:19:58: Face Processing: Retrieved faceprocessing_queue command in Face Processing
2023-12-22 15:19:58: Response received (#reqid ccef792c-238e-4f2a-a203-da0f575e3a69)
2023-12-22 15:19:58: Face Processing: Rec'd request for Face Processing command 'list' (#reqid ccef792c-238e-4f2a-a203-da0f575e3a69) took 2ms (command timing) in Face Processing




So I have all the zips that wont download, and I used prior compiled python directories and reassembled the parts.

It is working great.

My question is what folder should the zips go in to be picked up by setup? I have them in downloads.

Also, is the windows folder in downloads the folder where the python zips should be initially extracted to?

ie, we need downloads/windows/python to install ai/runtimes/windows/python???

Again it is working fine.


AnswerRe: CodeProject.AI-Server-win-x64-2.4.6_RC2 Win 7 Pin
Jebus5922-Dec-23 17:47
Jebus5922-Dec-23 17:47 
GeneralRe: CodeProject.AI-Server-win-x64-2.4.6_RC2 Win 7 Pin
Chris Maunder23-Dec-23 12:44
cofounderChris Maunder23-Dec-23 12:44 
GeneralRe: CodeProject.AI-Server-win-x64-2.4.6_RC2 Win 7 Pin
Jebus5923-Dec-23 13:25
Jebus5923-Dec-23 13:25 
QuestionCodeProject.AI-Server-win-x64-2.4.6_RC2 feedback Pin
OldishCoder22-Dec-23 6:12
OldishCoder22-Dec-23 6:12 
AnswerRe: CodeProject.AI-Server-win-x64-2.4.6_RC2 feedback Pin
Chris Maunder22-Dec-23 10:13
cofounderChris Maunder22-Dec-23 10:13 
QuestionLPR - only CPU Not GPU (cuda), think related to - protobuf 4.24.4 which is incompatible Pin
Member 1616388322-Dec-23 8:49
Member 1616388322-Dec-23 8:49 
QuestionBlue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
krazzzz200021-Dec-23 18:58
krazzzz200021-Dec-23 18:58 
AnswerRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Mike Lud21-Dec-23 19:24
communityengineerMike Lud21-Dec-23 19:24 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
krazzzz200021-Dec-23 22:04
krazzzz200021-Dec-23 22:04 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Chris Maunder22-Dec-23 2:46
cofounderChris Maunder22-Dec-23 2:46 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Kaltertod24-Dec-23 3:39
Kaltertod24-Dec-23 3:39 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Member 1590747924-Dec-23 9:04
Member 1590747924-Dec-23 9:04 
AnswerRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Touhpits21-Dec-23 23:30
Touhpits21-Dec-23 23:30 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Chris Maunder22-Dec-23 4:37
cofounderChris Maunder22-Dec-23 4:37 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Touhpits22-Dec-23 6:34
Touhpits22-Dec-23 6:34 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
Chris Maunder23-Dec-23 12:44
cofounderChris Maunder23-Dec-23 12:44 
GeneralRe: Blue Iris will not populate the Custom Model field. BI version 5.8.1.5 and CPAI 2.3.4.0 Pin
krazzzz200024-Dec-23 12:03
krazzzz200024-Dec-23 12:03 

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

Flags: Added to TODOSolved

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