Results 8 issues of Sachin Mohan

I was testing this repository https://github.com/susnato/keras-yolo3 by @susnato on Tensorflow 2.6.0 But when I run the below ``` python yolo_video.py --model model_data/yolo.h5 --input /home/mohan/git/backups/drive.mp4 --anchors model_data/yolo_anchors.txt --classes model_data/coco_classes.txt ``` I...

There are no meta file generated. These are the files generated after 2 epochs. Can someone please help. ``` vgg_unet_1.00001.index vgg_unet_1.00001.data-00000-of-00001 vgg_unet_1.00002.index vgg_unet_1.00002.data-00000-of-00001 ```

Wonderful repository! Thanks! Using -> TF 1.15 I wanted to optimize this repository using the tensorflow model optimization [techniques](https://www.tensorflow.org/model_optimization) but I am having a challenge. After creating the model as...

I am trying to run the below block and got this error ``` scores = model.evaluate_generator(test_dataloader) print("Loss: {:.5}".format(scores[0])) for metric, value in zip(metrics, scores[1:]): print("mean {}: {:.5}".format(metric.__name__, value)) ``` Error...

**Describe the bug** Unable to prune/quantize multiple layers at the same time **System information** TensorFlow version (installed from source or binary): 2.4.0 TensorFlow Model Optimization version (installed from source or...

bug

How to calculate accuracy during training? I tried the below in the code in ssd7_training.ipynb file and didn't work. Any help would be awesome! `model.compile(optimizer=adam, loss=ssd_loss.compute_loss, metrics=['accuracy'])` * Operating System...

I had uncommented the checkpoint and tried to save the model. It generated `saved_model.pb` file. Below are the warning messages when the model was saved. ``` callbacks = [ tf.keras.callbacks.ModelCheckpoint("DeepLabV3plus1.ckpt",...

Is anyone getting the same error when running deploy.py file? I am using tensorflow 1.15. python 3.6+