Mostly YOLOv5.net as it's running on my server which does not have a GPU. Sometimes YOLOv5-6.2 when I forget to change it, because after restart it always starts with this (it seems not to store my preferences). But the memory leak happens with both of them.
Marco J
Posts
-
Memory leak in 2.6.5 -
Memory leak in 2.6.5Hi, I'm running version 2.6.5 on Ubuntu 22.04 LTS to do the AI check for my BlueIris installation. The VM has 4GB RAM assigned. All runs very well the first days. But after a while, the system memory is eaten up more and more by the "dotnet" process. As soon as swap starts to be eaten, my Zabbix gives me a warning and I need to reboot the VM. Around once every 1-2 weeks, it usually has around 290,000 pictures analyzed at this point. Just to mention that this is a point to look at with new releases :)
-
How to enable the Object Detection (Coral) for DockerArgh, you're right. This forum software is a mess ...
-
How to enable the Object Detection (Coral) for DockerHi, I've put a Coral TPU (PCIe) in my server, passed it to the Codeproject AI VM and run the docker in "priviledged: true" so it has access to all devices on the VM Coral is available in the Ubuntu VM:
02:01.0 SATA controller: VMware SATA AHCI controller
03:00.0 Ethernet controller: VMware VMXNET3 Ethernet Controller (rev 01)
0b:00.0 System peripheral: Global Unichip Corp. Coral Edge TPUI've installed the Coral TPU module in the AI server via the web interface. However, on the status page it still says: Not enabled (That's the point where I look how to insert an image here) So, it shows: Face processing: Started Object Detection (YOLOv5 .NET): Not enabled Object Detection (YOLOv5 6.2): Started ObjectDetection (Coral): Not enabled How can I switch to use the Coral now? My docker-compose:
version: "3.3"
services:
deepstack:
image: codeproject/ai-server:latest
restart: unless-stopped
container_name: senseai
privileged: true
ports:
- "80:5000"
environment:
- VISION-SCENE=True
- VISION-FACE=True
- VISION-DETECTION=True
- CUDA_MODE=False
- MODE=Medium
- PROFILE=desktop_cpu
- Modules:TextSummary:Activate=False- MODELS_DIR=/usr/share/CodeProject/SenseAI/models
volumes: - /opt/senseai/data:/usr/share/CodeProject/SenseAI:rw
devices:
- /sys/bus/pci/devices/0000:0b:00.0:/sys/bus/pci/devices/0000:0b:00.0