Search results

  1. H

    CodeProject.AI on Ubuntu

    I think 2.9.5 requires .net SDK 9.0. Please run the below to install .net SDK 9.0 before install CPAI 2.9.5: ######################### # Remove all .NET packages sudo apt-get remove 'dotnet*' sudo apt-get remove 'aspnetcore*' # Delete PMC repository from APT, by deleting the repo .list file rm...
  2. H

    CodeProject.AI on Ubuntu

    I just successfully installed 2.9.5 Ubuntu x64 today on ubuntu VM with steps below: ## Install GPU driver, toolkit, .net SDK... first before execute commands below. wget https://codeproject-ai-bunny.b-cdn.net/server/installers/linux/codeproject.ai-server_2.9.5_Ubuntu_x64.zip unzip...
  3. H

    Blue Iris and CodeProject.AI ALPR

    No luck for me to uninstall Face and YOLO Net too. Have to set AutoStart to false in modulesettings.json. I used to have CPAI and BI on Windows 11 VM on the same promox box (i9-13900HX), but inference speed of YOLO5.62 was slower. I moved CPAI to LXC container with frigate, and YOLO5v6.2 time...
  4. H

    Blue Iris and CodeProject.AI ALPR

    I have the similar issue. CPAI is installed on Promox LXC container with RTX A2000. I changed the below to force ALPR to use GPU: 1. modulesettings.json: "GpuOptions" : { "InstallGPU": true, 2. modulesettings.linux.json: "ALPR": { "GpuOptions" : { "InstallGPU"...
  5. H

    Blue Iris and CodeProject.AI ALPR

    Steps I used to install PaddlePaddle-gpu on my system (similar to instruction in the link except PaddlePaddle-gpu instead of PaddlePaddle): My CodeProject and BI are on Promox VM Windows 11. --------------------------------------------- 1. Open Command Prompt in Admin mode 2. Run the below...
  6. H

    Blue Iris and CodeProject.AI ALPR

    Have you tried Command Prompt in Admin mode?
  7. H

    Blue Iris and CodeProject.AI ALPR

    Thanks for the link. ALPR with Cuda 11.8 started OK after I installed PaddlePaddle manually per instruction. However, ALPR stuck at CPU only, and I had to as well install "pip install PaddlePaddle-gpu" to switch to GPU(CUDA).