Questions tagged [darkflow]

Real-time object detection and classification. Paper: version 1, version 2.

Read more about YOLO (in darknet) and download weight files here. In case the weight file cannot be found, I uploaded some of mine here, which include yolo-full and yolo-tiny of v1.0, tiny-yolo-v1.1 of v1.1 and yolo, tiny-yolo-voc of v2.

76 questions
0
votes
0 answers

No module named 'darkflow.cython_utils.cy_yolo_findboxes'

I've successfully installed darkflow on windows 10 but got the error 'No module named 'darkflow.cython_utils.cy_yolo_findboxes'' But the module is already there in the directory. please help me to solve this.
0
votes
1 answer

How do i disable the flipping of images on Darkflow YOLOv2?

I am currently training a model based on orientation. I want to be able to train a model that can tell the estimated orientation of an object. Currently, i am at around 1000 epoch and the accuracy is not good. My theory is that the flip operation…
0
votes
1 answer

How to solve ERROR - Expected boolean value (or no value) following argument: --train

I'm training a model to use for object detection using YOLO-darkflow but i get this error. How can i solve it. 2020-01-24 11:37:37.478285: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library…
K.Nehe
  • 424
  • 10
  • 22
0
votes
1 answer

How can I train with my own dataset with darkflow?

I'm a beginner with some programming experince. I'm trying to train darkflow with my own dataset. I'm following these instructions. https://github.com/thtrieu/darkflow So far I have done the following steps. installed darkflow and the relevant…
0
votes
1 answer

Am i overfitting?

How it looks like with lesser smoothing Hi! I am currently training my model with Darkflow Yolov2. The optimiser is SGD with lr 0.001. Based on this graph, my val loss > train loss, which would mean that it is overfitting? If it is, what would be…
0
votes
0 answers

How do I utilize the prediction boxes in a trained Darkflow model for performing specific operations?

After training an image detection model, how do I load the parameters of the bounding boxes for a specific operation? Model: Darkflow Yolov2 Classes:7 For instance, if I set the threshold as 0.5, how do I utilize the resultant bounding boxes in a…
0
votes
1 answer

where is opencv python located in windows?

I have installed opencv on windows machine and need to have opencv folder in C drive separately(not inside any other folder) but can't find folder in which it is installed. please help me.
0
votes
1 answer

How to send command to arduino when a bounding box is detected?

i am working on a robot that detects users and follows. I am using YOLOv2 from darkflow repo for the object detection module. As of now, i want to make the Arduino micro-controller to move the robot forward towards the bounding box when detected.…
user12159041
0
votes
0 answers

Error when opening the exe file which is made from darkflow

I am using darkflow for custom object detection it is working perfectly fine and it is running perfectly through anaconda prompt. I made the exe using pyinstaller, So when I was running the exe it is showing the above error. Can anyone help me to…
0
votes
1 answer

NameError: name 'exit' is not defined/tfnet/darkflow/custom dataset object detection

I'm trying to train my custom dataset by creating yolov3.cfg file and yolov3.weights file with labelled annotations and images using darkflow. However when I'm trying to run tfnet = TFNet(history), it throws an error of "exit not defined". I have…
0
votes
1 answer

TinyYolo Deeplearning4j

I am using TinyYolo with deeplearning4j having read through this tutorial http://emaraic.com/blog/yolo-custom-object-detector but I am not quite sure whether I need more configuration to handle 720p images as the images in this example are 416x416.…
thekevshow
  • 774
  • 14
  • 36
0
votes
1 answer

how to handle box bounding result of YOLOv2

Sorry for my limited knowledge of AI. But I'm trying to use YOLOv2 (specifically darkflow) to identify my object. I have 100 images and have trained with 1000 epochs. However, my output is not really what the instructions I read online. There are…
xPain
  • 132
  • 11
0
votes
1 answer

darkflow bounding boxes bad even in standard example

The neural network on Darkflow is not training correctly. At first I thought I did not have enough images, or maybe a bad starting network. So I tried a standard example such as…
Ivan Viti
  • 271
  • 2
  • 11
0
votes
0 answers

How feasible is it to do realtime image processing without GPU?

Without GPU, using YOLO (darkflow), how feasible is it to detect objects using camera
Aasem
  • 11
  • 1
0
votes
1 answer

Darkflow without GPU on Jupyter-Notebook - Simple Code Required

I am unable to setup & run a simple darkflow program. Infact can't even configure darkflow library: from darkflow.net.build import TFNet ==> ModuleNotFoundError: No module named 'darkflow' My Target is to run the following program: from…
Aasem
  • 11
  • 1