Yash Bansod

Results 6 comments of Yash Bansod

This repository really has one of the neatest and easy to understand GAN implementations in GitHub. I don't know why this repository doesn't have 1k+ stars

I think I have figured out why the error might be happening. Can someone tell me the size of their data_prep_400x260.p. Is it 514 MB? Or is it something less?

The Div by Zero occurs for one of the two reasons (atleast the ones I have found): 1. If your data_prep_400x260.p is not made properly. (Verify that it is around...

@DRosemei there is something wrong that you are doing before executing data_prep.py. Please follow the pre-processing instructions (all the steps before executing `python data_prep.py` ) and your data_prep_400x260.p should be...

The dependencies of the project [https://github.com/georgesung/ssd_tensorflow_traffic_sign_detection#dependencies](url) clearly state **python3.5+**.

well If you are using tensorflow >1.1.0 you will have to do the following changes: - Line 60 of model.py from `conf_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits, y_true_conf)` to `conf_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=logits, labels=y_true_conf)`...