darkflow icon indicating copy to clipboard operation
darkflow copied to clipboard

Translate darknet to tensorflow. Load trained weights, retrain/fine-tune using tensorflow, export constant graph def to mobile devices

Results 113 darkflow issues
Sort by recently updated
recently updated
newest added

Hi I am having an issue after the print, where its not printing the confidence and co-ordinates ![image_2021-02-05_175825](https://user-images.githubusercontent.com/55729394/107033743-be1cf680-67db-11eb-9d94-2d936f2d7e8b.png)

After training results = tfnet.return_predict(frame) give me empty array here is some sort of code. import cv2 from darkflow.net.build import TFNet import zipfile import numpy as np import time options...

Dear thrieu, I could not get how to train an own model with own classes. Where should I store the images, and annotations to them (like bounding box, class), etc...

(TA) D:\Kuliah\Tutorial YOLO\darkflow-master>python flow --model cfg\yolololo.cfg --load bin\yolo.weights --train --dataset test\dataset\images --annotation test\dataset\annotations --gpu 0.8 WARNING:tensorflow:From D:\Kuliah\Tutorial YOLO\darkflow-master\darkflow\net\build.py:15: The name tf.train.RMSPropOptimizer is deprecated. Please use tf.compat.v1.train.RMSPropOptimizer instead. WARNING:tensorflow:From D:\Kuliah\Tutorial YOLO\darkflow-master\darkflow\net\build.py:16:...

the build works well on 18.04. But not on Ubuntu 20.04. Please help ``` /home/metro/anaconda3/envs/synvids1/include/python3.6m/unicodeobject.h:508:44: warning: signed and unsigned type in conditional expression [-Wsign-compare] ((const Py_UCS1 *)(data))[(index)] : \ ^...

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.4.1 to 2.7.2. Release notes Sourced from tensorflow's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

getting this error when trying to run `python flow --model cfg/tiny-yolo.cfg --load bin/yolo-tiny.weights --demo videofile.avi --gpu 1.0` the full error follows: ``` D:\dev\darkflow\darkflow\dark\darknet.py:54: UserWarning: ./cfg/yolo-tiny.cfg not found, use cfg/tiny-yolo.cfg instead...

I have installed darkflow on my pc, nut whenever I want tto use it and import it says that there is no such a module. can someone help?

Train with yolov1, OOM happens in local layer because trying to allocate tensor [49,3,3,1024,256] which seems a very big one. Is this working as design? flow --model cfg/v1.1/myyolov1.cfg --train --dataset...

I want to test the network with the trained model. How can I test the model with the Pascal VOC 2007 test set? Additionally, How many times should I train...