DW2TF
DW2TF copied to clipboard
Darknet Weights to TensorFlow
Hi, i try to convert custom YOLOv3 weights and cfg but i failled, can someone help me ? Thanks in advence. 68 Tensor("yolov3/convolutional48/Activation:0", shape=(?, 13, 13, 1024), dtype=float32) 69 Tensor("yolov3/shortcut21:0",...
Hello, Can I convert a darknet custom tiny-YOLOv3 with those parameter changed? - number of classes set to 1 - image size - number of channels set to 1 (grayscale)...
I wonder, how to extract bboxes from the last layer with output (1, 26, 26, 21), i have 2 objects.
How load model and run on image and get bounding box? Now i have ckpt, index, meta, pb file, but i cant run model on image
Hello ! I meet a problem trying to convert YOLOv2 weights to Tensorflow `.ckpt`. When I use the following command : > python main.py --cfg data/yolov2.cfg --weights data/yolov2.weights --output data/...
``` WARNING:tensorflow:From /content/DW2TF/util/cfg_layer.py:74: conv2d (from tensorflow.python.layers.convolutional) is deprecated and will be removed in a future version. Instructions for updating: Use keras.layers.conv2d instead. WARNING:tensorflow:From /usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/op_def_library.py:263: colocate_with (from tensorflow.python.framework.ops) is deprecated and...
DW2TF looked like exactly what I needed, to convert darknet model to TensorFlow. I have trained a custom model based on yolov3-tiny.cfg, with some custom changes. One of the changes...
Hi. I have trained my own dataset in Windows and I want to convert it to .pb file. Can i simply convert the weight file that i've trained using your...
1. default tf version is tf2.0, so need update import: import tensorflow.compat.v1 as tf 2. on python 3.8, raise RuntimeError: generator raised StopIteration. So need break when read cfg file...