DW2TF icon indicating copy to clipboard operation
DW2TF copied to clipboard

Darknet Weights to TensorFlow

Results 30 DW2TF issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "/Users/luke/Projects/DW2TF/util/reader.py", line 84, in get_block line = next(line_getter) StopIteration The above exception was the direct cause of the following exception: Traceback (most recent call...

I am converting YOLO v2-tiny model to TensorFlow. I downloaded the weights from the official site and saved them to the `data/` directory. After running `!python3 main.py \ --cfg 'data/yolov2.cfg'...

I spent many hours fixing errors that were there because I was using Tensorflow 2. It would help others if the right tensorflow version was added to the readme. :)

The application fails when it runs out of lines inside the cfg file. I have added the following lines fix it. try: line = next(line_getter) except: return

I had change input image size in .cfg file. To convert .meta, and .pb file is fine. but run the detection, it cannot detect any object. The YoloV3 case: image...

Traceback (most recent call last): File "G:\darknet_to_tensorflow\DW2TF-1.2\util\reader.py", line 84, in get_block line = next(line_getter) StopIteration The above exception was the direct cause of the following exception: Traceback (most recent call...

i got this error. any idea? ValueError: Dimension 2 in both shapes must be equal, but are 148 and 147. Shapes are [?,260,148] and [?,260,147]. for 'network/route2' (op: 'ConcatV2') with...

Traceback (most recent call last): File "main.py", line 116, in main(args) File "main.py", line 57, in main parse_net(args.layers, args.cfg, args.weights, args.training) File "main.py", line 28, in parse_net layer_name = layer['name']...

How to convert yolov4 weights to .pb or ckpt file or caffemodel ?

Traceback (most recent call last): File "main.py", line 116, in main(args) File "main.py", line 57, in main parse_net(args.layers, args.cfg, args.weights, args.training) File "main.py", line 33, in parse_net training=training, const_inits=const_inits, verbose=verbose)...