yolo Questions
8
Solved
I am training a model with keras and am getting an error in callback in fit_generator function. I always run to epoch 3rd and get this error
annotation_path = 'train2.txt'
log_dir = 'logs/000/'
...
1
I have trained the yolov2 and yolov3 models using Keras with this Github project https://github.com/experiencor/keras-yolo2
Now I want to use the trained model (.h5) in darknet prediction. Essentia...
2
Solved
I'm currently trying to compile Darknet on the latest CUDA toolkit which is version 11.1. I have a GPU capable of running CUDA version 5 which is a GeForce 940M. However, while rebuilding darknet u...
3
I want to train tiny yolo on my own dataset. I want to predict 3 classes: cars, pedestrians and cyclists; all of these have been annotated.
My dataset also includes images that do not contai...
Joycejoycelin asked 17/3, 2019 at 0:9
1
Solved
First of all here is my code :
image = cv2.imread(filePath)
height, width, channels = image.shape
# USing blob function of opencv to preprocess image
blob = cv2.dnn.blobFromImage(image, 1 / 2...
Joline asked 19/3, 2021 at 2:54
3
Solved
I am training yolov3 on my data using this code here :
https://github.com/cfotache/pytorch_custom_yolo_training/
But I am getting this annoying deprecation warnings
Warning: indexing with dtype ...
Comprehend asked 4/2, 2020 at 23:49
2
Solved
I'm still new to "You Only Look Once" object detection algorithm (YOLOv4 to be exact). I have some questions regarding the mAP and loss chart.
I tried to follow the instructions from Alex...
Catamite asked 6/2, 2021 at 7:16
2
I tried to run the Openpose on darknet with weights and cfg downloaded from this place: https://github.com/lincolnhard/openpose-darknet
This is the error when I tried to create a net in Opencv
mo...
1
It is a really strange bug.
Environment: tf 1.12 + cuda9.0 + cudnn 7.5 + single RTX 2080
Today I tried to train YOLO V3 network on my new device. Batch size is 4. Every thing went right at the be...
Gracegraceful asked 20/3, 2020 at 8:54
1
Solved
Yolov3-tiny-416.tflite is a tflite model for yolov3 tiny model created from yolov3-tiny.weights
I had tried to use this from ML kit Vision module provided by google in android. In repo: https://git...
Beckman asked 25/12, 2020 at 7:32
1
I'm trying to make object detection software with yolo and this error is popping and I am so lost please
can anyone help me !! (the code not complete and sorry if there are any mistakes in this pos...
0
The shape of the TFLite model is [1, 2535, 85]. You can find the TFLite model here and label text here.
This is how the bug looks.
This is the project I used https://github.com/hunglc007/tensorflo...
Mythological asked 13/11, 2020 at 9:33
3
Solved
I am currently using the cmake-gui to compile yolo darknet at https://github.com/AlexeyAB/darknet.git. However, it will not enable cuda and I am having a few other odd issues. These include when I ...
Yajairayajurveda asked 24/4, 2019 at 12:37
1
Solved
I try to understand the architecture of Yolo4.
It is composed of a backbone, neck, dense prediction and sparse prediction.
Knowing that Yolo 3 has already a backbone, Is Yolo 4 taking all the archi...
Scotty asked 4/8, 2020 at 9:44
1
Solved
In Pytorch, I know that certain image processing transformations can be composed as such:
import torchvision.transforms as transforms
transform = transforms.Compose([transforms.ToTensor(),
transf...
Collative asked 24/7, 2020 at 6:52
1
Solved
I am comparing models for the detection of objects for maritime Search and Rescue (SAR) purposes. From the models that I used, I got the best results for the improved version of YOLOv3 for small ob...
Wilberwilberforce asked 18/7, 2020 at 19:52
1
I am trying to understand the concept of IOU in YOLO. I read that it is the area of overlap between the predicted bounding box and the ground-truth bounding box. This is needed for training the dat...
Suspensoid asked 12/5, 2020 at 17:26
2
I'm trying to understand how to calculate the value of circled terms, what are the inputs/outputs I have to compare?
Let's take the first term for example, if I understand it correctly it goes s...
Bookman asked 31/7, 2019 at 16:16
3
Solved
I have a simple python script with open cv, which takes in a video and does object detection on it using YOLO. My question is, how can I display the output to my website as a live stream.
Here is t...
Epner asked 6/4, 2018 at 17:36
2
Solved
I am trying to run YOLOv3 on Visual Studio 2019 using CUDA 10.2 with cuDNN v7.6.5 on Windows 10 using NVidia GeForce 930M. Here is part of the code I used.
#include <fstream>
#include <ss...
2
I almost searched every where on internet but i could not find out the working and output of below functions. Specially what they do in YOLO algorithm.
getLayerNames()
getUnconnectedOutLayers()
...
3
Solved
Using YOLO or other image recognition techniques to identify all alphanumeric text present in images
I have multiple images diagram, all of which contains labels as alphanumeric characters instead of just the text label itself. I want my YOLO model to identify all the numbers & alphanumeric ch...
Ninanincompoop asked 18/2, 2020 at 7:3
6
Solved
I just compiled and installed the last version of OpenCV 3.4.0 and I would like to compile darknet (for yolo object detection), but at compilation, I have
gcc -Iinclude/ -Isrc/ -DOPENCV `pkg-confi...
1
Solved
I'm working on some stuff related to object detection methods (YOLOv3, Faster-RCNN, RetinaNet, ... ) and I need to train on VOC2007 and VOC2012 (using pretrained models of course). However when I r...
Cormac asked 16/1, 2020 at 15:23
2
So I have trained an object recognition neural network (YOLOv3) to detect bounding boxes around the license plates of car pictures shot at a variety of tilted and straight angles and the network do...
Inhesion asked 10/4, 2019 at 7:32
© 2022 - 2025 — McMap. All rights reserved.